]>
Commit | Line | Data |
---|---|---|
33b64e6f | 1 | #!/bin/sh |
77ffb593 | 2 | # tardist: make up a tar.gz distribution of wxWidgets 2 |
33b64e6f JS |
3 | # Supply a source (e.g. ~/wx2) and destination (e.g. ~/wx2/deliver) |
4 | ||
7a5e6267 | 5 | # We can't use e.g. this: |
77ffb593 | 6 | # ls `cat $SRC/distrib/msw/makefile.rsp` zip -@ -u $DEST/wxWidgets-$VERSION-gen.zip |
7a5e6267 JS |
7 | # because there's not enough space on the command line, plus we need to ignore the |
8 | # blank lines. | |
9 | ||
332b8edb JS |
10 | TAR=tar |
11 | ARCH=`arch` | |
12 | if [ "$ARCH" = "ppc" ]; then | |
13 | TAR=gnutar | |
14 | fi | |
15 | ||
7a5e6267 JS |
16 | expandlines() |
17 | { | |
18 | toexpand=$1 | |
19 | outputfile=$2 | |
20 | ||
21 | rm -f $outputfile | |
22 | touch $outputfile | |
23 | for line in `cat $toexpand` ; do | |
84c9e2f8 | 24 | if [ "$line" != "" ]; then |
7a5e6267 JS |
25 | ls $line >> $outputfile |
26 | fi | |
8f8edad8 JS |
27 | uniq < $outputfile > /tmp/uniqtemp.txt |
28 | mv /tmp/uniqtemp.txt $outputfile | |
7a5e6267 JS |
29 | done |
30 | } | |
31 | ||
2b5f62a0 VZ |
32 | doinit() |
33 | { | |
34 | cd $WXSRC | |
35 | echo Removing backup files... | |
36 | rm *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~ | |
37 | ||
38 | rm -f $WXDEST/wx*-${WXVER}*.tar.gz | |
39 | # Copy setup files | |
40 | cp $WXSRC/include/wx/os2/SETUP0.H $WXSRC/include/wx/os2/setup.h | |
41 | cp $WXSRC/include/wx/msw/setup0.h $WXSRC/include/wx/msw/setup.h | |
42 | cp $WXSRC/include/wx/univ/setup0.h $WXSRC/include/wx/univ/setup.h | |
43 | ||
44 | # Copy readme and other files | |
45 | ||
46 | cp $WXSRC/docs/readme.txt $WXDEST/readme-${WXVER}.txt | |
47 | cp $WXSRC/docs/changes.txt $WXDEST/changes-${WXVER}.txt | |
c4839ccf | 48 | |
2b5f62a0 VZ |
49 | cp $WXSRC/docs/mgl/readme.txt $WXDEST/readme-mgl-${WXVER}.txt |
50 | cp $WXSRC/docs/mgl/install.txt $WXDEST/install-mgl-${WXVER}.txt | |
c4839ccf | 51 | |
2b5f62a0 | 52 | cp $WXSRC/docs/x11/readme.txt $WXDEST/readme-x11-${WXVER}.txt |
c4839ccf | 53 | # cp $WXSRC/docs/x11/readme-nanox.txt $WXDEST/readme-nanox-${WXVER}.txt |
2b5f62a0 | 54 | cp $WXSRC/docs/x11/install.txt $WXDEST/install-x11-${WXVER}.txt |
c4839ccf | 55 | |
2b5f62a0 VZ |
56 | cp $WXSRC/docs/motif/readme.txt $WXDEST/readme-motif-${WXVER}.txt |
57 | cp $WXSRC/docs/motif/install.txt $WXDEST/install-motif-${WXVER}.txt | |
c4839ccf | 58 | |
2b5f62a0 VZ |
59 | cp $WXSRC/docs/msw/readme.txt $WXDEST/readme-msw-${WXVER}.txt |
60 | cp $WXSRC/docs/msw/install.txt $WXDEST/install-msw-${WXVER}.txt | |
c4839ccf | 61 | |
2b5f62a0 VZ |
62 | cp $WXSRC/docs/gtk/readme.txt $WXDEST/readme-gtk-${WXVER}.txt |
63 | cp $WXSRC/docs/gtk/install.txt $WXDEST/install-gtk-${WXVER}.txt | |
c4839ccf | 64 | |
2b5f62a0 VZ |
65 | cp $WXSRC/docs/mac/readme.txt $WXDEST/readme-mac-${WXVER}.txt |
66 | cp $WXSRC/docs/mac/install.txt $WXDEST/install-mac-${WXVER}.txt | |
c4839ccf JS |
67 | |
68 | cp $WXSRC/docs/cocoa/readme.txt $WXDEST/readme-cocoa-${WXVER}.txt | |
69 | cp $WXSRC/docs/cocoa/install.txt $WXDEST/install-cocoa-${WXVER}.txt | |
70 | ||
2b5f62a0 | 71 | cp $WXSRC/docs/os2/install.txt $WXDEST/install-os2-${WXVER}.txt |
2e38557f JS |
72 | |
73 | # Make .mo files | |
74 | cd $WXSRC/locale | |
75 | make allmo | |
2b5f62a0 | 76 | } |
7a5e6267 | 77 | |
2b5f62a0 VZ |
78 | dospinwxgtk() |
79 | { | |
80 | echo Tarring wxGTK... | |
b69f1bd1 | 81 | |
2b5f62a0 | 82 | cd $WXSRC |
1cb14841 | 83 | cat $WXSRC/distrib/msw/generic.rsp $WXSRC/distrib/msw/contrib.rsp $WXSRC/distrib/msw/deprecated.rsp $WXSRC/distrib/msw/stc.rsp $WXSRC/distrib/msw/xml.rsp $WXSRC/distrib/msw/utils.rsp $WXSRC/distrib/msw/ogl.rsp $WXSRC/distrib/msw/tex2rtf.rsp $WXSRC/distrib/msw/gtk.rsp $WXSRC/distrib/msw/makefile.rsp $WXSRC/distrib/msw/tiff.rsp $WXSRC/distrib/msw/jpeg.rsp > /tmp/wxgtk_in.txt |
8f8edad8 | 84 | expandlines /tmp/wxgtk_in.txt /tmp/wxgtk.txt |
2b5f62a0 | 85 | $TAR cf $WXDEST/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt |
332b8edb JS |
86 | |
87 | echo Re-tarring wxGTK in a subdirectory... | |
2b5f62a0 VZ |
88 | cd $WXDEST |
89 | mkdir wxGTK-${WXVER} | |
90 | cd wxGTK-${WXVER} | |
332b8edb | 91 | $TAR xf ../wxGTK-${WXVER}.tar |
5318ee36 JS |
92 | echo Copying readme files... |
93 | cp $WXSRC/docs/gtk/readme.txt README-GTK.txt | |
94 | cp $WXSRC/docs/gtk/install.txt INSTALL-GTK.txt | |
95 | cp $WXSRC/docs/readme.txt README.txt | |
96 | cp $WXSRC/docs/changes.txt CHANGES.txt | |
97 | cp $WXSRC/docs/licence.txt LICENCE.txt | |
98 | cp $WXSRC/docs/lgpl.txt COPYING.LIB | |
332b8edb JS |
99 | cd .. |
100 | rm -f wxGTK-${WXVER}.tar | |
2b5f62a0 VZ |
101 | $TAR cf $WXDEST/wxGTK-${WXVER}.tar wxGTK-${WXVER}/* |
102 | rm -f -r wxGTK-${WXVER} | |
103 | gzip $WXDEST/wxGTK-${WXVER}.tar | |
104 | } | |
105 | ||
106 | dospinwxmotif() | |
107 | { | |
108 | echo Tarring wxMotif... | |
33b64e6f | 109 | |
2b5f62a0 | 110 | cd $WXSRC |
7c9955d1 | 111 | cat $WXSRC/distrib/msw/generic.rsp $WXSRC/distrib/msw/motif.rsp $WXSRC/distrib/msw/contrib.rsp $WXSRC/distrib/msw/deprecated.rsp $WXSRC/distrib/msw/stc.rsp $WXSRC/distrib/msw/xml.rsp $WXSRC/distrib/msw/ogl.rsp $WXSRC/distrib/msw/makefile.rsp $WXSRC/distrib/msw/tiff.rsp $WXSRC/distrib/msw/jpeg.rsp > /tmp/wxmotif_in.txt |
8f8edad8 | 112 | expandlines /tmp/wxmotif_in.txt /tmp/wxmotif.txt |
2b5f62a0 | 113 | $TAR cf $WXDEST/wxMotif-${WXVER}.tar -T /tmp/wxmotif.txt |
332b8edb JS |
114 | |
115 | echo Re-tarring wxMotif in a subdirectory... | |
2b5f62a0 VZ |
116 | cd $WXDEST |
117 | mkdir wxMotif-${WXVER} | |
118 | cd wxMotif-${WXVER} | |
332b8edb | 119 | $TAR xf ../wxMotif-${WXVER}.tar |
5318ee36 JS |
120 | echo Copying readme files... |
121 | cp $WXSRC/docs/motif/readme.txt README-MOTIF.txt | |
122 | cp $WXSRC/docs/motif/install.txt INSTALL-MOTIF.txt | |
123 | cp $WXSRC/docs/readme.txt README.txt | |
124 | cp $WXSRC/docs/changes.txt CHANGES.txt | |
125 | cp $WXSRC/docs/licence.txt LICENCE.txt | |
126 | cp $WXSRC/docs/lgpl.txt COPYING.LIB | |
332b8edb JS |
127 | cd .. |
128 | rm -f wxMotif-${WXVER}.tar | |
2b5f62a0 VZ |
129 | $TAR cf $WXDEST/wxMotif-${WXVER}.tar wxMotif-${WXVER}/* |
130 | rm -f -r wxMotif-${WXVER} | |
131 | gzip $WXDEST/wxMotif-${WXVER}.tar | |
132 | } | |
133 | ||
134 | dospinwxx11() | |
135 | { | |
136 | echo Tarring wxX11... | |
33b64e6f | 137 | |
4869c7db | 138 | ### wxX11: combined wxMotif and wxX11 distributions |
2b5f62a0 | 139 | cd $WXSRC |
1cb14841 | 140 | cat $WXSRC/distrib/msw/generic.rsp $WXSRC/distrib/msw/motif.rsp $WXSRC/distrib/msw/x11.rsp $WXSRC/distrib/msw/univ.rsp $WXSRC/distrib/msw/contrib.rsp $WXSRC/distrib/msw/deprecated.rsp $WXSRC/distrib/msw/stc.rsp $WXSRC/distrib/msw/utils.rsp $WXSRC/distrib/msw/xml.rsp $WXSRC/distrib/msw/ogl.rsp $WXSRC/distrib/msw/makefile.rsp $WXSRC/distrib/msw/tiff.rsp $WXSRC/distrib/msw/jpeg.rsp > /tmp/wxx11_in.txt |
8f8edad8 | 141 | expandlines /tmp/wxx11_in.txt /tmp/wxx11.txt |
2b5f62a0 | 142 | $TAR cf $WXDEST/wxX11-${WXVER}.tar -T /tmp/wxx11.txt |
332b8edb JS |
143 | |
144 | echo Re-tarring wxX11 in a subdirectory... | |
2b5f62a0 VZ |
145 | cd $WXDEST |
146 | mkdir wxX11-${WXVER} | |
147 | cd wxX11-${WXVER} | |
332b8edb | 148 | $TAR xf ../wxX11-${WXVER}.tar |
5318ee36 JS |
149 | echo Copying readme files... |
150 | cp $WXSRC/docs/motif/readme.txt README-MOTIF.txt | |
151 | cp $WXSRC/docs/motif/install.txt INSTALL-MOTIF.txt | |
152 | cp $WXSRC/docs/x11/readme.txt README-X11.txt | |
153 | cp $WXSRC/docs/x11/install.txt INSTALL-X11.txt | |
154 | cp $WXSRC/docs/readme.txt README.txt | |
155 | cp $WXSRC/docs/changes.txt CHANGES.txt | |
156 | cp $WXSRC/docs/licence.txt LICENCE.txt | |
157 | cp $WXSRC/docs/lgpl.txt COPYING.LIB | |
332b8edb JS |
158 | cd .. |
159 | rm -f wxX11-${WXVER}.tar | |
2b5f62a0 VZ |
160 | $TAR cf $WXDEST/wxX11-${WXVER}.tar wxX11-${WXVER}/* |
161 | rm -f -r wxX11-${WXVER} | |
162 | gzip $WXDEST/wxX11-${WXVER}.tar | |
163 | } | |
c2ff68d3 | 164 | |
13bf613e | 165 | ### wxMSW |
2b5f62a0 | 166 | # cd $WXSRC |
7c9955d1 | 167 | # cat $WXSRC/distrib/msw/msw.rsp $WXSRC/distrib/msw/vc.rsp $WXSRC/distrib/msw/bc.rsp $WXSRC/distrib/msw/contrib.rsp $WXSRC/distrib/msw/deprecated.rsp $WXSRC/distrib/msw/xml.rsp $WXSRC/distrib/msw/makefile.rsp $WXSRC/distrib/msw/tiff.rsp $WXSRC/distrib/msw/jpeg.rsp > /tmp/wxmsw_in.txt |
8f8edad8 | 168 | # expandlines /tmp/wxmsw_in.txt /tmp/wxmsw.txt |
2b5f62a0 VZ |
169 | # $TAR cf $WXDEST/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt |
170 | # gzip $WXDEST/wxMSW-${WXVER}.tar | |
13bf613e | 171 | |
2b5f62a0 VZ |
172 | dospinwxmac() |
173 | { | |
174 | echo Tarring wxMac... | |
38be1092 | 175 | ### wxMac |
2b5f62a0 VZ |
176 | cp $WXSRC/include/wx/mac/setup0.h $WXSRC/include/wx/setup.h |
177 | cd $WXSRC | |
c4839ccf | 178 | cat $WXSRC/distrib/msw/mac.rsp $WXSRC/distrib/msw/cocoa.rsp $WXSRC/distrib/msw/generic.rsp $WXSRC/distrib/msw/cw_mac.rsp $WXSRC/distrib/msw/tex2rtf.rsp $WXSRC/distrib/msw/utils.rsp $WXSRC/distrib/msw/ogl.rsp $WXSRC/distrib/msw/stc.rsp $WXSRC/distrib/msw/xml.rsp $WXSRC/distrib/msw/contrib.rsp $WXSRC/distrib/msw/deprecated.rsp $WXSRC/distrib/msw/makefile.rsp $WXSRC/distrib/msw/tiff.rsp $WXSRC/distrib/msw/jpeg.rsp > /tmp/wxmac_in.txt |
8f8edad8 | 179 | expandlines /tmp/wxmac_in.txt /tmp/wxmac.txt |
2b5f62a0 | 180 | $TAR cf $WXDEST/wxMac-${WXVER}.tar -T /tmp/wxmac.txt |
332b8edb | 181 | |
2b5f62a0 | 182 | rm -f $WXSRC/include/wx/setup.h |
c9b3918a | 183 | |
332b8edb | 184 | echo Re-tarring wxMac in a subdirectory... |
2b5f62a0 VZ |
185 | cd $WXDEST |
186 | mkdir wxMac-${WXVER} | |
187 | cd wxMac-${WXVER} | |
52ee2268 JS |
188 | |
189 | # If we have the full set of Mac CW project files, | |
190 | # get them | |
77ffb593 JS |
191 | if [ -f $WXDEST/extra/wxWidgets-${WXVER}-CW-Mac.zip ]; then |
192 | unzip -o $WXDEST/extra/wxWidgets-${WXVER}-CW-Mac.zip | |
52ee2268 | 193 | else |
77ffb593 | 194 | echo "Warning - did not find $WXDEST/deliver/extra/wxWidgets-${WXVER}-CW-Mac.zip" |
52ee2268 JS |
195 | fi |
196 | ||
332b8edb | 197 | $TAR xf ../wxMac-${WXVER}.tar |
94d86127 | 198 | rm -f -r contrib/src/mmedia contrib/samples/mmedia |
5318ee36 JS |
199 | echo Copying readme files... |
200 | cp $WXSRC/docs/mac/readme.txt README-MAC.txt | |
201 | cp $WXSRC/docs/mac/install.txt INSTALL-MAC.txt | |
202 | cp $WXSRC/docs/readme.txt README.txt | |
203 | cp $WXSRC/docs/changes.txt CHANGES.txt | |
204 | cp $WXSRC/docs/licence.txt LICENCE.txt | |
205 | cp $WXSRC/docs/lgpl.txt COPYING.LIB | |
332b8edb JS |
206 | cd .. |
207 | rm -f wxMac-${WXVER}.tar | |
2b5f62a0 VZ |
208 | $TAR cf $WXDEST/wxMac-${WXVER}.tar wxMac-${WXVER}/* |
209 | rm -f -r wxMac-${WXVER} | |
210 | gzip $WXDEST/wxMac-${WXVER}.tar | |
211 | } | |
38be1092 | 212 | |
c5f59043 | 213 | ### wxUniv: universal-specific files |
2b5f62a0 VZ |
214 | #cd $WXSRC |
215 | #cat $WXSRC/distrib/msw/univ.rsp > /tmp/wxuniv_in.txt | |
216 | #expandlines /tmp/wxuniv_in.txt /tmp/wxuniv.txt | |
77ffb593 | 217 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-Univ.tar -T /tmp/wxuniv.txt |
2b5f62a0 VZ |
218 | # |
219 | #echo Re-tarring wxUniversal in a subdirectory... | |
220 | #cd $WXDEST | |
77ffb593 JS |
221 | #mkdir wxWidgets-${WXVER} |
222 | #cd wxWidgets-${WXVER} | |
223 | #$TAR xf ../wxWidgets-${WXVER}-Univ.tar | |
2b5f62a0 | 224 | #cd .. |
77ffb593 JS |
225 | #rm -f wxWidgets-${WXVER}-Univ.tar |
226 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-Univ.tar wxWidgets-${WXVER}/* | |
227 | #rm -f -r wxWidgets-${WXVER} | |
228 | #gzip $WXDEST/wxWidgets-${WXVER}-Univ.tar | |
c5f59043 | 229 | |
2b5f62a0 VZ |
230 | dospinwxall() |
231 | { | |
232 | echo Tarring wxAll... | |
c5f59043 | 233 | |
6b978929 | 234 | ### wxAll: all distributions in one giant archive |
2b5f62a0 | 235 | cd $WXSRC |
c4839ccf | 236 | cat $WXSRC/distrib/msw/generic.rsp $WXSRC/distrib/msw/msw.rsp $WXSRC/distrib/msw/vc.rsp $WXSRC/distrib/msw/cw.rsp $WXSRC/distrib/msw/cw_mac.rsp $WXSRC/distrib/msw/gtk.rsp $WXSRC/distrib/msw/x11.rsp $WXSRC/distrib/msw/motif.rsp $WXSRC/distrib/msw/mac.rsp $WXSRC/distrib/msw/cocoa.rsp $WXSRC/distrib/msw/os2.rsp $WXSRC/distrib/msw/x11.rsp $WXSRC/distrib/msw/univ.rsp $WXSRC/distrib/msw/mgl.rsp $WXSRC/distrib/msw/contrib.rsp $WXSRC/distrib/msw/deprecated.rsp $WXSRC/distrib/msw/utilmake.rsp $WXSRC/distrib/msw/utils.rsp $WXSRC/distrib/msw/mmedia.rsp $WXSRC/distrib/msw/tex2rtf.rsp $WXSRC/distrib/msw/stc.rsp $WXSRC/distrib/msw/xml.rsp $WXSRC/distrib/msw/ogl.rsp $WXSRC/distrib/msw/makefile.rsp $WXSRC/distrib/msw/tiff.rsp $WXSRC/distrib/msw/jpeg.rsp $WXSRC/distrib/msw/docsrc.rsp | uniq > /tmp/wxall_in.txt |
6b978929 | 237 | expandlines /tmp/wxall_in.txt /tmp/wxall.txt |
2b5f62a0 | 238 | $TAR cf $WXDEST/wxAll-${WXVER}.tar -T /tmp/wxall.txt |
6b978929 JS |
239 | |
240 | echo Re-tarring wxAll in a subdirectory... | |
2b5f62a0 | 241 | cd $WXDEST |
77ffb593 | 242 | mkdir wxWidgets-${WXVER} |
56409860 | 243 | |
77ffb593 | 244 | cd wxWidgets-${WXVER} |
52ee2268 | 245 | |
56409860 JS |
246 | # If we have the full set of VC++ project files, |
247 | # get them | |
77ffb593 JS |
248 | if [ -f $WXDEST/extra/wxWidgets-${WXVER}-VC.zip ]; then |
249 | unzip -o $WXDEST/extra/wxWidgets-${WXVER}-VC.zip | |
56409860 | 250 | else |
77ffb593 | 251 | echo "Warning - did not find $WXDEST/deliver/extra/wxWidgets-${WXVER}-VC.zip" |
56409860 JS |
252 | fi |
253 | ||
52ee2268 JS |
254 | # If we have the full set of Mac CW project files, |
255 | # get them | |
77ffb593 JS |
256 | if [ -f $WXDEST/extra/wxWidgets-${WXVER}-CW-Mac.zip ]; then |
257 | unzip -o $WXDEST/extra/wxWidgets-${WXVER}-CW-Mac.zip | |
52ee2268 | 258 | else |
77ffb593 | 259 | echo "Warning - did not find $WXDEST/deliver/extra/wxWidgets-${WXVER}-CW-Mac.zip" |
52ee2268 JS |
260 | fi |
261 | ||
2c00930d | 262 | $TAR xf ../wxAll-${WXVER}.tar |
c721300b JS |
263 | |
264 | # Translate all .dsp and .dsw files to DOS format | |
2b5f62a0 | 265 | unix2dos --unix2dos `cat $WXSRC/distrib/msw/vc.rsp` |
c721300b | 266 | |
5318ee36 JS |
267 | echo Copying readme files... |
268 | cp $WXSRC/docs/readme.txt README.txt | |
269 | cp $WXSRC/docs/changes.txt CHANGES.txt | |
270 | cp $WXSRC/docs/licence.txt LICENCE.txt | |
271 | cp $WXSRC/docs/lgpl.txt COPYING.LIB | |
272 | cp $WXSRC/docs/motif/readme.txt README-MOTIF.txt | |
273 | cp $WXSRC/docs/motif/install.txt INSTALL-MOTIF.txt | |
274 | cp $WXSRC/docs/x11/readme.txt README-X11.txt | |
275 | cp $WXSRC/docs/x11/install.txt INSTALL-X11.txt | |
276 | cp $WXSRC/docs/mac/readme.txt README-MAC.txt | |
277 | cp $WXSRC/docs/mac/install.txt INSTALL-MAC.txt | |
278 | cp $WXSRC/docs/mgl/readme.txt README-MGL.txt | |
279 | cp $WXSRC/docs/mgl/install.txt INSTALL-MGL.txt | |
280 | #cp $WXSRC/docs/os2/readme.txt README-OS2.txt | |
281 | cp $WXSRC/docs/os2/install.txt INSTALL-OS2.txt | |
282 | ||
6b978929 JS |
283 | cd .. |
284 | rm -f wxAll-${WXVER}.tar | |
77ffb593 JS |
285 | $TAR cf $WXDEST/wxAll-${WXVER}.tar wxWidgets-${WXVER}/* |
286 | rm -f -r wxWidgets-${WXVER} | |
2b5f62a0 VZ |
287 | gzip $WXDEST/wxAll-${WXVER}.tar |
288 | } | |
6b978929 | 289 | |
2b5f62a0 VZ |
290 | dospinwxdocs() |
291 | { | |
292 | echo Tarring wxDocs... | |
6b978929 | 293 | |
33b64e6f | 294 | ### Doc sources |
2b5f62a0 VZ |
295 | #cd $WXSRC |
296 | #cat $WXSRC/distrib/msw/docsrc.rsp > /tmp/docsrc_in.txt | |
94d86127 | 297 | #expandlines /tmp/docsrc_in.txt /tmp/docsrc.txt |
77ffb593 | 298 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-doc.tar -T /tmp/docsrc.txt |
94d86127 JS |
299 | # |
300 | #echo Re-tarring docs in a subdirectory... | |
2b5f62a0 | 301 | #cd $WXDEST |
77ffb593 JS |
302 | #mkdir wxWidgets-${WXVER} |
303 | #cd wxWidgets-${WXVER} | |
304 | #$TAR xf ../wxWidgets-${WXVER}-doc.tar | |
94d86127 | 305 | #cd .. |
77ffb593 JS |
306 | #rm -f wxWidgets-${WXVER}-doc.tar |
307 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-doc.tar wxWidgets-${WXVER}/* | |
308 | #rm -f -r wxWidgets-${WXVER} | |
309 | #gzip $WXDEST/wxWidgets-${WXVER}-doc.tar | |
33b64e6f JS |
310 | |
311 | ### HTML docs | |
2b5f62a0 VZ |
312 | cd $WXSRC |
313 | cat $WXSRC/distrib/msw/wx_html.rsp > /tmp/html_in.txt | |
8f8edad8 | 314 | expandlines /tmp/html_in.txt /tmp/html.txt |
77ffb593 | 315 | $TAR cf $WXDEST/wxWidgets-${WXVER}-HTML.tar -T /tmp/html.txt |
332b8edb JS |
316 | |
317 | echo Re-tarring HTML in a subdirectory... | |
2b5f62a0 | 318 | cd $WXDEST |
77ffb593 JS |
319 | mkdir wxWidgets-${WXVER} |
320 | cd wxWidgets-${WXVER} | |
321 | $TAR xf ../wxWidgets-${WXVER}-HTML.tar | |
332b8edb | 322 | cd .. |
77ffb593 JS |
323 | rm -f wxWidgets-${WXVER}-HTML.tar |
324 | $TAR cf $WXDEST/wxWidgets-${WXVER}-HTML.tar wxWidgets-${WXVER}/* | |
325 | rm -f -r wxWidgets-${WXVER} | |
326 | gzip $WXDEST/wxWidgets-${WXVER}-HTML.tar | |
33b64e6f | 327 | |
94d86127 | 328 | ### HTB docs |
2b5f62a0 VZ |
329 | cd $WXSRC |
330 | cat $WXSRC/distrib/msw/wx_htb.rsp > /tmp/htb_in.txt | |
94d86127 | 331 | expandlines /tmp/htb_in.txt /tmp/htb.txt |
77ffb593 | 332 | $TAR cf $WXDEST/wxWidgets-${WXVER}-HTB.tar -T /tmp/htb.txt |
94d86127 JS |
333 | |
334 | echo Re-tarring HTB in a subdirectory... | |
2b5f62a0 | 335 | cd $WXDEST |
77ffb593 JS |
336 | mkdir wxWidgets-${WXVER} |
337 | cd wxWidgets-${WXVER} | |
338 | $TAR xf ../wxWidgets-${WXVER}-HTB.tar | |
94d86127 | 339 | cd .. |
77ffb593 JS |
340 | rm -f wxWidgets-${WXVER}-HTB.tar |
341 | $TAR cf $WXDEST/wxWidgets-${WXVER}-HTB.tar wxWidgets-${WXVER}/* | |
342 | rm -f -r wxWidgets-${WXVER} | |
343 | gzip $WXDEST/wxWidgets-${WXVER}-HTB.tar | |
94d86127 | 344 | |
33b64e6f | 345 | ### PDF docs |
2b5f62a0 VZ |
346 | cd $WXSRC |
347 | cat $WXSRC/distrib/msw/wx_pdf.rsp > /tmp/pdf_in.txt | |
8f8edad8 | 348 | expandlines /tmp/pdf_in.txt /tmp/pdf.txt |
77ffb593 | 349 | $TAR cf $WXDEST/wxWidgets-${WXVER}-PDF.tar -T /tmp/pdf.txt |
332b8edb JS |
350 | |
351 | echo Re-tarring PDF in a subdirectory... | |
2b5f62a0 | 352 | cd $WXDEST |
77ffb593 JS |
353 | mkdir wxWidgets-${WXVER} |
354 | cd wxWidgets-${WXVER} | |
355 | $TAR xf ../wxWidgets-${WXVER}-PDF.tar | |
332b8edb | 356 | cd .. |
77ffb593 JS |
357 | rm -f wxWidgets-${WXVER}-PDF.tar |
358 | $TAR cf $WXDEST/wxWidgets-${WXVER}-PDF.tar wxWidgets-${WXVER}/* | |
359 | rm -f -r wxWidgets-${WXVER} | |
360 | gzip $WXDEST/wxWidgets-${WXVER}-PDF.tar | |
2b5f62a0 | 361 | } |
33b64e6f | 362 | |
33b64e6f | 363 | ### Tex2RTF |
2b5f62a0 VZ |
364 | #cd $WXSRC |
365 | #cat $WXSRC/distrib/msw/tex2rtf.rsp > /tmp/tex2rtf_in.txt | |
94d86127 | 366 | #expandlines /tmp/tex2rtf_in.txt /tmp/tex2rtf.txt |
77ffb593 | 367 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-tex2rtf.tar -T /tmp/tex2rtf.txt |
94d86127 JS |
368 | # |
369 | #echo Re-tarring Tex2RTF in a subdirectory... | |
2b5f62a0 | 370 | #cd $WXDEST |
77ffb593 JS |
371 | #mkdir wxWidgets-${WXVER} |
372 | #cd wxWidgets-${WXVER} | |
373 | #$TAR xf ../wxWidgets-${WXVER}-tex2rtf.tar | |
94d86127 | 374 | #cd .. |
77ffb593 JS |
375 | #rm -f wxWidgets-${WXVER}-tex2rtf.tar |
376 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-tex2rtf.tar wxWidgets-${WXVER}/* | |
377 | #rm -f -r wxWidgets-${WXVER} | |
378 | #gzip $WXDEST/wxWidgets-${WXVER}-tex2rtf.tar | |
33b64e6f JS |
379 | |
380 | ### OGL | |
2b5f62a0 VZ |
381 | #cd $WXSRC |
382 | #cat $WXSRC/distrib/msw/ogl.rsp > /tmp/ogl_in.txt | |
94d86127 | 383 | #expandlines /tmp/ogl_in.txt /tmp/ogl.txt |
77ffb593 | 384 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-ogl.tar -T /tmp/ogl.txt |
94d86127 JS |
385 | # |
386 | #echo Re-tarring OGL in a subdirectory... | |
2b5f62a0 | 387 | #cd $WXDEST |
77ffb593 JS |
388 | #mkdir wxWidgets-${WXVER} |
389 | #cd wxWidgets-${WXVER} | |
390 | #$TAR xf ../wxWidgets-${WXVER}-ogl.tar | |
94d86127 | 391 | #cd .. |
77ffb593 JS |
392 | #rm -f wxWidgets-${WXVER}-ogl.tar |
393 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-ogl.tar wxWidgets-${WXVER}/* | |
394 | #rm -f -r wxWidgets-${WXVER} | |
395 | #gzip $WXDEST/wxWidgets-${WXVER}-ogl.tar | |
33b64e6f | 396 | |
75737d05 | 397 | ### JPEG |
2b5f62a0 VZ |
398 | #cd $WXSRC |
399 | #cat $WXSRC/distrib/msw/jpeg.rsp > /tmp/jpeg_in.txt | |
94d86127 | 400 | #expandlines /tmp/jpeg_in.txt /tmp/jpeg.txt |
77ffb593 | 401 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-jpeg.tar -T /tmp/jpeg.txt |
94d86127 JS |
402 | # |
403 | #echo Re-tarring jpeg in a subdirectory... | |
2b5f62a0 | 404 | #cd $WXDEST |
77ffb593 JS |
405 | #mkdir wxWidgets-${WXVER} |
406 | #cd wxWidgets-${WXVER} | |
407 | #$TAR xf ../wxWidgets-${WXVER}-jpeg.tar | |
94d86127 | 408 | #cd .. |
77ffb593 JS |
409 | #rm -f wxWidgets-${WXVER}-jpeg.tar |
410 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-jpeg.tar wxWidgets-${WXVER}/* | |
411 | #rm -f -r wxWidgets-${WXVER} | |
412 | #gzip $WXDEST/wxWidgets-${WXVER}-jpeg.tar | |
75737d05 | 413 | |
f6bcfd97 | 414 | ### TIFF |
2b5f62a0 VZ |
415 | #cd $WXSRC |
416 | #cat $WXSRC/distrib/msw/tiff.rsp > /tmp/tiff_in.txt | |
94d86127 | 417 | #expandlines /tmp/tiff_in.txt /tmp/tiff.txt |
77ffb593 | 418 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-tiff.tar -T /tmp/tiff.txt |
94d86127 JS |
419 | # |
420 | #echo Re-tarring docs in a subdirectory... | |
2b5f62a0 | 421 | #cd $WXDEST |
77ffb593 JS |
422 | #mkdir wxWidgets-${WXVER} |
423 | #cd wxWidgets-${WXVER} | |
424 | #$TAR xf ../wxWidgets-${WXVER}-tiff.tar | |
94d86127 | 425 | #cd .. |
77ffb593 JS |
426 | #rm -f wxWidgets-${WXVER}-tiff.tar |
427 | #$TAR cf $WXDEST/wxWidgets-${WXVER}-tiff.tar wxWidgets-${WXVER}/* | |
428 | #rm -f -r wxWidgets-${WXVER} | |
429 | #gzip $WXDEST/wxWidgets-${WXVER}-tiff.tar | |
2b5f62a0 VZ |
430 | |
431 | init="" | |
432 | if [ "$1" = "" ] | |
433 | then | |
434 | echo Usage: tardist wx-dir output-dir version | |
435 | exit | |
436 | fi | |
437 | ||
438 | if [ "$2" = "" ] | |
439 | then | |
440 | echo Usage: tardist wx-dir output-dir version | |
441 | exit | |
442 | fi | |
443 | ||
444 | if [ "$3" = "" ] | |
445 | then | |
446 | echo Usage: tardist wx-dir output-dir version | |
447 | exit | |
448 | fi | |
449 | ||
450 | PROGNAME=$0 | |
451 | WXSRC=$1 | |
452 | WXDEST=$2 | |
453 | WXVER=$3 | |
454 | ||
455 | SPINWXALL=0 | |
456 | SPINWXX11=0 | |
457 | SPINWXGTK=0 | |
458 | SPINWXMOTIF=0 | |
459 | SPINWXMAC=0 | |
460 | SPINWXDOCS=0 | |
461 | SPINEVERYTHING=0 | |
462 | ||
463 | usage() | |
464 | { | |
465 | echo Usage: $PROGNAME "src-dir dest-dir version-number [ options ]" | |
466 | echo Options: | |
467 | echo " --help Display this help message" | |
468 | echo " --wxall Spin wxAll" | |
469 | echo " --wxgtk Spin wxGTK" | |
470 | echo " --wxmotif Spin wxMotif" | |
471 | echo " --wxmac Spin wxMac" | |
472 | echo " --wxx11 Spin wxX11" | |
473 | echo " --wxdocs Spin docs" | |
474 | echo " --all Spin EVERYTHING" | |
475 | ||
476 | exit 1 | |
477 | } | |
478 | ||
479 | # Process command line options. | |
480 | shift 3 | |
481 | for i in "$@"; do | |
482 | case "$i" in | |
483 | --wxall) SPINWXALL=1 ;; | |
484 | --wxx11) SPINWXX11=1 ;; | |
485 | --wxgtk) SPINWXGTK=1 ;; | |
486 | --wxmotif) SPINWXMOTIF=1 ;; | |
487 | --wxmac) SPINWXMAC=1 ;; | |
488 | --wxdocs) SPINWXDOCS=1 ;; | |
489 | --all) SPINEVERYTHING=1 ;; | |
490 | *) | |
491 | usage | |
492 | exit | |
493 | ;; | |
494 | esac | |
495 | done | |
496 | ||
77ffb593 | 497 | echo About to archive wxWidgets: |
2b5f62a0 VZ |
498 | echo From $WXSRC |
499 | echo To $WXDEST | |
500 | echo Version $WXVER | |
501 | echo CTRL-C if this is not correct. | |
502 | read dummy | |
503 | ||
504 | doinit | |
505 | ||
506 | if [ "$SPINWXX11" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then | |
507 | dospinwxx11 | |
508 | fi | |
509 | ||
510 | if [ "$SPINWXGTK" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then | |
511 | dospinwxgtk | |
512 | fi | |
513 | ||
514 | if [ "$SPINWXMAC" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then | |
515 | dospinwxmac | |
516 | fi | |
517 | ||
518 | if [ "$SPINWXMOTIF" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then | |
519 | dospinwxmotif | |
520 | fi | |
521 | ||
522 | if [ "$SPINWXDOCS" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then | |
523 | dospinwxdocs | |
524 | fi | |
525 | ||
526 | if [ "$SPINWXALL" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then | |
527 | dospinwxall | |
528 | fi | |
529 |