summaryrefslogtreecommitdiff
path: root/maintainer-scripts
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-06-07 07:27:49 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-06-07 07:27:49 +0000
commitb4b149523ef378d5941a3499264b703be5f1b512 (patch)
treeaaa22a0986f90ebae262485149022dc7374eae96 /maintainer-scripts
parentb914ad107a02597c82f485e487616058063c1fb9 (diff)
downloadgcc-b4b149523ef378d5941a3499264b703be5f1b512.tar.gz
* update_web_docs, doc_exclude: Check out files that may be in the
Attic. Check out texinfo.tex. Don't generate anything from c-tree.texi. Generate PostScript output from manuals. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42952 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r--maintainer-scripts/ChangeLog6
-rw-r--r--maintainer-scripts/doc_exclude1
-rwxr-xr-xmaintainer-scripts/update_web_docs24
3 files changed, 20 insertions, 11 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog
index 81971e82831..af086f495ae 100644
--- a/maintainer-scripts/ChangeLog
+++ b/maintainer-scripts/ChangeLog
@@ -1,3 +1,9 @@
+2001-06-07 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * update_web_docs, doc_exclude: Check out files that may be in the
+ Attic. Check out texinfo.tex. Don't generate anything from
+ c-tree.texi. Generate PostScript output from manuals.
+
2001-06-04 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* update_web_docs (WWWBASE_PREFORMATTED, PREPROCESS): New
diff --git a/maintainer-scripts/doc_exclude b/maintainer-scripts/doc_exclude
index fef3d4e14db..0efe47a702e 100644
--- a/maintainer-scripts/doc_exclude
+++ b/maintainer-scripts/doc_exclude
@@ -1,3 +1,2 @@
texinfo
etc
-Attic
diff --git a/maintainer-scripts/update_web_docs b/maintainer-scripts/update_web_docs
index 171afd70f2f..19a22f0b6b4 100755
--- a/maintainer-scripts/update_web_docs
+++ b/maintainer-scripts/update_web_docs
@@ -83,25 +83,27 @@ WORKDIR=/tmp/gcc-doc-update.$$
cd $WORKDIR
# Find all the texi files in the repository, except those in directories
-# we do not care about (Attic, texinfo, etc).
-find $CVSROOT/gcc -name \*.texi,v -print | fgrep -v -f/home/gccadmin/scripts/doc_exclude | sed -e s#$CVSROOT/##g -e s#,v##g > FILES
+# we do not care about (texinfo, etc).
+find $CVSROOT/gcc -name \*.texi,v -print | fgrep -v -f/home/gccadmin/scripts/doc_exclude | sed -e s#$CVSROOT/##g -e s#,v##g -e s#Attic/##g > FILES
# Checkout all the texi files and get them into a single directory.
# If we ever have texi files with the same name we'll have to do this
# differently.
-cvs -Q co -r$RELEASE `cat FILES` gcc/gcc/doc/install.texi2html
+cvs -Q co -r$RELEASE `cat FILES` gcc/gcc/doc/install.texi2html gcc/gcc/texinfo.tex gcc/gcc/doc/texinfo.tex
mv `find . -name \*.texi -print` .
+mv `find . -name \*.tex -print` .
-# Now convert the relevant files from texi to html.
-for file in c-tree cpp chill cppinternals gcc gcj g77 objc-features porting; do
+# Now convert the relevant files from texi to HTML and PostScript.
+for file in cpp chill cppinternals gcc gcj g77 objc-features porting; do
if [ -e ${file}.texi ]; then
/usr/local/bin/texi2html -glossary -menu -split_chapter ${file}.texi
+ texi2dvi ${file}.texi </dev/null && dvips -o ${file}.ps ${file}.dvi
fi
done
-# Then build a gzipped copy of each of the resulting .html files
-for file in *.html; do
+# Then build a gzipped copy of each of the resulting .html and .ps files
+for file in *.html *.ps; do
cat $file | gzip --best > $file.gz
done
@@ -113,13 +115,15 @@ if test $today = 15; then
fi
# And copy the resulting html files to the web server
-for file in *.html; do
+for file in *.html *.ps; do
cat $DOCSDIR/$file |
sed -e '/^<!-- Created on/d' \
- -e '/^by <I>GCC Administrator<\/I> on/d' > file1
+ -e '/^by <I>GCC Administrator<\/I> on/d' \
+ -e '/^%DVIPSSource:/d' > file1
cat $file |
sed -e '/^<!-- Created on/d' \
- -e '/^by <I>GCC Administrator<\/I> on/d' > file2
+ -e '/^by <I>GCC Administrator<\/I> on/d' \
+ -e '/^%DVIPSSource:/d' > file2
if cmp -s file1 file2; then
:
else