Update of /cvsroot/phpweather/phpweather
In directory sc8-pr-cvs1:/tmp/cvs-serv4342
Modified Files:
make-release.sh
Log Message:
Use the new script to generate the documentation for the release.
Index: make-release.sh
===================================================================
RCS file: /cvsroot/phpweather/phpweather/make-release.sh,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- make-release.sh 1 Jan 2004 23:20:38 -0000 1.11
+++ make-release.sh 1 Jan 2004 23:31:38 -0000 1.12
@@ -1,7 +1,7 @@
#!/bin/bash
#
# Copyright 2001--2003 Martin Geisler <gim...@gi...>
-# You're free to use this as described in the GPL.
+# You're free to use this script as described in the GPL.
#
# This small script retrieves the latest version of PHP Weather, packs
# it up into two tarballs (gz and bz2) and a zip file, and then asks
@@ -31,35 +31,7 @@
echo "done."
cd doc || exit
-
-echo -n "Generating phpweather.dvi... "
-texi2dvi -q -c src/phpweather.texi
-echo "done."
-
-echo -n "Generating phpweather.pdf... "
-texi2pdf -q -c src/phpweather.texi
-echo "done."
-
-echo -n "Generating phpweather.html... "
-texi2html src/phpweather.texi
-echo "done."
-
-echo -n "Generating phpweather.ps... "
-dvips -q phpweather.dvi -o phpweather.ps
-echo "done."
-
-echo -n "Generating phpweather.info... "
-makeinfo -I src src/phpweather.texi
-echo "done."
-
-echo -n "Generating phpweather.txt... "
-makeinfo -I src --no-headers src/phpweather.texi -o phpweather.txt
-echo "done."
-
-echo -n "Generating AUTHORS... "
-makeinfo --no-headers src/contributors.texi -o ../AUTHORS
-echo "done."
-
+./generate-doc.sh
cd ../..
mv phpweather.$$ phpweather-$VERSION
|