Applied patch [ 596061 ] Adds more navigation buttons to preview
[wxWidgets.git] / distrib / msw / tardist
CommitLineData
33b64e6f
JS
1#!/bin/sh
2# tardist: make up a tar.gz distribution of wxWindows 2
3# Supply a source (e.g. ~/wx2) and destination (e.g. ~/wx2/deliver)
4
7a5e6267
JS
5# We can't use e.g. this:
6# ls `cat $SRC/distrib/msw/makefile.rsp` zip -@ -u $DEST/wxWindows-$VERSION-gen.zip
7# because there's not enough space on the command line, plus we need to ignore the
8# blank lines.
9
10expandlines()
11{
12 toexpand=$1
13 outputfile=$2
14
15 rm -f $outputfile
16 touch $outputfile
17 for line in `cat $toexpand` ; do
84c9e2f8 18 if [ "$line" != "" ]; then
7a5e6267
JS
19 ls $line >> $outputfile
20 fi
8f8edad8
JS
21 uniq < $outputfile > /tmp/uniqtemp.txt
22 mv /tmp/uniqtemp.txt $outputfile
7a5e6267
JS
23 done
24}
25
26
33b64e6f 27init=""
84c9e2f8 28if [ "$1" = "" ]
33b64e6f 29then
84c9e2f8 30 echo Usage: tardist wx-dir output-dir version
33b64e6f
JS
31 exit
32fi
33
84c9e2f8 34if [ "$2" = "" ]
33b64e6f 35then
84c9e2f8 36 echo Usage: tardist wx-dir output-dir version
33b64e6f
JS
37 exit
38fi
39
84c9e2f8
JS
40if [ "$3" = "" ]
41then
42 echo Usage: tardist wx-dir output-dir version
43 exit
44fi
45
46WXVER=$3
47
33b64e6f
JS
48echo About to archive wxWindows:
49echo From $1
50echo To $2
51echo CTRL-C if this is not correct.
52read dummy
53
54cd $1
55
56echo Removing backup files...
57rm *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~
58
2c7b88e6
JS
59rm -f $2/wx*-${WXVER}*.tar.gz
60rm -f $2/tex2rtf2-*.tar.gz
61rm -f $2/dialoged-*.tar.gz
62rm -f $2/ogl3-*.tar.gz
63rm -f $2/jpeg-*.tar.gz
64rm -f $2/tiff-*.tar.gz
65rm -f $2/stc-*.tar.gz
66rm -f $2/canvas-*.tar.gz
67rm -f $2/contrib-*.tar.gz
68rm -f $2/applet-*.tar.gz
69rm -f $2/wxxrc-*.tar.gz
33b64e6f
JS
70
71echo Tarring...
72
b69f1bd1 73### Generic
8f8edad8
JS
74cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp > /tmp/wxgen_in.txt
75expandlines /tmp/wxgen_in.txt /tmp/wxgen.txt
84c9e2f8
JS
76tar cvf $2/wxWindows-${WXVER}-gen.tar -T /tmp/wxgen.txt
77gzip $2/wxWindows-${WXVER}-gen.tar
78mv $2/wxWindows-${WXVER}-gen.tar.gz $2/wxWindows-${WXVER}-gen.tgz
b69f1bd1 79
33b64e6f 80### wxGTK
8f8edad8
JS
81cat $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_in.txt
82expandlines /tmp/wxgtk_in.txt /tmp/wxgtk.txt
d7dcb939
JS
83tar cvf $2/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt
84gzip $2/wxGTK-${WXVER}.tar
33b64e6f
JS
85
86### wxMotif
8f8edad8
JS
87cat $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
88expandlines /tmp/wxmotif_in.txt /tmp/wxmotif.txt
da7ed9b7 89tar cvf $2/wxMotif-${WXVER}.tar -T /tmp/wxmotif.txt
d7dcb939 90gzip $2/wxMotif-${WXVER}.tar
33b64e6f 91
4869c7db 92### wxX11: combined wxMotif and wxX11 distributions
8f8edad8
JS
93cat $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
94expandlines /tmp/wxx11_in.txt /tmp/wxx11.txt
95tar cvf $2/wxX11-${WXVER}.tar -T /tmp/wxx11.txt
2c7b88e6 96gzip $2/wxX11-${WXVER}.tar
c2ff68d3 97
13bf613e 98### wxMSW
8f8edad8
JS
99# 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
100# expandlines /tmp/wxmsw_in.txt /tmp/wxmsw.txt
4869c7db
JS
101# tar cvf $2/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt
102# gzip $2/wxMSW-${WXVER}.tar
13bf613e 103
38be1092 104### wxMac
8f8edad8
JS
105cat $1/distrib/msw/mac.rsp $1/distrib/msw/cw.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/dialoged.rsp $1/distrib/msw/ogl.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
106expandlines /tmp/wxmac_in.txt /tmp/wxmac.txt
38be1092
JS
107tar cvf $2/wxMac-${WXVER}.tar -T /tmp/wxmac.txt
108gzip $2/wxMac-${WXVER}.tar
109
33b64e6f 110### Doc sources
8f8edad8
JS
111cat $1/distrib/msw/docsrc.rsp > /tmp/docsrc_in.txt
112expandlines /tmp/docsrc_in.txt /tmp/docsrc.txt
84c9e2f8
JS
113tar cvf $2/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt
114gzip $2/wxWindows-${WXVER}-doc.tar
33b64e6f
JS
115
116### HTML docs
8f8edad8
JS
117cat $1/distrib/msw/wx_html.rsp > /tmp/html_in.txt
118expandlines /tmp/html_in.txt /tmp/html.txt
84c9e2f8
JS
119tar cvf $2/wxWindows-${WXVER}-htm.tar -T /tmp/html.txt
120gzip $2/wxWindows-${WXVER}-htm.tar
33b64e6f
JS
121
122### PDF docs
8f8edad8
JS
123cat $1/distrib/msw/wx_pdf.rsp > /tmp/pdf_in.txt
124expandlines /tmp/pdf_in.txt /tmp/pdf.txt
84c9e2f8
JS
125tar cvf $2/wxWindows-${WXVER}-pdf.tar -T /tmp/pdf.txt
126gzip $2/wxWindows-${WXVER}-pdf.tar
33b64e6f 127
33b64e6f 128### Tex2RTF
8f8edad8
JS
129cat $1/distrib/msw/tex2rtf.rsp > /tmp/tex2rtf_in.txt
130expandlines /tmp/tex2rtf_in.txt /tmp/tex2rtf.txt
d7dcb939
JS
131tar cvf $2/tex2rtf2-${WXVER}.tar -T /tmp/tex2rtf.txt
132gzip $2/tex2rtf2-${WXVER}.tar
33b64e6f
JS
133
134### OGL
8f8edad8
JS
135cat $1/distrib/msw/ogl.rsp > /tmp/ogl_in.txt
136expandlines /tmp/ogl_in.txt /tmp/ogl.txt
d7dcb939
JS
137tar cvf $2/ogl3-${WXVER}.tar -T /tmp/ogl.txt
138gzip $2/ogl3-${WXVER}.tar
33b64e6f 139
75737d05 140### JPEG
8f8edad8
JS
141cat $1/distrib/msw/jpeg.rsp > /tmp/jpeg_in.txt
142expandlines /tmp/jpeg_in.txt /tmp/wxx11.txt
d7dcb939
JS
143tar cvf $2/jpeg-${WXVER}.tar -T /tmp/jpeg.txt
144gzip $2/jpeg-${WXVER}.tar
75737d05 145
f6bcfd97 146### TIFF
8f8edad8
JS
147cat $1/distrib/msw/tiff.rsp > /tmp/tiff_in.txt
148expandlines /tmp/tiff_in.txt /tmp/tiff.txt
d7dcb939
JS
149tar cvf $2/tiff-${WXVER}.tar -T /tmp/tiff.txt
150gzip $2/tiff-${WXVER}.tar
2c7b88e6
JS
151
152# Copy readme and other files
4869c7db
JS
153cp $1/docs/readme.txt $2/readme-${WXVER}.txt
154cp $1/docs/changes.txt $2/changes-${WXVER}.txt
155cp $1/docs/mgl/readme.txt $2/readme_mgl-${WXVER}.txt
156cp $1/docs/mgl/install.txt $2/install_mgl-${WXVER}.txt
157cp $1/docs/x11/readme.txt $2/readme_x11-${WXVER}.txt
158cp $1/docs/x11/readme-nanox.txt $2/readme_nanox-${WXVER}.txt
159cp $1/docs/x11/install.txt $2/install_x11-${WXVER}.txt
160cp $1/docs/motif/readme.txt $2/readme_motif-${WXVER}.txt
161cp $1/docs/motif/install.txt $2/install_motif-${WXVER}.txt
162cp $1/docs/msw/readme.txt $2/readme_msw-${WXVER}.txt
163cp $1/docs/msw/install.txt $2/install_msw-${WXVER}.txt
164cp $1/docs/gtk/readme.txt $2/readme_gtk-${WXVER}.txt
165cp $1/docs/gtk/install.txt $2/install_gtk-${WXVER}.txt
166cp $1/docs/mac/readme.txt $2/readme_mac-${WXVER}.txt
167cp $1/docs/mac/install.txt $2/install_mac-${WXVER}.txt
f6bcfd97 168
33b64e6f 169echo Done!