1999-02-18 09:55:34 -05:00
|
|
|
#!/bin/sh
|
|
|
|
# tardist: make up a tar.gz distribution of wxWindows 2
|
|
|
|
# Supply a source (e.g. ~/wx2) and destination (e.g. ~/wx2/deliver)
|
|
|
|
|
2001-02-06 09:23:44 -05:00
|
|
|
# We can't use e.g. this:
|
|
|
|
# ls `cat $SRC/distrib/msw/makefile.rsp` zip -@ -u $DEST/wxWindows-$VERSION-gen.zip
|
|
|
|
# because there's not enough space on the command line, plus we need to ignore the
|
|
|
|
# blank lines.
|
|
|
|
|
2002-08-16 13:08:47 -04:00
|
|
|
TAR=tar
|
|
|
|
ARCH=`arch`
|
|
|
|
if [ "$ARCH" = "ppc" ]; then
|
|
|
|
TAR=gnutar
|
|
|
|
fi
|
|
|
|
|
2001-02-06 09:23:44 -05:00
|
|
|
expandlines()
|
|
|
|
{
|
|
|
|
toexpand=$1
|
|
|
|
outputfile=$2
|
|
|
|
|
|
|
|
rm -f $outputfile
|
|
|
|
touch $outputfile
|
|
|
|
for line in `cat $toexpand` ; do
|
2001-02-12 10:59:24 -05:00
|
|
|
if [ "$line" != "" ]; then
|
2001-02-06 09:23:44 -05:00
|
|
|
ls $line >> $outputfile
|
|
|
|
fi
|
2002-08-16 08:22:23 -04:00
|
|
|
uniq < $outputfile > /tmp/uniqtemp.txt
|
|
|
|
mv /tmp/uniqtemp.txt $outputfile
|
2001-02-06 09:23:44 -05:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
init=""
|
2001-02-12 10:59:24 -05:00
|
|
|
if [ "$1" = "" ]
|
1999-02-18 09:55:34 -05:00
|
|
|
then
|
2001-02-12 10:59:24 -05:00
|
|
|
echo Usage: tardist wx-dir output-dir version
|
1999-02-18 09:55:34 -05:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2001-02-12 10:59:24 -05:00
|
|
|
if [ "$2" = "" ]
|
1999-02-18 09:55:34 -05:00
|
|
|
then
|
2001-02-12 10:59:24 -05:00
|
|
|
echo Usage: tardist wx-dir output-dir version
|
1999-02-18 09:55:34 -05:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2001-02-12 10:59:24 -05:00
|
|
|
if [ "$3" = "" ]
|
|
|
|
then
|
|
|
|
echo Usage: tardist wx-dir output-dir version
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
WXVER=$3
|
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
echo About to archive wxWindows:
|
|
|
|
echo From $1
|
|
|
|
echo To $2
|
|
|
|
echo CTRL-C if this is not correct.
|
|
|
|
read dummy
|
|
|
|
|
|
|
|
cd $1
|
|
|
|
|
|
|
|
echo Removing backup files...
|
|
|
|
rm *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~
|
|
|
|
|
2002-03-21 10:32:39 -05:00
|
|
|
rm -f $2/wx*-${WXVER}*.tar.gz
|
1999-02-18 09:55:34 -05:00
|
|
|
|
2002-08-20 14:38:05 -04:00
|
|
|
# Copy setup files
|
2002-09-09 05:28:25 -04:00
|
|
|
cp $1/include/wx/os2/SETUP0.H $1/include/wx/os2/setup.h
|
2002-08-20 14:38:05 -04:00
|
|
|
cp $1/include/wx/msw/setup0.h $1/include/wx/msw/setup.h
|
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
echo Tarring...
|
|
|
|
|
1999-03-01 17:41:38 -05:00
|
|
|
### Generic
|
2002-08-17 13:29:57 -04:00
|
|
|
#cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp > /tmp/wxgen_in.txt
|
|
|
|
#expandlines /tmp/wxgen_in.txt /tmp/wxgen.txt
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-gen.tar -T /tmp/wxgen.txt
|
|
|
|
#gzip $2/wxWindows-${WXVER}-gen.tar
|
|
|
|
#mv $2/wxWindows-${WXVER}-gen.tar.gz $2/wxWindows-${WXVER}-gen.tgz
|
1999-03-01 17:41:38 -05:00
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
### wxGTK
|
2002-08-17 13:29:57 -04:00
|
|
|
cd $1
|
2002-08-16 13:08:47 -04:00
|
|
|
cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/dialoged.rsp $1/distrib/msw/gtk.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp > /tmp/wxgtk_in.txt
|
2002-08-16 08:22:23 -04:00
|
|
|
expandlines /tmp/wxgtk_in.txt /tmp/wxgtk.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
$TAR cf $2/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt
|
|
|
|
|
|
|
|
echo Re-tarring wxGTK in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
|
|
|
$TAR xf ../wxGTK-${WXVER}.tar
|
|
|
|
cd ..
|
|
|
|
rm -f wxGTK-${WXVER}.tar
|
|
|
|
$TAR cf $2/wxGTK-${WXVER}.tar wxWindows-${WXVER}/*
|
|
|
|
rm -f -r wxWindows-${WXVER}
|
2001-05-15 10:51:00 -04:00
|
|
|
gzip $2/wxGTK-${WXVER}.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
|
|
|
### wxMotif
|
2002-08-17 08:11:41 -04:00
|
|
|
cd $1
|
2002-08-16 08:22:23 -04:00
|
|
|
cat $1/distrib/msw/generic.rsp $1/distrib/msw/motif.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp > /tmp/wxmotif_in.txt
|
|
|
|
expandlines /tmp/wxmotif_in.txt /tmp/wxmotif.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
$TAR cf $2/wxMotif-${WXVER}.tar -T /tmp/wxmotif.txt
|
|
|
|
|
|
|
|
echo Re-tarring wxMotif in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
|
|
|
$TAR xf ../wxMotif-${WXVER}.tar
|
|
|
|
cd ..
|
|
|
|
rm -f wxMotif-${WXVER}.tar
|
|
|
|
$TAR cf $2/wxMotif-${WXVER}.tar wxWindows-${WXVER}/*
|
|
|
|
rm -f -r wxWindows-${WXVER}
|
2001-05-15 10:51:00 -04:00
|
|
|
gzip $2/wxMotif-${WXVER}.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
2002-03-24 05:29:38 -05:00
|
|
|
### wxX11: combined wxMotif and wxX11 distributions
|
2002-08-17 08:11:41 -04:00
|
|
|
cd $1
|
2002-08-16 08:22:23 -04:00
|
|
|
cat $1/distrib/msw/generic.rsp $1/distrib/msw/motif.rsp $1/distrib/msw/x11.rsp $1/distrib/msw/univ.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/dialoged.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp > /tmp/wxx11_in.txt
|
|
|
|
expandlines /tmp/wxx11_in.txt /tmp/wxx11.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
$TAR cf $2/wxX11-${WXVER}.tar -T /tmp/wxx11.txt
|
|
|
|
|
|
|
|
echo Re-tarring wxX11 in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
|
|
|
$TAR xf ../wxX11-${WXVER}.tar
|
|
|
|
cd ..
|
|
|
|
rm -f wxX11-${WXVER}.tar
|
|
|
|
$TAR cf $2/wxX11-${WXVER}.tar wxWindows-${WXVER}/*
|
|
|
|
rm -f -r wxWindows-${WXVER}
|
2002-03-21 10:32:39 -05:00
|
|
|
gzip $2/wxX11-${WXVER}.tar
|
2002-02-26 16:58:07 -05:00
|
|
|
|
2001-05-11 09:04:31 -04:00
|
|
|
### wxMSW
|
2002-08-17 08:11:41 -04:00
|
|
|
# cd $1
|
2002-08-16 08:22:23 -04:00
|
|
|
# cat $1/distrib/msw/msw.rsp $1/distrib/msw/vc.rsp $1/distrib/msw/bc.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp > /tmp/wxmsw_in.txt
|
|
|
|
# expandlines /tmp/wxmsw_in.txt /tmp/wxmsw.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
# $TAR cf $2/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt
|
2002-03-24 05:29:38 -05:00
|
|
|
# gzip $2/wxMSW-${WXVER}.tar
|
2001-05-11 09:04:31 -04:00
|
|
|
|
2002-08-16 07:39:11 -04:00
|
|
|
### wxMac
|
2002-08-20 14:38:05 -04:00
|
|
|
cp $1/include/wx/mac/setup0.h $1/include/wx/setup.h
|
2002-08-17 08:11:41 -04:00
|
|
|
cd $1
|
2002-08-23 07:29:27 -04:00
|
|
|
cat $1/distrib/msw/mac.rsp $1/distrib/msw/generic.rsp $1/distrib/msw/cw_mac.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/dialoged.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/stc.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp > /tmp/wxmac_in.txt
|
2002-08-16 08:22:23 -04:00
|
|
|
expandlines /tmp/wxmac_in.txt /tmp/wxmac.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
$TAR cf $2/wxMac-${WXVER}.tar -T /tmp/wxmac.txt
|
|
|
|
|
2002-08-20 14:38:05 -04:00
|
|
|
rm -f $1/include/wx/setup.h
|
|
|
|
|
2002-08-16 13:08:47 -04:00
|
|
|
echo Re-tarring wxMac in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
|
|
|
$TAR xf ../wxMac-${WXVER}.tar
|
2002-08-17 13:29:57 -04:00
|
|
|
rm -f -r contrib/src/mmedia contrib/samples/mmedia
|
2002-08-16 13:08:47 -04:00
|
|
|
cd ..
|
|
|
|
rm -f wxMac-${WXVER}.tar
|
|
|
|
$TAR cf $2/wxMac-${WXVER}.tar wxWindows-${WXVER}/*
|
|
|
|
rm -f -r wxWindows-${WXVER}
|
2002-08-16 07:39:11 -04:00
|
|
|
gzip $2/wxMac-${WXVER}.tar
|
|
|
|
|
2002-09-09 07:25:22 -04:00
|
|
|
### wxUniv: universal-specific files
|
|
|
|
cd $1
|
|
|
|
cat $1/distrib/msw/univ.rsp > /tmp/wxuniv_in.txt
|
|
|
|
expandlines /tmp/wxuniv_in.txt /tmp/wxuniv.txt
|
|
|
|
$TAR cf $2/wxWindows-${WXVER}-Univ.tar -T /tmp/wxuniv.txt
|
|
|
|
|
|
|
|
echo Re-tarring wxUniversal in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
|
|
|
$TAR xf ../wxWindows-${WXVER}-Univ.tar
|
|
|
|
cd ..
|
|
|
|
rm -f wxWindows-${WXVER}-Univ.tar
|
|
|
|
$TAR cf $2/wxWindows-${WXVER}-Univ.tar wxWindows-${WXVER}/*
|
|
|
|
rm -f -r wxWindows-${WXVER}
|
|
|
|
gzip $2/wxWindows-${WXVER}-Univ.tar
|
|
|
|
|
2002-09-08 10:46:17 -04:00
|
|
|
### wxAll: all distributions in one giant archive
|
|
|
|
cd $1
|
2002-09-09 05:28:25 -04:00
|
|
|
cat $1/distrib/msw/generic.rsp $1/distrib/msw/msw.rsp $1/distrib/msw/vc.rsp $1/distrib/msw/cw.rsp $1/distrib/msw/cw_mac.rsp $1/distrib/msw/gtk.rsp $1/distrib/msw/x11.rsp $1/distrib/msw/motif.rsp $1/distrib/msw/mac.rsp $1/distrib/msw/os2.rsp $1/distrib/msw/x11.rsp $1/distrib/msw/univ.rsp $1/distrib/msw/mgl.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/utilmake.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/mmedia.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/stc.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/dialoged.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp $1/distrib/msw/docsrc.rsp | uniq > /tmp/wxall_in.txt
|
2002-09-08 10:46:17 -04:00
|
|
|
expandlines /tmp/wxall_in.txt /tmp/wxall.txt
|
|
|
|
$TAR cf $2/wxAll-${WXVER}.tar -T /tmp/wxall.txt
|
|
|
|
|
|
|
|
echo Re-tarring wxAll in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
2002-09-12 16:16:53 -04:00
|
|
|
|
|
|
|
# Copy OS/2 specific configure files
|
|
|
|
cp $1/distrib/os2/os2-specific.zip docs/os2
|
|
|
|
|
|
|
|
# Translate all .dsp and .dsw files to DOS format
|
|
|
|
unix2dos --unix2dos `cat $1/distrib/msw/vc.rsp`
|
|
|
|
|
|
|
|
# Copy the OS/2 files which probably haven't been copied yet
|
|
|
|
mkdir include/wx/os2
|
|
|
|
mkdir src/os2
|
|
|
|
cp $1/include/wx/os2/*.H include/wx/os2
|
|
|
|
cp $1/src/os2/*.CPP src/os2
|
|
|
|
|
|
|
|
# Make all OS/2 files lower case
|
|
|
|
$1/distrib/namedown include/wx/os2/*.H
|
|
|
|
$1/distrib/namedown src/os2/*.CPP
|
|
|
|
|
2002-09-08 10:46:17 -04:00
|
|
|
$TAR xf ../wxAll-${WXVER}.tar
|
|
|
|
cd ..
|
|
|
|
rm -f wxAll-${WXVER}.tar
|
|
|
|
$TAR cf $2/wxAll-${WXVER}.tar wxWindows-${WXVER}/*
|
|
|
|
rm -f -r wxWindows-${WXVER}
|
|
|
|
gzip $2/wxAll-${WXVER}.tar
|
|
|
|
|
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
### Doc sources
|
2002-08-17 13:29:57 -04:00
|
|
|
#cd $1
|
|
|
|
#cat $1/distrib/msw/docsrc.rsp > /tmp/docsrc_in.txt
|
|
|
|
#expandlines /tmp/docsrc_in.txt /tmp/docsrc.txt
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt
|
|
|
|
#
|
|
|
|
#echo Re-tarring docs in a subdirectory...
|
|
|
|
#cd $2
|
|
|
|
#mkdir wxWindows-${WXVER}
|
|
|
|
#cd wxWindows-${WXVER}
|
|
|
|
#$TAR xf ../wxWindows-${WXVER}-doc.tar
|
|
|
|
#cd ..
|
|
|
|
#rm -f wxWindows-${WXVER}-doc.tar
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-doc.tar wxWindows-${WXVER}/*
|
|
|
|
#rm -f -r wxWindows-${WXVER}
|
|
|
|
#gzip $2/wxWindows-${WXVER}-doc.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
|
|
|
### HTML docs
|
2002-08-17 08:11:41 -04:00
|
|
|
cd $1
|
2002-08-16 08:22:23 -04:00
|
|
|
cat $1/distrib/msw/wx_html.rsp > /tmp/html_in.txt
|
|
|
|
expandlines /tmp/html_in.txt /tmp/html.txt
|
2002-08-18 10:10:52 -04:00
|
|
|
$TAR cf $2/wxWindows-${WXVER}-HTML.tar -T /tmp/html.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
|
|
|
|
echo Re-tarring HTML in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
2002-08-18 10:10:52 -04:00
|
|
|
$TAR xf ../wxWindows-${WXVER}-HTML.tar
|
2002-08-16 13:08:47 -04:00
|
|
|
cd ..
|
2002-08-18 10:10:52 -04:00
|
|
|
rm -f wxWindows-${WXVER}-HTML.tar
|
|
|
|
$TAR cf $2/wxWindows-${WXVER}-HTML.tar wxWindows-${WXVER}/*
|
2002-08-16 13:08:47 -04:00
|
|
|
rm -f -r wxWindows-${WXVER}
|
2002-08-18 10:10:52 -04:00
|
|
|
gzip $2/wxWindows-${WXVER}-HTML.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
2002-08-17 13:29:57 -04:00
|
|
|
### HTB docs
|
|
|
|
cd $1
|
|
|
|
cat $1/distrib/msw/wx_htb.rsp > /tmp/htb_in.txt
|
|
|
|
expandlines /tmp/htb_in.txt /tmp/htb.txt
|
2002-08-18 10:10:52 -04:00
|
|
|
$TAR cf $2/wxWindows-${WXVER}-HTB.tar -T /tmp/htb.txt
|
2002-08-17 13:29:57 -04:00
|
|
|
|
|
|
|
echo Re-tarring HTB in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
2002-08-18 10:10:52 -04:00
|
|
|
$TAR xf ../wxWindows-${WXVER}-HTB.tar
|
2002-08-17 13:29:57 -04:00
|
|
|
cd ..
|
2002-08-18 10:10:52 -04:00
|
|
|
rm -f wxWindows-${WXVER}-HTB.tar
|
|
|
|
$TAR cf $2/wxWindows-${WXVER}-HTB.tar wxWindows-${WXVER}/*
|
2002-08-17 13:29:57 -04:00
|
|
|
rm -f -r wxWindows-${WXVER}
|
2002-08-18 10:10:52 -04:00
|
|
|
gzip $2/wxWindows-${WXVER}-HTB.tar
|
2002-08-17 13:29:57 -04:00
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
### PDF docs
|
2002-08-17 08:11:41 -04:00
|
|
|
cd $1
|
2002-08-16 08:22:23 -04:00
|
|
|
cat $1/distrib/msw/wx_pdf.rsp > /tmp/pdf_in.txt
|
|
|
|
expandlines /tmp/pdf_in.txt /tmp/pdf.txt
|
2002-08-18 10:10:52 -04:00
|
|
|
$TAR cf $2/wxWindows-${WXVER}-PDF.tar -T /tmp/pdf.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
|
|
|
|
echo Re-tarring PDF in a subdirectory...
|
|
|
|
cd $2
|
|
|
|
mkdir wxWindows-${WXVER}
|
|
|
|
cd wxWindows-${WXVER}
|
2002-08-18 10:10:52 -04:00
|
|
|
$TAR xf ../wxWindows-${WXVER}-PDF.tar
|
2002-08-16 13:08:47 -04:00
|
|
|
cd ..
|
2002-08-18 10:10:52 -04:00
|
|
|
rm -f wxWindows-${WXVER}-PDF.tar
|
|
|
|
$TAR cf $2/wxWindows-${WXVER}-PDF.tar wxWindows-${WXVER}/*
|
2002-08-16 13:08:47 -04:00
|
|
|
rm -f -r wxWindows-${WXVER}
|
2002-08-18 10:10:52 -04:00
|
|
|
gzip $2/wxWindows-${WXVER}-PDF.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
|
|
|
### Tex2RTF
|
2002-08-17 13:29:57 -04:00
|
|
|
#cd $1
|
|
|
|
#cat $1/distrib/msw/tex2rtf.rsp > /tmp/tex2rtf_in.txt
|
|
|
|
#expandlines /tmp/tex2rtf_in.txt /tmp/tex2rtf.txt
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-tex2rtf.tar -T /tmp/tex2rtf.txt
|
|
|
|
#
|
|
|
|
#echo Re-tarring Tex2RTF in a subdirectory...
|
|
|
|
#cd $2
|
|
|
|
#mkdir wxWindows-${WXVER}
|
|
|
|
#cd wxWindows-${WXVER}
|
|
|
|
#$TAR xf ../wxWindows-${WXVER}-tex2rtf.tar
|
|
|
|
#cd ..
|
|
|
|
#rm -f wxWindows-${WXVER}-tex2rtf.tar
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-tex2rtf.tar wxWindows-${WXVER}/*
|
|
|
|
#rm -f -r wxWindows-${WXVER}
|
|
|
|
#gzip $2/wxWindows-${WXVER}-tex2rtf.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
|
|
|
### OGL
|
2002-08-17 13:29:57 -04:00
|
|
|
#cd $1
|
|
|
|
#cat $1/distrib/msw/ogl.rsp > /tmp/ogl_in.txt
|
|
|
|
#expandlines /tmp/ogl_in.txt /tmp/ogl.txt
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-ogl.tar -T /tmp/ogl.txt
|
|
|
|
#
|
|
|
|
#echo Re-tarring OGL in a subdirectory...
|
|
|
|
#cd $2
|
|
|
|
#mkdir wxWindows-${WXVER}
|
|
|
|
#cd wxWindows-${WXVER}
|
|
|
|
#$TAR xf ../wxWindows-${WXVER}-ogl.tar
|
|
|
|
#cd ..
|
|
|
|
#rm -f wxWindows-${WXVER}-ogl.tar
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-ogl.tar wxWindows-${WXVER}/*
|
|
|
|
#rm -f -r wxWindows-${WXVER}
|
|
|
|
#gzip $2/wxWindows-${WXVER}-ogl.tar
|
1999-02-18 09:55:34 -05:00
|
|
|
|
1999-04-19 16:43:41 -04:00
|
|
|
### JPEG
|
2002-08-17 13:29:57 -04:00
|
|
|
#cd $1
|
|
|
|
#cat $1/distrib/msw/jpeg.rsp > /tmp/jpeg_in.txt
|
|
|
|
#expandlines /tmp/jpeg_in.txt /tmp/jpeg.txt
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-jpeg.tar -T /tmp/jpeg.txt
|
|
|
|
#
|
|
|
|
#echo Re-tarring jpeg in a subdirectory...
|
|
|
|
#cd $2
|
|
|
|
#mkdir wxWindows-${WXVER}
|
|
|
|
#cd wxWindows-${WXVER}
|
|
|
|
#$TAR xf ../wxWindows-${WXVER}-jpeg.tar
|
|
|
|
#cd ..
|
|
|
|
#rm -f wxWindows-${WXVER}-jpeg.tar
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-jpeg.tar wxWindows-${WXVER}/*
|
|
|
|
#rm -f -r wxWindows-${WXVER}
|
|
|
|
#gzip $2/wxWindows-${WXVER}-jpeg.tar
|
1999-04-19 16:43:41 -04:00
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
### TIFF
|
2002-08-17 13:29:57 -04:00
|
|
|
#cd $1
|
|
|
|
#cat $1/distrib/msw/tiff.rsp > /tmp/tiff_in.txt
|
|
|
|
#expandlines /tmp/tiff_in.txt /tmp/tiff.txt
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-tiff.tar -T /tmp/tiff.txt
|
|
|
|
#
|
|
|
|
#echo Re-tarring docs in a subdirectory...
|
|
|
|
#cd $2
|
|
|
|
#mkdir wxWindows-${WXVER}
|
|
|
|
#cd wxWindows-${WXVER}
|
|
|
|
#$TAR xf ../wxWindows-${WXVER}-tiff.tar
|
|
|
|
#cd ..
|
|
|
|
#rm -f wxWindows-${WXVER}-tiff.tar
|
|
|
|
#$TAR cf $2/wxWindows-${WXVER}-tiff.tar wxWindows-${WXVER}/*
|
|
|
|
#rm -f -r wxWindows-${WXVER}
|
|
|
|
#gzip $2/wxWindows-${WXVER}-tiff.tar
|
2002-03-21 10:32:39 -05:00
|
|
|
|
|
|
|
# Copy readme and other files
|
2002-08-17 08:11:41 -04:00
|
|
|
cd $1
|
2002-03-24 05:29:38 -05:00
|
|
|
cp $1/docs/readme.txt $2/readme-${WXVER}.txt
|
|
|
|
cp $1/docs/changes.txt $2/changes-${WXVER}.txt
|
2002-08-16 13:08:47 -04:00
|
|
|
cp $1/docs/mgl/readme.txt $2/readme-mgl-${WXVER}.txt
|
|
|
|
cp $1/docs/mgl/install.txt $2/install-mgl-${WXVER}.txt
|
|
|
|
cp $1/docs/x11/readme.txt $2/readme-x11-${WXVER}.txt
|
|
|
|
cp $1/docs/x11/readme-nanox.txt $2/readme-nanox-${WXVER}.txt
|
|
|
|
cp $1/docs/x11/install.txt $2/install-x11-${WXVER}.txt
|
|
|
|
cp $1/docs/motif/readme.txt $2/readme-motif-${WXVER}.txt
|
|
|
|
cp $1/docs/motif/install.txt $2/install-motif-${WXVER}.txt
|
|
|
|
cp $1/docs/msw/readme.txt $2/readme-msw-${WXVER}.txt
|
|
|
|
cp $1/docs/msw/install.txt $2/install-msw-${WXVER}.txt
|
|
|
|
cp $1/docs/gtk/readme.txt $2/readme-gtk-${WXVER}.txt
|
|
|
|
cp $1/docs/gtk/install.txt $2/install-gtk-${WXVER}.txt
|
|
|
|
cp $1/docs/mac/readme.txt $2/readme-mac-${WXVER}.txt
|
|
|
|
cp $1/docs/mac/install.txt $2/install-mac-${WXVER}.txt
|
|
|
|
cp $1/docs/os2/install.txt $2/install-os2-${WXVER}.txt
|
2000-07-15 15:51:35 -04:00
|
|
|
|
1999-02-18 09:55:34 -05:00
|
|
|
echo Done!
|