Revision 18272,
1.2 KB
checked in by ghudson, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18271,
which included commits to RCS files with non-trunk default branches.
|
-
Property svn:executable set to
*
|
Rev | Line | |
---|
[18271] | 1 | #!/bin/sh |
---|
| 2 | |
---|
| 3 | AUTODIR=/home/norwegen/auto |
---|
| 4 | CVSROOT=/pub/master/home-of-linux |
---|
| 5 | CVSHOST=cvs: |
---|
| 6 | MODULE=libgtop |
---|
| 7 | |
---|
| 8 | rm -rf $AUTODIR || exit 1 |
---|
| 9 | mkdir $AUTODIR || exit 1 |
---|
| 10 | cd $AUTODIR || exit 1 |
---|
| 11 | |
---|
| 12 | echo "Making cpio archive out of $CVSROOT/$MODULE ..." |
---|
| 13 | |
---|
| 14 | find $CVSROOT/$MODULE | cpio -o --format=crc | gzip -9f > $MODULE-current-cvs.cpio.gz || exit 1 |
---|
| 15 | |
---|
| 16 | echo "Checking out $MODULE" |
---|
| 17 | |
---|
| 18 | cvs -d $CVSHOST$CVSROOT co $MODULE || exit 1 |
---|
| 19 | |
---|
| 20 | echo "Making cpio archive out of checked out sources ..." |
---|
| 21 | |
---|
| 22 | find $MODULE | cpio -o --format=crc | gzip -9f > $MODULE-current.cpio.gz || exit 1 |
---|
| 23 | |
---|
| 24 | for file in README LIESMICH NEWS ChangeLog ; do |
---|
| 25 | if [ -s $MODULE/$file ] ; then |
---|
| 26 | cp $MODULE/$file . || exit 1 |
---|
| 27 | fi |
---|
| 28 | done |
---|
| 29 | |
---|
| 30 | tar cvf - $MODULE | gzip -9f > $MODULE-current.tar.gz || exit 1 |
---|
| 31 | |
---|
| 32 | find $MODULE/doc -maxdepth 1 -type f -exec cp {} . \; |
---|
| 33 | |
---|
| 34 | # echo "Making documentation ..." |
---|
| 35 | # jade -D /usr/lib/sgml/jade_dsl -d libgtop.dsl -t sgml -V %no-make-index% libgtop.sgml > /dev/null || exit 1 |
---|
| 36 | |
---|
| 37 | # echo "Making TeX documentation ..." |
---|
| 38 | # jade -D /usr/lib/sgml/jade_dsl -D /usr/lib/sgml/stylesheets -d docbook.dsl -t tex libgtop.sgml || exit 1 |
---|
| 39 | # jadetex libgtop.tex || exit 1 |
---|
| 40 | # jadetex libgtop.tex || exit 1 |
---|
| 41 | # dvips libgtop || exit 1 |
---|
| 42 | |
---|
| 43 | echo "Cleaning up ..." |
---|
| 44 | |
---|
| 45 | rm -rf $MODULE |
---|
| 46 | |
---|
| 47 | echo "Done." |
---|
Note: See
TracBrowser
for help on using the repository browser.