2001-03-10 08:08:50 +08:00
|
|
|
#!/bin/sh -x
|
|
|
|
|
2001-12-18 03:39:22 +08:00
|
|
|
# Generate HTML documentation from GCC Texinfo docs.
|
|
|
|
# This version is for GCC 3.1 and later versions.
|
|
|
|
|
2001-03-10 08:08:50 +08:00
|
|
|
# Run this from /tmp.
|
|
|
|
CVSROOT=/cvs/gcc
|
|
|
|
export CVSROOT
|
|
|
|
|
|
|
|
PATH=/usr/local/bin:$PATH
|
2001-06-04 22:12:47 +08:00
|
|
|
|
2001-03-10 08:08:50 +08:00
|
|
|
WWWBASE=/www/gcc/htdocs
|
2001-06-04 22:12:47 +08:00
|
|
|
WWWBASE_PREFORMATTED=/www/gcc/htdocs-preformatted
|
2001-08-06 21:03:21 +08:00
|
|
|
WWWPREPROCESS='/www/gcc/bin/preprocess -r'
|
2001-03-10 08:08:50 +08:00
|
|
|
|
2001-03-18 07:05:06 +08:00
|
|
|
# Process options -rrelease and -ddirectory
|
|
|
|
RELEASE=""
|
|
|
|
SUBDIR=""
|
|
|
|
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case $1 in
|
|
|
|
-r*)
|
|
|
|
if [ -n "$RELEASE" ]; then
|
|
|
|
echo "Multiple releases specified" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
RELEASE="${1#-r}"
|
|
|
|
if [ -z "$RELEASE" ]; then
|
|
|
|
shift
|
2001-03-18 07:59:21 +08:00
|
|
|
RELEASE="$1"
|
2001-03-18 07:05:06 +08:00
|
|
|
if [ -z "$RELEASE" ]; then
|
|
|
|
echo "No release specified with -r" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
-d*)
|
|
|
|
if [ -n "$SUBDIR" ]; then
|
|
|
|
echo "Multiple subdirectories specified" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
SUBDIR="${1#-d}"
|
|
|
|
if [ -z "$SUBDIR" ]; then
|
|
|
|
shift
|
2001-03-18 07:59:21 +08:00
|
|
|
SUBDIR="$1"
|
2001-03-18 07:05:06 +08:00
|
|
|
if [ -z "$SUBDIR" ]; then
|
|
|
|
echo "No subdirectory specified with -d" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unknown argument \"$1\"" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -n "$RELEASE" ] && [ -z "$SUBDIR" ]; then
|
|
|
|
echo "Release specified without subdirectory" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$SUBDIR" ]; then
|
|
|
|
DOCSDIR=$WWWBASE/onlinedocs
|
|
|
|
else
|
|
|
|
DOCSDIR=$WWWBASE/onlinedocs/$SUBDIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d $DOCSDIR ]; then
|
|
|
|
mkdir $DOCSDIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$RELEASE" ]; then
|
|
|
|
RELEASE=HEAD
|
|
|
|
fi
|
|
|
|
|
2001-03-10 08:08:50 +08:00
|
|
|
WORKDIR=/tmp/gcc-doc-update.$$
|
|
|
|
|
|
|
|
/bin/rm -rf $WORKDIR
|
|
|
|
/bin/mkdir $WORKDIR
|
|
|
|
cd $WORKDIR
|
|
|
|
|
|
|
|
# Find all the texi files in the repository, except those in directories
|
2001-06-07 15:27:49 +08:00
|
|
|
# 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
|
2001-03-10 08:08:50 +08:00
|
|
|
|
|
|
|
|
2001-11-05 16:47:51 +08:00
|
|
|
# Checkout all the texi files.
|
gcc-version.m4: Delete.
config:
* gcc-version.m4: Delete.
fastjar:
* Makefile.am (fastjar_TEXINFOS): Add gcc-vers.texi.
(BASEVER, DEVPHASE): New variables.
(POD2MAN): Adjust setting of --release option.
(fastjar.1, grepjar.1, gcc-vers.texi): New rules.
* Makefile.in: Regenerate.
* configure.ac: Do not invoke TL_AC_GCC_VERSION.
* aclocal.m4, configure: Regenerate.
gcc:
* BASE-VER, DATESTAMP, DEV-PHASE: New files.
* Makefile.in (gcc_version, gcc_version_trigger, ): Delete.
(BASEVER, DEVPHASE, DATESTAMP, BASEVER_c, DEVPHASE_c, DATESTAMP_c)
(BASEVER_s, DEVPHASE_s, DATESTAMP_s): New variables.
(version): Define using $(BASEVER_c).
(Makefile, config.status, build/gcov-iov.o): No longer depends on
version.c.
(version.o): Depend on version files; add custom generation command.
(prefix.o): Define BASEVER on command line.
(s-iov): Depend on version files; adjust command.
(TEXI_CPP_FILES, TEX_IGCC_FILES, TEXI_GCCINT_FILES, TEXI_CPPINT_FILES):
Add gcc-vers.texi.
(gcc-vers.texi): New rule.
(doc/%.info, doc/%.dvi): Add -I . to command line.
(doc/gccinstall.dvi): Likewise.
(PACKAGE): Delete. All uses replaced with "gcc".
* aclocal.m4: Do not include gcc-version.m4.
* configure.ac: Do not invoke TL_AC_GCC_VERSION.
Do not AC_SUBST nor AC_DEFINE PACKAGE or VERSION.
Set is_release based on contents of DEV-PHASE.
Set gcc_version based on contents of BASE-VER.
Define WIN32_REGISTRY_KEY only if the user overrode the default.
* config.in, configure: Regenerate.
* gccbug.in: Determine version of GCC in use at runtime.
* gcov-iov.c: Get version number and development phase from
command line, not by including version.c.
* intl.c: Replace all uses of PACKAGE with "gcc".
* libada-mk.in: Delete unused "gcc_version" variable.
* prefix.c: Default WIN32_REGISTRY_KEY to BASEVER.
* version.c: (VERSUFFIX): New hook for redistributors; adjust
commentary to match.
(version_string): Put together from pieces.
* config/alpha/x-vms: Do not use $(gcc_version).
* config/i386/t-nwld: Likewise.
* doc/include/gcc-common.texi: Include gcc-vers.texi for
version-GCC and DEVELOPMENT.
gcc/ada:
* Make-lang.in (doc/gnat_ugn_unw.info, doc/gnat_rm.info)
(doc/gnat_ugn_unw.dvi, doc/gnat_rm.dvi): Add gcc-vers.texi
to dependencies.
gcc/fortran:
* Make-lang.in (GFORTRAN_TEXI): Add gcc-vers.texi.
gcc/java:
* Make-lang.in (TEXI_JAVA_FILES): Add gcc-vers.texi.
gcc/treelang:
* Make-lang.in (TEXI_TREELANG_FILES): Add gcc-vers.texi.
libstdc++-v3:
* include/Makefile.am (c++config.h): Depend on DATESTAMP from gcc
subdirectory. Generate #define of __GLIBCXX__ from contents of
that file.
* include/Makefile.in: Regenerate.
* include/bits/c++config: Do not define __GLIBCXX__.
maintainer-scripts:
* README: Update.
* gcc_release: Update gcc/DEV-PHASE if that file exists, instead
of gcc/version.c.
* update_version: Handle updating gcc/DATESTAMP.
* update_web_docs: Generate gcc-vers.texi first.
From-SVN: r96549
2005-03-16 14:04:10 +08:00
|
|
|
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 gcc/gcc/BASE-VER gcc/gcc/DEV-PHASE
|
2004-01-04 05:16:13 +08:00
|
|
|
|
|
|
|
# Build a tarball of the sources.
|
|
|
|
tar cf docs-sources.tar gcc
|
2001-11-05 16:47:51 +08:00
|
|
|
|
2001-12-18 03:39:22 +08:00
|
|
|
# The directory to pass to -I; this is the one with texinfo.tex
|
2001-11-05 16:47:51 +08:00
|
|
|
# and fdl.texi.
|
2001-12-18 03:39:22 +08:00
|
|
|
includedir=gcc/gcc/doc/include
|
|
|
|
|
2004-05-13 18:14:00 +08:00
|
|
|
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"
|
2004-05-13 18:09:25 +08:00
|
|
|
|
|
|
|
# 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
|
2001-03-10 08:08:50 +08:00
|
|
|
|
gcc-version.m4: Delete.
config:
* gcc-version.m4: Delete.
fastjar:
* Makefile.am (fastjar_TEXINFOS): Add gcc-vers.texi.
(BASEVER, DEVPHASE): New variables.
(POD2MAN): Adjust setting of --release option.
(fastjar.1, grepjar.1, gcc-vers.texi): New rules.
* Makefile.in: Regenerate.
* configure.ac: Do not invoke TL_AC_GCC_VERSION.
* aclocal.m4, configure: Regenerate.
gcc:
* BASE-VER, DATESTAMP, DEV-PHASE: New files.
* Makefile.in (gcc_version, gcc_version_trigger, ): Delete.
(BASEVER, DEVPHASE, DATESTAMP, BASEVER_c, DEVPHASE_c, DATESTAMP_c)
(BASEVER_s, DEVPHASE_s, DATESTAMP_s): New variables.
(version): Define using $(BASEVER_c).
(Makefile, config.status, build/gcov-iov.o): No longer depends on
version.c.
(version.o): Depend on version files; add custom generation command.
(prefix.o): Define BASEVER on command line.
(s-iov): Depend on version files; adjust command.
(TEXI_CPP_FILES, TEX_IGCC_FILES, TEXI_GCCINT_FILES, TEXI_CPPINT_FILES):
Add gcc-vers.texi.
(gcc-vers.texi): New rule.
(doc/%.info, doc/%.dvi): Add -I . to command line.
(doc/gccinstall.dvi): Likewise.
(PACKAGE): Delete. All uses replaced with "gcc".
* aclocal.m4: Do not include gcc-version.m4.
* configure.ac: Do not invoke TL_AC_GCC_VERSION.
Do not AC_SUBST nor AC_DEFINE PACKAGE or VERSION.
Set is_release based on contents of DEV-PHASE.
Set gcc_version based on contents of BASE-VER.
Define WIN32_REGISTRY_KEY only if the user overrode the default.
* config.in, configure: Regenerate.
* gccbug.in: Determine version of GCC in use at runtime.
* gcov-iov.c: Get version number and development phase from
command line, not by including version.c.
* intl.c: Replace all uses of PACKAGE with "gcc".
* libada-mk.in: Delete unused "gcc_version" variable.
* prefix.c: Default WIN32_REGISTRY_KEY to BASEVER.
* version.c: (VERSUFFIX): New hook for redistributors; adjust
commentary to match.
(version_string): Put together from pieces.
* config/alpha/x-vms: Do not use $(gcc_version).
* config/i386/t-nwld: Likewise.
* doc/include/gcc-common.texi: Include gcc-vers.texi for
version-GCC and DEVELOPMENT.
gcc/ada:
* Make-lang.in (doc/gnat_ugn_unw.info, doc/gnat_rm.info)
(doc/gnat_ugn_unw.dvi, doc/gnat_rm.dvi): Add gcc-vers.texi
to dependencies.
gcc/fortran:
* Make-lang.in (GFORTRAN_TEXI): Add gcc-vers.texi.
gcc/java:
* Make-lang.in (TEXI_JAVA_FILES): Add gcc-vers.texi.
gcc/treelang:
* Make-lang.in (TEXI_TREELANG_FILES): Add gcc-vers.texi.
libstdc++-v3:
* include/Makefile.am (c++config.h): Depend on DATESTAMP from gcc
subdirectory. Generate #define of __GLIBCXX__ from contents of
that file.
* include/Makefile.in: Regenerate.
* include/bits/c++config: Do not define __GLIBCXX__.
maintainer-scripts:
* README: Update.
* gcc_release: Update gcc/DEV-PHASE if that file exists, instead
of gcc/version.c.
* update_version: Handle updating gcc/DATESTAMP.
* update_web_docs: Generate gcc-vers.texi first.
From-SVN: r96549
2005-03-16 14:04:10 +08:00
|
|
|
# Generate gcc-vers.texi.
|
|
|
|
(
|
|
|
|
echo "@set version-GCC $(cat gcc/gcc/BASE-VER)"
|
2005-10-01 06:06:07 +08:00
|
|
|
if [ "$(cat gcc/gcc/DEV-PHASE)" = "experimental" ]; then
|
gcc-version.m4: Delete.
config:
* gcc-version.m4: Delete.
fastjar:
* Makefile.am (fastjar_TEXINFOS): Add gcc-vers.texi.
(BASEVER, DEVPHASE): New variables.
(POD2MAN): Adjust setting of --release option.
(fastjar.1, grepjar.1, gcc-vers.texi): New rules.
* Makefile.in: Regenerate.
* configure.ac: Do not invoke TL_AC_GCC_VERSION.
* aclocal.m4, configure: Regenerate.
gcc:
* BASE-VER, DATESTAMP, DEV-PHASE: New files.
* Makefile.in (gcc_version, gcc_version_trigger, ): Delete.
(BASEVER, DEVPHASE, DATESTAMP, BASEVER_c, DEVPHASE_c, DATESTAMP_c)
(BASEVER_s, DEVPHASE_s, DATESTAMP_s): New variables.
(version): Define using $(BASEVER_c).
(Makefile, config.status, build/gcov-iov.o): No longer depends on
version.c.
(version.o): Depend on version files; add custom generation command.
(prefix.o): Define BASEVER on command line.
(s-iov): Depend on version files; adjust command.
(TEXI_CPP_FILES, TEX_IGCC_FILES, TEXI_GCCINT_FILES, TEXI_CPPINT_FILES):
Add gcc-vers.texi.
(gcc-vers.texi): New rule.
(doc/%.info, doc/%.dvi): Add -I . to command line.
(doc/gccinstall.dvi): Likewise.
(PACKAGE): Delete. All uses replaced with "gcc".
* aclocal.m4: Do not include gcc-version.m4.
* configure.ac: Do not invoke TL_AC_GCC_VERSION.
Do not AC_SUBST nor AC_DEFINE PACKAGE or VERSION.
Set is_release based on contents of DEV-PHASE.
Set gcc_version based on contents of BASE-VER.
Define WIN32_REGISTRY_KEY only if the user overrode the default.
* config.in, configure: Regenerate.
* gccbug.in: Determine version of GCC in use at runtime.
* gcov-iov.c: Get version number and development phase from
command line, not by including version.c.
* intl.c: Replace all uses of PACKAGE with "gcc".
* libada-mk.in: Delete unused "gcc_version" variable.
* prefix.c: Default WIN32_REGISTRY_KEY to BASEVER.
* version.c: (VERSUFFIX): New hook for redistributors; adjust
commentary to match.
(version_string): Put together from pieces.
* config/alpha/x-vms: Do not use $(gcc_version).
* config/i386/t-nwld: Likewise.
* doc/include/gcc-common.texi: Include gcc-vers.texi for
version-GCC and DEVELOPMENT.
gcc/ada:
* Make-lang.in (doc/gnat_ugn_unw.info, doc/gnat_rm.info)
(doc/gnat_ugn_unw.dvi, doc/gnat_rm.dvi): Add gcc-vers.texi
to dependencies.
gcc/fortran:
* Make-lang.in (GFORTRAN_TEXI): Add gcc-vers.texi.
gcc/java:
* Make-lang.in (TEXI_JAVA_FILES): Add gcc-vers.texi.
gcc/treelang:
* Make-lang.in (TEXI_TREELANG_FILES): Add gcc-vers.texi.
libstdc++-v3:
* include/Makefile.am (c++config.h): Depend on DATESTAMP from gcc
subdirectory. Generate #define of __GLIBCXX__ from contents of
that file.
* include/Makefile.in: Regenerate.
* include/bits/c++config: Do not define __GLIBCXX__.
maintainer-scripts:
* README: Update.
* gcc_release: Update gcc/DEV-PHASE if that file exists, instead
of gcc/version.c.
* update_version: Handle updating gcc/DATESTAMP.
* update_web_docs: Generate gcc-vers.texi first.
From-SVN: r96549
2005-03-16 14:04:10 +08:00
|
|
|
echo "@set DEVELOPMENT"
|
|
|
|
else
|
|
|
|
echo "@clear DEVELOPMENT"
|
|
|
|
fi
|
|
|
|
) > $includedir/gcc-vers.texi
|
|
|
|
|
2005-10-01 06:06:07 +08:00
|
|
|
# Now convert the relevant files from texi to HTML, PDF and PostScript.
|
2001-12-18 03:39:22 +08:00
|
|
|
for file in $MANUALS; do
|
2001-11-05 16:47:51 +08:00
|
|
|
filename=`find . -name ${file}.texi`
|
|
|
|
if [ "${filename}" ]; then
|
2001-12-18 03:39:22 +08:00
|
|
|
makeinfo --html -I ${includedir} -I `dirname ${filename}` ${filename}
|
2004-01-04 05:16:13 +08:00
|
|
|
tar cf ${file}-html.tar ${file}/*.html
|
2001-11-05 16:47:51 +08:00
|
|
|
texi2dvi -I ${includedir} ${filename} </dev/null && dvips -o ${file}.ps ${file}.dvi
|
2005-10-01 06:06:07 +08:00
|
|
|
texi2pdf -I ${includedir} ${filename} </dev/null
|
2001-12-18 03:39:22 +08:00
|
|
|
mkdir -p $DOCSDIR/$file
|
2001-05-03 23:49:22 +08:00
|
|
|
fi
|
2001-03-10 08:08:50 +08:00
|
|
|
done
|
|
|
|
|
2004-01-04 05:16:13 +08:00
|
|
|
# Then build a gzipped copy of each of the resulting .html, .ps and .tar files
|
2005-10-01 06:06:07 +08:00
|
|
|
for file in */*.html *.ps *.pdf *.tar; do
|
2001-03-10 08:08:50 +08:00
|
|
|
cat $file | gzip --best > $file.gz
|
|
|
|
done
|
|
|
|
|
|
|
|
# On the 15th of the month, wipe all the old files from the
|
|
|
|
# web server.
|
|
|
|
today=`date +%d`
|
|
|
|
if test $today = 15; then
|
2001-03-18 07:05:06 +08:00
|
|
|
find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
|
2001-12-18 03:39:22 +08:00
|
|
|
for m in $MANUALS; do
|
2004-05-13 18:30:28 +08:00
|
|
|
rm $DOCSDIR/$m/*.html $DOCSDIR/$m/*.html.gz
|
2001-12-18 03:39:22 +08:00
|
|
|
done
|
2001-03-10 08:08:50 +08:00
|
|
|
fi
|
|
|
|
|
2004-01-04 05:16:13 +08:00
|
|
|
# And copy the resulting files to the web server
|
2005-10-01 06:06:07 +08:00
|
|
|
for file in */*.html *.ps *.pdf *.tar; do
|
2001-03-18 07:05:06 +08:00
|
|
|
cat $DOCSDIR/$file |
|
2001-12-18 03:39:22 +08:00
|
|
|
sed -e '/^<meta name=generator/d' \
|
2001-06-07 15:27:49 +08:00
|
|
|
-e '/^%DVIPSSource:/d' > file1
|
2001-03-10 08:08:50 +08:00
|
|
|
cat $file |
|
2001-12-18 03:39:22 +08:00
|
|
|
sed -e '/^<meta name=generator/d' \
|
2001-06-07 15:27:49 +08:00
|
|
|
-e '/^%DVIPSSource:/d' > file2
|
2001-03-10 08:08:50 +08:00
|
|
|
if cmp -s file1 file2; then
|
|
|
|
:
|
|
|
|
else
|
2001-12-18 03:39:22 +08:00
|
|
|
cp $file $DOCSDIR/$file
|
|
|
|
cp $file.gz $DOCSDIR/$file.gz
|
2001-03-10 08:08:50 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2001-03-18 07:05:06 +08:00
|
|
|
cd $DOCSDIR
|
2001-03-10 08:08:50 +08:00
|
|
|
|
2001-06-08 14:27:47 +08:00
|
|
|
# Finally, generate the installation documentation (but only for CVS HEAD).
|
|
|
|
if [ "$RELEASE" = "HEAD" ]; then
|
2001-11-07 01:59:19 +08:00
|
|
|
SOURCEDIR=$WORKDIR/gcc/gcc/doc
|
2001-06-08 14:27:47 +08:00
|
|
|
DESTDIR=$WWWBASE_PREFORMATTED/install
|
|
|
|
export SOURCEDIR
|
|
|
|
export DESTDIR
|
|
|
|
$WORKDIR/gcc/gcc/doc/install.texi2html
|
|
|
|
|
2001-08-06 21:03:21 +08:00
|
|
|
# Preprocess the entire web site, not just the install docs!
|
|
|
|
echo "Invoking $WWWPREPROCESS"
|
2001-11-05 17:55:25 +08:00
|
|
|
$WWWPREPROCESS |grep -v '^ Warning: Keeping'
|
2001-06-08 14:27:47 +08:00
|
|
|
fi
|
2001-06-04 22:12:47 +08:00
|
|
|
|
|
|
|
# Clean up behind us.
|
|
|
|
|
2001-03-10 08:08:50 +08:00
|
|
|
rm -rf $WORKDIR
|