CVS: phpweather/doc generate-doc.sh,NONE,1.1 phpweather.dvi,1.2,NONE ...
Brought to you by:
iridium
From: Martin G. <gim...@us...> - 2004-01-02 00:02:49
|
Update of /cvsroot/phpweather/phpweather/doc In directory sc8-pr-cvs1:/tmp/cvs-serv3556 Added Files: generate-doc.sh Removed Files: phpweather.dvi phpweather.html phpweather.info phpweather.info-1 phpweather.info-2 phpweather.pdf phpweather.ps phpweather.txt Log Message: I've replaced the autogenerated files with a scipt that can generate them --- this script is also used for new releases. --- NEW FILE --- #!/bin/bash # # Copyright 2004 Martin Geisler <gim...@gi...> # You're free to use this script as described in the GPL. 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." --- phpweather.dvi DELETED --- --- phpweather.html DELETED --- --- phpweather.info DELETED --- --- phpweather.info-1 DELETED --- --- phpweather.info-2 DELETED --- --- BINARY FILE --- --- BINARY FILE --- --- phpweather.txt DELETED --- |