2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / maintainer-scripts / update_web_docs_libstdcxx
blob7aad551ea9eac1d33942acc911131d8788346899
1 #!/bin/sh
4 # "sh update_web_docs_libstdcxx.sh"
5 # Checks out a copy of the libstdc++-v3 "inner" documentation and puts
6 # it in the onlinedocs area. For an initial description of "inner"
7 # docs, see the thread starting with
8 # http://gcc.gnu.org/ml/libstdc++/2000-11/msg00475.html
10 # Id: update_v3_web_docs.sh,v 1.4 2000/12/25 05:02:14 pedwards Exp
11 #####################################################################
13 CVSROOT=/cvs/gcc
14 GETTHIS='gcc/libstdc++-v3/docs/html'
15 WWWDIR=/www/gcc/htdocs/onlinedocs/libstdc++
16 #WWWDIR=/tmp/fake-onlinedocs-testing
19 ## No more changes should be needed. Ha, right, whatever.
20 #####################################################################
23 PATH=/usr/local/bin:$PATH
24 export CVSROOT
26 test -d $WWWDIR || /bin/mkdir $WWWDIR
27 test -d $WWWDIR || { echo something is very wrong ; exit 1; }
29 WORKDIR=/tmp/v3-doc-update.$$
30 /bin/rm -rf $WORKDIR
31 /bin/mkdir $WORKDIR
32 cd $WORKDIR
35 # checkout all the HTML files, get down into an interesting directory
36 cvs -Q co $GETTHIS
37 cd $GETTHIS
39 # pity the cvs 'export' would require a tag... maybe gcc_latest_snapshot
40 # would be recent enough? anyhow, get rid of the CVS dirs in the tree
41 find . -type d -name CVS -print | xargs rm -r Makefile
43 # build a compressed copy of the HTML, preserve directory structure
44 for file in `find . -name "*.html" -print`; do
45 gzip --best < $file > $file.gz
46 done
48 # copy the tree to the onlinedocs area, preserve directory structure
49 #find . -depth -print | cpio -pdv $WWWDIR
50 find . -depth -print | cpio -pd $WWWDIR > /dev/null 2>&1
52 cd /
53 /bin/rm -rf $WORKDIR