X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=blobdiff_plain;f=maintainer-scripts%2Fupdate_web_docs;h=e22779c7bcc365ec8016e9e40f14845c00c6516f;hp=78d7180ed25a9ffe3c850e96c34af528c008331e;hb=709ab98be441b552508cd81c0baca69f7631b118;hpb=e719194da1e2fd34ba321071cfc88d02f9bd9c14 diff --git a/maintainer-scripts/update_web_docs b/maintainer-scripts/update_web_docs index 78d7180ed25..e22779c7bcc 100755 --- a/maintainer-scripts/update_web_docs +++ b/maintainer-scripts/update_web_docs @@ -88,26 +88,38 @@ find $CVSROOT/gcc -name \*.texi,v -print | fgrep -v -f/home/gccadmin/scripts/doc # Checkout all the texi files. -cvs -Q co -r$RELEASE `cat FILES` gcc/gcc/doc/install.texi2html gcc/gcc/doc/include/texinfo.tex +cvs -Q export -r$RELEASE `cat FILES` gcc/gcc/doc/install.texi2html gcc/gcc/doc/include/texinfo.tex gcc/gcc/ada/xgnatugn.adb gcc/gcc/ada/ug_words + +# Build a tarball of the sources. +tar cf docs-sources.tar gcc # The directory to pass to -I; this is the one with texinfo.tex # and fdl.texi. includedir=gcc/gcc/doc/include -MANUALS="cpp cppinternals gcc gccint gcj g77 gnat_ug_unx gnat_ug_vms gnat_ug_vxw gnat_ug_wnt gnat-style gnat_rm libiberty porting" +MANUALS="cpp cppinternals fastjar gcc gccint gcj g77 gfortran gnat_ug_unx gnat_ug_vms gnat_ug_vxw gnat_ug_wnt gnat_ugn_unw gnat-style gnat_rm libiberty porting" + +# Generate gnat_ugn_unw + +if [ -f gcc/gcc/ada/xgnatugn.adb ]; then + gnatmake -q gcc/gcc/ada/xgnatugn + ./xgnatugn unw gcc/gcc/ada/gnat_ugn.texi \ + gcc/gcc/ada/ug_words gnat_ugn_unw.texi +fi # Now convert the relevant files from texi to HTML and PostScript. for file in $MANUALS; do filename=`find . -name ${file}.texi` if [ "${filename}" ]; then makeinfo --html -I ${includedir} -I `dirname ${filename}` ${filename} + tar cf ${file}-html.tar ${file}/*.html texi2dvi -I ${includedir} ${filename} $file.gz done @@ -117,12 +129,12 @@ today=`date +%d` if test $today = 15; then find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm for m in $MANUALS; do - rm $DOCSDIR/$m/*.html + rm $DOCSDIR/$m/*.html $DOCSDIR/$m/*.html.gz done fi -# And copy the resulting html files to the web server -for file in */*.html *.ps; do +# And copy the resulting files to the web server +for file in */*.html *.ps *.tar; do cat $DOCSDIR/$file | sed -e '/^ file1 @@ -137,20 +149,8 @@ for file in */*.html *.ps; do fi done -news_file=g77/News.html -bugs_file=g77/Trouble.html - cd $DOCSDIR -rm -f g77_news.html -rm -f g77_bugs.html -rm -f g77_news.html.gz -rm -f g77_bugs.html.gz -ln $news_file g77_news.html -ln $bugs_file g77_bugs.html -ln ${news_file}.gz g77_news.html.gz -ln ${bugs_file}.gz g77_bugs.html.gz - # Finally, generate the installation documentation (but only for CVS HEAD). if [ "$RELEASE" = "HEAD" ]; then SOURCEDIR=$WORKDIR/gcc/gcc/doc