9806a0e71e
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
144 lines
4.2 KiB
Bash
144 lines
4.2 KiB
Bash
#!/bin/sh
|
|
# tardist: make up a tar.gz distribution of wxWindows 2
|
|
# Supply a source (e.g. ~/wx2) and destination (e.g. ~/wx2/deliver)
|
|
|
|
# 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.
|
|
|
|
expandlines()
|
|
{
|
|
toexpand=$1
|
|
outputfile=$2
|
|
|
|
rm -f $outputfile
|
|
touch $outputfile
|
|
for line in `cat $toexpand` ; do
|
|
if [ "$line" != "" ]; then
|
|
ls $line >> $outputfile
|
|
fi
|
|
done
|
|
}
|
|
|
|
|
|
init=""
|
|
if [ "$1" = "" ]
|
|
then
|
|
echo Usage: tardist wx-dir output-dir version
|
|
exit
|
|
fi
|
|
|
|
if [ "$2" = "" ]
|
|
then
|
|
echo Usage: tardist wx-dir output-dir version
|
|
exit
|
|
fi
|
|
|
|
if [ "$3" = "" ]
|
|
then
|
|
echo Usage: tardist wx-dir output-dir version
|
|
exit
|
|
fi
|
|
|
|
WXVER=$3
|
|
|
|
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 *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~
|
|
|
|
rm -f $2/wx*-${WXVER}*.tgz
|
|
rm -f $2/tex2rtf2-*.tgz
|
|
rm -f $2/dialoged-*.tgz
|
|
rm -f $2/ogl3-*.tgz
|
|
rm -f $2/jpeg-*.tgz
|
|
rm -f $2/tiff-*.tgz
|
|
rm -f $2/stc-*.tgz
|
|
rm -f $2/canvas-*.tgz
|
|
rm -f $2/contrib-*.tgz
|
|
rm -f $2/applet-*.tgz
|
|
rm -f $2/wxxrc-*.tgz
|
|
|
|
echo Tarring...
|
|
|
|
### Generic
|
|
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxgen.txt
|
|
tar cvf $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
|
|
|
|
### wxGTK
|
|
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/gtk.rsp $1/distrib/msw/makefile.rsp $1/distrib/msw/tiff.rsp $1/distrib/msw/jpeg.rsp` > /tmp/wxgtk.txt
|
|
tar cvf $2/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt
|
|
gzip $2/wxGTK-${WXVER}.tar
|
|
mv $2/wxGTK-${WXVER}.tar.gz $2/wxGTK-${WXVER}.tgz
|
|
|
|
### wxMotif
|
|
ls `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.txt
|
|
tar cvf $2/wxMotif-${WXVER}.tar -T /tmp/wxmotif.txt
|
|
gzip $2/wxMotif-${WXVER}.tar
|
|
mv $2/wxMotif-${WXVER}.tar.gz $2/wxMotif-${WXVER}.tgz
|
|
|
|
### wxMSW
|
|
ls `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.txt
|
|
tar cvf $2/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt
|
|
gzip $2/wxMSW-${WXVER}.tar
|
|
mv $2/wxMSW-${WXVER}.tar.gz $2/wxMSW-${WXVER}.tgz
|
|
|
|
### Doc sources
|
|
ls `cat $1/distrib/msw/docsrc.rsp` > /tmp/docsrc.txt
|
|
tar cvf $2/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt
|
|
gzip $2/wxWindows-${WXVER}-doc.tar
|
|
mv $2/wxWindows-${WXVER}-doc.tar.gz $2/wxWindows-${WXVER}-doc.tgz
|
|
|
|
### HTML docs
|
|
ls `cat $1/distrib/msw/wx_html.rsp` > /tmp/html.txt
|
|
tar cvf $2/wxWindows-${WXVER}-htm.tar -T /tmp/html.txt
|
|
gzip $2/wxWindows-${WXVER}-htm.tar
|
|
mv $2/wxWindows-${WXVER}-htm.tar.gz $2/wxWindows-${WXVER}-htm.tgz
|
|
|
|
### PDF docs
|
|
ls `cat $1/distrib/msw/wx_pdf.rsp` > /tmp/pdf.txt
|
|
tar cvf $2/wxWindows-${WXVER}-pdf.tar -T /tmp/pdf.txt
|
|
gzip $2/wxWindows-${WXVER}-pdf.tar
|
|
mv $2/wxWindows-${WXVER}-pdf.tar.gz $2/wxWindows-${WXVER}-pdf.tgz
|
|
|
|
### Stubs files
|
|
#ls `cat $1/distrib/msw/stubs.rsp` > /tmp/stubs.txt
|
|
#tar cvf $2/wxWindows-${WXVER}-stubs.tar -T /tmp/stubs.txt
|
|
#gzip $2/wxWindows-${WXVER}-stubs.tar
|
|
#mv $2/wxWindows-${WXVER}-stubs.tar.gz $2/wxWindows-${WXVER}-stubs.tgz
|
|
|
|
### Tex2RTF
|
|
ls `cat $1/distrib/msw/tex2rtf.rsp` > /tmp/tex2rtf.txt
|
|
tar cvf $2/tex2rtf2-${WXVER}.tar -T /tmp/tex2rtf.txt
|
|
gzip $2/tex2rtf2-${WXVER}.tar
|
|
mv $2/tex2rtf2-${WXVER}.tar.gz $2/tex2rtf2-${WXVER}.tgz
|
|
|
|
### OGL
|
|
ls `cat $1/distrib/msw/ogl.rsp` > /tmp/ogl.txt
|
|
tar cvf $2/ogl3-${WXVER}.tar -T /tmp/ogl.txt
|
|
gzip $2/ogl3-${WXVER}.tar
|
|
mv $2/ogl3-${WXVER}.tar.gz $2/ogl3-${WXVER}.tgz
|
|
|
|
### JPEG
|
|
ls `cat $1/distrib/msw/jpeg.rsp` > /tmp/jpeg.txt
|
|
tar cvf $2/jpeg-${WXVER}.tar -T /tmp/jpeg.txt
|
|
gzip $2/jpeg-${WXVER}.tar
|
|
mv $2/jpeg-${WXVER}.tar.gz $2/jpeg-${WXVER}.tgz
|
|
|
|
### TIFF
|
|
ls `cat $1/distrib/msw/tiff.rsp` > /tmp/tiff.txt
|
|
tar cvf $2/tiff-${WXVER}.tar -T /tmp/tiff.txt
|
|
gzip $2/tiff-${WXVER}.tar
|
|
mv $2/tiff-${WXVER}.tar.gz $2/tiff-${WXVER}.tgz
|
|
|
|
echo Done!
|