1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
Description: get rid of texi2html, which is obsolete
Author: Thibaut Paumard <thibaut@debian.org>
Origin: Vendor
Forwarded: not-needed
Last-Update: 2015-05-21
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -6,9 +6,9 @@
# http://www.nongnu.org/texi2html/
include ../Make.cfg
MAKEINFO = makeinfo
-TEXI2DVI = texi2dvi
+TEXI2DVI = makeinfo --dvi
#TEXI2PDF = texi2pdf
-TEXI2PDF = texi2dvi --pdf
+TEXI2PDF = makeinfo --pdf
TEX = tex
PDFTEX = pdftex
YORICK = ../yorick/yorick$(EXE_SFX)
--- a/doc/html/Makefile
+++ b/doc/html/Makefile
@@ -6,7 +6,7 @@
include ../../Make.cfg
YORICK = ../../yorick/yorick$(EXE_SFX)
DESTDIR = /usr/local/share/doc/yorick
-TEXI2HTML = texi2html -init_file html/texi2html.init -output yorick
+TEXI2HTML = makeinfo --html --css-ref=../skull.css --output yorick
#select mac or win version of ../README.html
PLATFORM=mac
BUILDDIR=compiled-doc/
--- a/doc/html/README-install.html.content
+++ b/doc/html/README-install.html.content
@@ -16,10 +16,10 @@
<p>Yorick is
<a href="http://opensource.org">open source software</a>.
You may use, distribute, or modify yorick under the terms of a
-<a href="./doc/manual/yorick.html">BSD license</a>. The
+BSD license. The
source code for yorick is available from the
-<a href="http://yorick.sourceforge.net">yorick homepage</a>
-hosted by <a href="http://sourceforge.net">SourceForge.net</a>.</p>
+<a href="http://dhmunro.github.io/yorick-doc/">yorick homepage</a>
+hosted by <a href="http://github.com">GitHub</a>.</p>
%onlydoc:installwin%<p>This Microsoft Windows binary distribution of yorick includes two
%onlydoc:installwin%versions of the yorick executable: The first is a standalone program
--- a/doc/html/htmldoc.i
+++ b/doc/html/htmldoc.i
@@ -966,7 +966,7 @@
f = f;
wryte, f, "<ul>";
wryte, f, "<li>";
- wryte, f, "<a href = http://yorick.sourceforge.net>the official yorick homepage</a>";
+ wryte, f, "<a href = http://dhmunro.github.io/yorick-doc/>the official yorick homepage</a>";
wryte, f, "<li>";
wryte, f, "<a href = http://www.maumae.net/yorick/doc/index.php>";
@@ -1436,7 +1436,7 @@
" alt=\"yorick banner\">",
" <FONT face=\"Arial,Helvetica\">",
" <P><B><A href=\"../index.html\">Home</A></B></P>",
- " <P><B><A href=\"../manual/yorick.html\">Manual</A></B></P>",
+ " <P><B><A href=\"../manual/index.html\">Manual</A></B></P>",
" <P><B><A href=\"../html_xref/packages.html\">Packages</A></B></P>",
" <P><B><A href=\"../html_xref/global-index.html\">Global Index</A></B></P>",
" <P><B><A href=\"../html_xref/keywords.html\">Keywords</A></B></P>",
@@ -1559,7 +1559,7 @@
// this (obsolete) routine should be customized.
if (is_void(toroot)) toroot="../";
htags = ["home", "manual", "packages", "index", "keywords"];
- hfiles = toroot+["index.html", "manual/yorick.html",
+ hfiles = toroot+["index.html", "manual/index.html",
"html_xref/packages.html",
"html_xref/global-index.html", "html_xref/keywords.html"];
}
|