gtk2/docs/tutorial/package-db-tutorial.sh
BST 2002 Tony Gale 5abc7156b6 cleanups
Mon Aug 26 12:21:16 BST 2002  Tony Gale <gale@gtk.org>

        * docs/tutorial/package-db-tutorial.sh: cleanups

        * docs/tutorial/gtk-tut.sgml: new content for the
        ItemFactory section. Originally from Robert Cleaver Ancell.
2002-08-26 11:35:57 +00:00

125 lines
2.7 KiB
Bash
Executable File

#! /bin/sh
# package_tutorial.sh - Package up the tutorial into various formats
# Copyright (C) Tony Gale 2000
# Contact: gale@gtk.org
#
# NOTE: This script requires the following to be installed:
# o DocBook
# o Jade
# o Jadetex
TARGET=`pwd`/gtk-tut.sgml
IMAGES="`pwd`/images"
IMAGESDIR="images"
EXAMPLES=`pwd`/../../examples
PATH=`pwd`:$PATH
DATE=`date '+%Y%m%d'`
# Check top level directory
if [ ! -d gtk-tutorial.$DATE ]; then
if [ -e gtk-tutorial.$DATE ]; then
echo "ERROR: gtk-tutorial is not a directory"
exit
fi
if ! mkdir gtk-tutorial.$DATE; then
echo "mkdir failed"
exit 1
fi
fi
if ! cd gtk-tutorial.$DATE; then
echo "cd failed"
exit 1
fi
cp $TARGET .
cp -R $IMAGES .
# SGML Format
echo -n "Copy SGML and images.... "
if [ ! -d sgml ]; then
if [ -e sgml ]; then
echo "ERROR: html is not a directory"
exit
fi
mkdir sgml
fi
(cd sgml ; cp $TARGET . ; cp -R $IMAGES . ; rm -rf $IMAGESDIR/CVS)
echo "done"
# HTML Format
echo -n "Formatting into HTML.... "
if [ ! -d html ]; then
if [ -e html ]; then
echo "ERROR: html is not a directory"
exit
fi
mkdir html
fi
(db2html gtk-tut.sgml ; mv gtk-tut/* html ; cp -R $IMAGES html ; rm html/$IMAGESDIR/*.eps ; rm -rf gtk-tut) > /dev/null
(cd html ; ln -s book1.html index.html ; rm -rf $IMAGESDIR/CVS)
echo "done"
# PS, PDF and DVI Format
echo -n "Formatting into PS, DVI and PDF.... "
if [ ! -d ps ]; then
if [ -e ps ]; then
echo "ERROR: ps is not a directory"
exit
fi
mkdir ps
fi
if [ ! -d pdf ]; then
if [ -e pdf ]; then
echo "ERROR: pdf is not a directory"
exit
fi
mkdir pdf
fi
sed "s/images\/\(.*\)\.png/images\/\1.eps/g" gtk-tut.sgml > ps/gtk-tut.sgml
cp -R $IMAGES ps
(cd ps ; db2dvi gtk-tut.sgml ; dvips gtk-tut.dvi -o gtk-tut.ps ; dvipdf gtk-tut.dvi ../pdf/gtk-tut.pdf) > /dev/null 2>&1
(cd ps ; rm gtk-tut.aux gtk-tut.log gtk-tut.sgml gtk-tut.tex ; rm -Rf $IMAGESDIR) > /dev/null 2>&1
echo "done"
# RTF Format
echo -n "Formatting into RTF.... "
if [ ! -d rtf ]; then
if [ -e rtf ]; then
echo "ERROR: rtf is not a directory"
exit
fi
mkdir rtf
fi
(db2rtf gtk-tut.sgml ; mv gtk-tut.rtf rtf) > /dev/null
(cd rtf ; cp -R $IMAGES . ; rm -f $IMAGESDIR/*.eps ; rm -rf $IMAGESDIR/CVS)
echo "done"
# Copy examples
echo -n "Copying examples"
cp -R $EXAMPLES .
(cd examples ; make clean ; rm -rf CVS */CVS */.cvsignore README.1ST extract.awk extract.sh find-examples.sh)
echo "done"
rm -f *
rm -rf $IMAGESDIR
# Package it all up
echo -n "Creating packages.... "
cd ..
tar cvfz gtk-tutorial.$DATE.tar.gz gtk-tutorial.$DATE
echo "done"
rm -rf gtk-tutorial.$DATE
echo
echo Package gtk-tutorial.$DATE.tar.gz created.
echo