OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [maintainer-scripts/] [update_web_docs_svn] - Diff between revs 816 and 826

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 826
#!/bin/sh
#!/bin/sh
# Generate HTML documentation from GCC Texinfo docs.
# Generate HTML documentation from GCC Texinfo docs.
# This version is for GCC 3.1 and later versions.
# This version is for GCC 3.1 and later versions.
set -e
set -e
# Run this from /tmp.
# Run this from /tmp.
SVNROOT=${SVNROOT:-"file:///svn/gcc"}
SVNROOT=${SVNROOT:-"file:///svn/gcc"}
export SVNROOT
export SVNROOT
PATH=/usr/local/bin:$PATH
PATH=/usr/local/bin:$PATH
MANUALS="cpp
MANUALS="cpp
  cppinternals
  cppinternals
  fastjar
  fastjar
  gcc
  gcc
  gccint
  gccint
  gcj
  gcj
  gfortran
  gfortran
  gfc-internals
  gfc-internals
  gnat_ug_unx
  gnat_ug_unx
  gnat_ug_vms
  gnat_ug_vms
  gnat_ug_vxw
  gnat_ug_vxw
  gnat_ug_wnt
  gnat_ug_wnt
  gnat_ugn_unw
  gnat_ugn_unw
  gnat-style
  gnat-style
  gnat_rm
  gnat_rm
  libgomp
  libgomp
  libiberty
  libiberty
  porting"
  porting"
WWWBASE=/www/gcc/htdocs
WWWBASE=/www/gcc/htdocs
WWWBASE_PREFORMATTED=/www/gcc/htdocs-preformatted
WWWBASE_PREFORMATTED=/www/gcc/htdocs-preformatted
WWWPREPROCESS='/www/gcc/bin/preprocess -r'
WWWPREPROCESS='/www/gcc/bin/preprocess -r'
# Process options -rrelease and -ddirectory
# Process options -rrelease and -ddirectory
RELEASE=""
RELEASE=""
SUBDIR=""
SUBDIR=""
while [ $# -gt 0 ]; do
while [ $# -gt 0 ]; do
  case $1 in
  case $1 in
    -r*)
    -r*)
      if [ -n "$RELEASE" ]; then
      if [ -n "$RELEASE" ]; then
        echo "Multiple releases specified" >&2
        echo "Multiple releases specified" >&2
        exit 1
        exit 1
      fi
      fi
      RELEASE="${1#-r}"
      RELEASE="${1#-r}"
      if [ -z "$RELEASE" ]; then
      if [ -z "$RELEASE" ]; then
        shift
        shift
        RELEASE="$1"
        RELEASE="$1"
        if [ -z "$RELEASE" ]; then
        if [ -z "$RELEASE" ]; then
          echo "No release specified with -r" >&2
          echo "No release specified with -r" >&2
          exit 1
          exit 1
        fi
        fi
      fi
      fi
      ;;
      ;;
    -d*)
    -d*)
      if [ -n "$SUBDIR" ]; then
      if [ -n "$SUBDIR" ]; then
        echo "Multiple subdirectories specified" >&2
        echo "Multiple subdirectories specified" >&2
        exit 1
        exit 1
      fi
      fi
      SUBDIR="${1#-d}"
      SUBDIR="${1#-d}"
      if [ -z "$SUBDIR" ]; then
      if [ -z "$SUBDIR" ]; then
        shift
        shift
        SUBDIR="$1"
        SUBDIR="$1"
        if [ -z "$SUBDIR" ]; then
        if [ -z "$SUBDIR" ]; then
          echo "No subdirectory specified with -d" >&2
          echo "No subdirectory specified with -d" >&2
          exit 1
          exit 1
        fi
        fi
      fi
      fi
      ;;
      ;;
    *)
    *)
      echo "Unknown argument \"$1\"" >&2
      echo "Unknown argument \"$1\"" >&2
      exit 1
      exit 1
      ;;
      ;;
  esac
  esac
  shift
  shift
done
done
if [ -n "$RELEASE" ] && [ -z "$SUBDIR" ]; then
if [ -n "$RELEASE" ] && [ -z "$SUBDIR" ]; then
  echo "Release specified without subdirectory" >&2
  echo "Release specified without subdirectory" >&2
  exit 1
  exit 1
fi
fi
if [ -z "$SUBDIR" ]; then
if [ -z "$SUBDIR" ]; then
  DOCSDIR=$WWWBASE/onlinedocs
  DOCSDIR=$WWWBASE/onlinedocs
else
else
  DOCSDIR=$WWWBASE/onlinedocs/$SUBDIR
  DOCSDIR=$WWWBASE/onlinedocs/$SUBDIR
fi
fi
if [ ! -d $DOCSDIR ]; then
if [ ! -d $DOCSDIR ]; then
  mkdir $DOCSDIR
  mkdir $DOCSDIR
fi
fi
if [ -z "$RELEASE" ]; then
if [ -z "$RELEASE" ]; then
  RELEASE=trunk
  RELEASE=trunk
fi
fi
WORKDIR=/tmp/gcc-doc-update.$$
WORKDIR=/tmp/gcc-doc-update.$$
rm -rf $WORKDIR
rm -rf $WORKDIR
mkdir $WORKDIR
mkdir $WORKDIR
cd $WORKDIR
cd $WORKDIR
if [ "$RELEASE" = "trunk" ]; then
if [ "$RELEASE" = "trunk" ]; then
  svn -q export $SVNROOT/$RELEASE gcc
  svn -q export $SVNROOT/$RELEASE gcc
else
else
  svn -q export $SVNROOT/tags/$RELEASE gcc
  svn -q export $SVNROOT/tags/$RELEASE gcc
fi
fi
# Remove all unwanted files.  This is needed (a) to build the Ada
# Remove all unwanted files.  This is needed (a) to build the Ada
# generator programs with the installed library, not the new one and
# generator programs with the installed library, not the new one and
# (b) to avoid packaging all the sources instead of only documentation
# (b) to avoid packaging all the sources instead of only documentation
# sources.
# sources.
find gcc -type f \( -name '*.texi' \
find gcc -type f \( -name '*.texi' \
  -o -path gcc/gcc/doc/install.texi2html \
  -o -path gcc/gcc/doc/install.texi2html \
  -o -path gcc/gcc/doc/include/texinfo.tex \
  -o -path gcc/gcc/doc/include/texinfo.tex \
  -o -path gcc/gcc/ada/xgnatugn.adb \
  -o -path gcc/gcc/ada/xgnatugn.adb \
  -o -path gcc/gcc/ada/ug_words \
  -o -path gcc/gcc/ada/ug_words \
  -o -path gcc/gcc/BASE-VER \
  -o -path gcc/gcc/BASE-VER \
  -o -path gcc/gcc/DEV-PHASE \
  -o -path gcc/gcc/DEV-PHASE \
  -o -print0 \) | xargs -0 rm -f
  -o -print0 \) | xargs -0 rm -f
# Build a tarball of the sources.
# Build a tarball of the sources.
tar cf docs-sources.tar gcc
tar cf docs-sources.tar gcc
# The directory to pass to -I; this is the one with texinfo.tex
# The directory to pass to -I; this is the one with texinfo.tex
# and fdl.texi.
# and fdl.texi.
includedir=gcc/gcc/doc/include
includedir=gcc/gcc/doc/include
# Generate gnat_ugn_unw
# Generate gnat_ugn_unw
if [ -f gcc/gcc/ada/xgnatugn.adb ]; then
if [ -f gcc/gcc/ada/xgnatugn.adb ]; then
   gnatmake -q gcc/gcc/ada/xgnatugn
   gnatmake -q gcc/gcc/ada/xgnatugn
   ./xgnatugn unw gcc/gcc/ada/gnat_ugn.texi \
   ./xgnatugn unw gcc/gcc/ada/gnat_ugn.texi \
     gcc/gcc/ada/ug_words gnat_ugn_unw.texi
     gcc/gcc/ada/ug_words gnat_ugn_unw.texi
fi
fi
# Generate gcc-vers.texi.
# Generate gcc-vers.texi.
(
(
   echo "@set version-GCC $(cat gcc/gcc/BASE-VER)"
   echo "@set version-GCC $(cat gcc/gcc/BASE-VER)"
   if [ "$(cat gcc/gcc/DEV-PHASE)" = "experimental" ]; then
   if [ "$(cat gcc/gcc/DEV-PHASE)" = "experimental" ]; then
      echo "@set DEVELOPMENT"
      echo "@set DEVELOPMENT"
   else
   else
      echo "@clear DEVELOPMENT"
      echo "@clear DEVELOPMENT"
   fi
   fi
   echo "@set srcdir $WORKDIR/gcc/gcc"
   echo "@set srcdir $WORKDIR/gcc/gcc"
   echo "@set VERSION_PACKAGE (GCC)"
   echo "@set VERSION_PACKAGE (GCC)"
   echo "@set BUGURL @uref{http://gcc.gnu.org/bugs/}"
   echo "@set BUGURL @uref{http://gcc.gnu.org/bugs/}"
) > $includedir/gcc-vers.texi
) > $includedir/gcc-vers.texi
# Now convert the relevant files from texi to HTML, PDF and PostScript.
# Now convert the relevant files from texi to HTML, PDF and PostScript.
for file in $MANUALS; do
for file in $MANUALS; do
  filename=`find . -name ${file}.texi`
  filename=`find . -name ${file}.texi`
  if [ "${filename}" ]; then
  if [ "${filename}" ]; then
    makeinfo --html -I ${includedir} -I `dirname ${filename}` -o ${file} ${filename}
    makeinfo --html -I ${includedir} -I `dirname ${filename}` -o ${file} ${filename}
    tar cf ${file}-html.tar ${file}/*.html
    tar cf ${file}-html.tar ${file}/*.html
    texi2dvi -I ${includedir} -o ${file}.dvi ${filename} /dev/null && dvips -o ${file}.ps ${file}.dvi
    texi2dvi -I ${includedir} -o ${file}.dvi ${filename} /dev/null && dvips -o ${file}.ps ${file}.dvi
    texi2pdf -I ${includedir} -o ${file}.pdf ${filename} 
    texi2pdf -I ${includedir} -o ${file}.pdf ${filename} 
    mkdir -p $DOCSDIR/$file
    mkdir -p $DOCSDIR/$file
  fi
  fi
done
done
# Then build a gzipped copy of each of the resulting .html, .ps and .tar files
# Then build a gzipped copy of each of the resulting .html, .ps and .tar files
for file in */*.html *.ps *.pdf *.tar; do
for file in */*.html *.ps *.pdf *.tar; do
  cat $file | gzip --best > $file.gz
  cat $file | gzip --best > $file.gz
done
done
# On the 15th of the month, wipe all the old files from the
# On the 15th of the month, wipe all the old files from the
# web server.
# web server.
today=`date +%d`
today=`date +%d`
if test $today = 15; then
if test $today = 15; then
  find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
  find $DOCSDIR -type f -maxdepth 1 -print | grep -v index.html | xargs rm
  for m in $MANUALS; do
  for m in $MANUALS; do
    rm -f $DOCSDIR/$m/*.html $DOCSDIR/$m/*.html.gz
    rm -f $DOCSDIR/$m/*.html $DOCSDIR/$m/*.html.gz
  done
  done
fi
fi
# And copy the resulting files to the web server
# And copy the resulting files to the web server
for file in */*.html *.ps *.pdf *.tar; do
for file in */*.html *.ps *.pdf *.tar; do
  if [ -f $DOCSDIR/$file ]; then
  if [ -f $DOCSDIR/$file ]; then
    cat $DOCSDIR/$file |
    cat $DOCSDIR/$file |
      sed -e '/^
      sed -e '/^
          -e '/^%DVIPSSource:/d' > file1
          -e '/^%DVIPSSource:/d' > file1
  fi
  fi
  cat $file |
  cat $file |
    sed -e '/^
    sed -e '/^
        -e '/^%DVIPSSource:/d' > file2
        -e '/^%DVIPSSource:/d' > file2
  if cmp -s file1 file2; then
  if cmp -s file1 file2; then
    :
    :
  else
  else
    cp $file $DOCSDIR/$file
    cp $file $DOCSDIR/$file
    cp $file.gz $DOCSDIR/$file.gz
    cp $file.gz $DOCSDIR/$file.gz
  fi
  fi
done
done
cd $DOCSDIR
cd $DOCSDIR
# Finally, generate the installation documentation
# Finally, generate the installation documentation
if [ "$RELEASE" = "trunk" ]; then
if [ "$RELEASE" = "trunk" ]; then
  SOURCEDIR=$WORKDIR/gcc/gcc/doc
  SOURCEDIR=$WORKDIR/gcc/gcc/doc
  DESTDIR=$WWWBASE_PREFORMATTED/install
  DESTDIR=$WWWBASE_PREFORMATTED/install
  export SOURCEDIR
  export SOURCEDIR
  export DESTDIR
  export DESTDIR
  $WORKDIR/gcc/gcc/doc/install.texi2html
  $WORKDIR/gcc/gcc/doc/install.texi2html
  # Preprocess the entire web site, not just the install docs!
  # Preprocess the entire web site, not just the install docs!
  echo "Invoking $WWWPREPROCESS"
  echo "Invoking $WWWPREPROCESS"
  $WWWPREPROCESS |grep -v '^  Warning: Keeping'
  $WWWPREPROCESS |grep -v '^  Warning: Keeping'
fi
fi
# Clean up behind us.
# Clean up behind us.
rm -rf $WORKDIR
rm -rf $WORKDIR
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.