]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tardist
Moved wxToolBarSimple to deprecated library
[wxWidgets.git] / distrib / msw / tardist
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
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
10 TAR=tar
11 ARCH=`arch`
12 if [ "$ARCH" = "ppc" ]; then
13 TAR=gnutar
14 fi
15
16 expandlines()
17 {
18 toexpand=$1
19 outputfile=$2
20
21 rm -f $outputfile
22 touch $outputfile
23 for line in `cat $toexpand` ; do
24 if [ "$line" != "" ]; then
25 ls $line >> $outputfile
26 fi
27 uniq < $outputfile > /tmp/uniqtemp.txt
28 mv /tmp/uniqtemp.txt $outputfile
29 done
30 }
31
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
48 cp $WXSRC/docs/mgl/readme.txt $WXDEST/readme-mgl-${WXVER}.txt
49 cp $WXSRC/docs/mgl/install.txt $WXDEST/install-mgl-${WXVER}.txt
50 cp $WXSRC/docs/x11/readme.txt $WXDEST/readme-x11-${WXVER}.txt
51 cp $WXSRC/docs/x11/readme-nanox.txt $WXDEST/readme-nanox-${WXVER}.txt
52 cp $WXSRC/docs/x11/install.txt $WXDEST/install-x11-${WXVER}.txt
53 cp $WXSRC/docs/motif/readme.txt $WXDEST/readme-motif-${WXVER}.txt
54 cp $WXSRC/docs/motif/install.txt $WXDEST/install-motif-${WXVER}.txt
55 cp $WXSRC/docs/msw/readme.txt $WXDEST/readme-msw-${WXVER}.txt
56 cp $WXSRC/docs/msw/install.txt $WXDEST/install-msw-${WXVER}.txt
57 cp $WXSRC/docs/gtk/readme.txt $WXDEST/readme-gtk-${WXVER}.txt
58 cp $WXSRC/docs/gtk/install.txt $WXDEST/install-gtk-${WXVER}.txt
59 cp $WXSRC/docs/mac/readme.txt $WXDEST/readme-mac-${WXVER}.txt
60 cp $WXSRC/docs/mac/install.txt $WXDEST/install-mac-${WXVER}.txt
61 cp $WXSRC/docs/os2/install.txt $WXDEST/install-os2-${WXVER}.txt
62
63 # Make .mo files
64 cd $WXSRC/locale
65 make allmo
66 }
67
68 dospinwxgtk()
69 {
70 echo Tarring wxGTK...
71
72 cd $WXSRC
73 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/dialoged.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
74 expandlines /tmp/wxgtk_in.txt /tmp/wxgtk.txt
75 $TAR cf $WXDEST/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt
76
77 echo Re-tarring wxGTK in a subdirectory...
78 cd $WXDEST
79 mkdir wxGTK-${WXVER}
80 cd wxGTK-${WXVER}
81 $TAR xf ../wxGTK-${WXVER}.tar
82 cd ..
83 rm -f wxGTK-${WXVER}.tar
84 $TAR cf $WXDEST/wxGTK-${WXVER}.tar wxGTK-${WXVER}/*
85 rm -f -r wxGTK-${WXVER}
86 gzip $WXDEST/wxGTK-${WXVER}.tar
87 }
88
89 dospinwxmotif()
90 {
91 echo Tarring wxMotif...
92
93 cd $WXSRC
94 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
95 expandlines /tmp/wxmotif_in.txt /tmp/wxmotif.txt
96 $TAR cf $WXDEST/wxMotif-${WXVER}.tar -T /tmp/wxmotif.txt
97
98 echo Re-tarring wxMotif in a subdirectory...
99 cd $WXDEST
100 mkdir wxMotif-${WXVER}
101 cd wxMotif-${WXVER}
102 $TAR xf ../wxMotif-${WXVER}.tar
103 cd ..
104 rm -f wxMotif-${WXVER}.tar
105 $TAR cf $WXDEST/wxMotif-${WXVER}.tar wxMotif-${WXVER}/*
106 rm -f -r wxMotif-${WXVER}
107 gzip $WXDEST/wxMotif-${WXVER}.tar
108 }
109
110 dospinwxx11()
111 {
112 echo Tarring wxX11...
113
114 ### wxX11: combined wxMotif and wxX11 distributions
115 cd $WXSRC
116 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/dialoged.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
117 expandlines /tmp/wxx11_in.txt /tmp/wxx11.txt
118 $TAR cf $WXDEST/wxX11-${WXVER}.tar -T /tmp/wxx11.txt
119
120 echo Re-tarring wxX11 in a subdirectory...
121 cd $WXDEST
122 mkdir wxX11-${WXVER}
123 cd wxX11-${WXVER}
124 $TAR xf ../wxX11-${WXVER}.tar
125 cd ..
126 rm -f wxX11-${WXVER}.tar
127 $TAR cf $WXDEST/wxX11-${WXVER}.tar wxX11-${WXVER}/*
128 rm -f -r wxX11-${WXVER}
129 gzip $WXDEST/wxX11-${WXVER}.tar
130 }
131
132 ### wxMSW
133 # cd $WXSRC
134 # 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
135 # expandlines /tmp/wxmsw_in.txt /tmp/wxmsw.txt
136 # $TAR cf $WXDEST/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt
137 # gzip $WXDEST/wxMSW-${WXVER}.tar
138
139 dospinwxmac()
140 {
141 echo Tarring wxMac...
142 ### wxMac
143 cp $WXSRC/include/wx/mac/setup0.h $WXSRC/include/wx/setup.h
144 cd $WXSRC
145 cat $WXSRC/distrib/msw/mac.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/dialoged.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
146 expandlines /tmp/wxmac_in.txt /tmp/wxmac.txt
147 $TAR cf $WXDEST/wxMac-${WXVER}.tar -T /tmp/wxmac.txt
148
149 rm -f $WXSRC/include/wx/setup.h
150
151 echo Re-tarring wxMac in a subdirectory...
152 cd $WXDEST
153 mkdir wxMac-${WXVER}
154 cd wxMac-${WXVER}
155
156 # If we have the full set of Mac CW project files,
157 # get them
158 if [ -f $WXDEST/extra/wxWindows-${WXVER}-CW-Mac.zip ]; then
159 unzip -o $WXDEST/extra/wxWindows-${WXVER}-CW-Mac.zip
160 else
161 echo "Warning - did not find $WXDEST/deliver/extra/wxWindows-${WXVER}-CW-Mac.zip"
162 fi
163
164 $TAR xf ../wxMac-${WXVER}.tar
165 rm -f -r contrib/src/mmedia contrib/samples/mmedia
166 cd ..
167 rm -f wxMac-${WXVER}.tar
168 $TAR cf $WXDEST/wxMac-${WXVER}.tar wxMac-${WXVER}/*
169 rm -f -r wxMac-${WXVER}
170 gzip $WXDEST/wxMac-${WXVER}.tar
171 }
172
173 ### wxUniv: universal-specific files
174 #cd $WXSRC
175 #cat $WXSRC/distrib/msw/univ.rsp > /tmp/wxuniv_in.txt
176 #expandlines /tmp/wxuniv_in.txt /tmp/wxuniv.txt
177 #$TAR cf $WXDEST/wxWindows-${WXVER}-Univ.tar -T /tmp/wxuniv.txt
178 #
179 #echo Re-tarring wxUniversal in a subdirectory...
180 #cd $WXDEST
181 #mkdir wxWindows-${WXVER}
182 #cd wxWindows-${WXVER}
183 #$TAR xf ../wxWindows-${WXVER}-Univ.tar
184 #cd ..
185 #rm -f wxWindows-${WXVER}-Univ.tar
186 #$TAR cf $WXDEST/wxWindows-${WXVER}-Univ.tar wxWindows-${WXVER}/*
187 #rm -f -r wxWindows-${WXVER}
188 #gzip $WXDEST/wxWindows-${WXVER}-Univ.tar
189
190 dospinwxall()
191 {
192 echo Tarring wxAll...
193
194 ### wxAll: all distributions in one giant archive
195 cd $WXSRC
196 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/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/dialoged.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
197 expandlines /tmp/wxall_in.txt /tmp/wxall.txt
198 $TAR cf $WXDEST/wxAll-${WXVER}.tar -T /tmp/wxall.txt
199
200 echo Re-tarring wxAll in a subdirectory...
201 cd $WXDEST
202 mkdir wxWindows-${WXVER}
203
204 cd wxWindows-${WXVER}
205
206 # If we have the full set of VC++ project files,
207 # get them
208 if [ -f $WXDEST/extra/wxWindows-${WXVER}-VC.zip ]; then
209 unzip -o $WXDEST/extra/wxWindows-${WXVER}-VC.zip
210 else
211 echo "Warning - did not find $WXDEST/deliver/extra/wxWindows-${WXVER}-VC.zip"
212 fi
213
214 # If we have the full set of Mac CW project files,
215 # get them
216 if [ -f $WXDEST/extra/wxWindows-${WXVER}-CW-Mac.zip ]; then
217 unzip -o $WXDEST/extra/wxWindows-${WXVER}-CW-Mac.zip
218 else
219 echo "Warning - did not find $WXDEST/deliver/extra/wxWindows-${WXVER}-CW-Mac.zip"
220 fi
221
222 $TAR xf ../wxAll-${WXVER}.tar
223
224 # Translate all .dsp and .dsw files to DOS format
225 unix2dos --unix2dos `cat $WXSRC/distrib/msw/vc.rsp`
226
227 # Copy OS/2 specific configure files
228 # (no longer)
229 # cp $WXSRC/distrib/os2/os2-specific.zip docs/os2
230
231 # Copy the OS/2 files which probably haven't been copied yet
232 mkdir include/wx/os2
233 mkdir src/os2
234 cp $WXSRC/include/wx/os2/*.H include/wx/os2
235 cp $WXSRC/src/os2/*.CPP $WXSRC/src/os2/*.I src/os2
236
237 # Make all OS/2 files lower case
238 $WXSRC/distrib/msw/namedown include/wx/os2/*.H
239 $WXSRC/distrib/msw/namedown src/os2/*.CPP src/os2/*.I
240
241 cd ..
242 rm -f wxAll-${WXVER}.tar
243 $TAR cf $WXDEST/wxAll-${WXVER}.tar wxWindows-${WXVER}/*
244 rm -f -r wxWindows-${WXVER}
245 gzip $WXDEST/wxAll-${WXVER}.tar
246 }
247
248 dospinwxdocs()
249 {
250 echo Tarring wxDocs...
251
252 ### Doc sources
253 #cd $WXSRC
254 #cat $WXSRC/distrib/msw/docsrc.rsp > /tmp/docsrc_in.txt
255 #expandlines /tmp/docsrc_in.txt /tmp/docsrc.txt
256 #$TAR cf $WXDEST/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt
257 #
258 #echo Re-tarring docs in a subdirectory...
259 #cd $WXDEST
260 #mkdir wxWindows-${WXVER}
261 #cd wxWindows-${WXVER}
262 #$TAR xf ../wxWindows-${WXVER}-doc.tar
263 #cd ..
264 #rm -f wxWindows-${WXVER}-doc.tar
265 #$TAR cf $WXDEST/wxWindows-${WXVER}-doc.tar wxWindows-${WXVER}/*
266 #rm -f -r wxWindows-${WXVER}
267 #gzip $WXDEST/wxWindows-${WXVER}-doc.tar
268
269 ### HTML docs
270 cd $WXSRC
271 cat $WXSRC/distrib/msw/wx_html.rsp > /tmp/html_in.txt
272 expandlines /tmp/html_in.txt /tmp/html.txt
273 $TAR cf $WXDEST/wxWindows-${WXVER}-HTML.tar -T /tmp/html.txt
274
275 echo Re-tarring HTML in a subdirectory...
276 cd $WXDEST
277 mkdir wxWindows-${WXVER}
278 cd wxWindows-${WXVER}
279 $TAR xf ../wxWindows-${WXVER}-HTML.tar
280 cd ..
281 rm -f wxWindows-${WXVER}-HTML.tar
282 $TAR cf $WXDEST/wxWindows-${WXVER}-HTML.tar wxWindows-${WXVER}/*
283 rm -f -r wxWindows-${WXVER}
284 gzip $WXDEST/wxWindows-${WXVER}-HTML.tar
285
286 ### HTB docs
287 cd $WXSRC
288 cat $WXSRC/distrib/msw/wx_htb.rsp > /tmp/htb_in.txt
289 expandlines /tmp/htb_in.txt /tmp/htb.txt
290 $TAR cf $WXDEST/wxWindows-${WXVER}-HTB.tar -T /tmp/htb.txt
291
292 echo Re-tarring HTB in a subdirectory...
293 cd $WXDEST
294 mkdir wxWindows-${WXVER}
295 cd wxWindows-${WXVER}
296 $TAR xf ../wxWindows-${WXVER}-HTB.tar
297 cd ..
298 rm -f wxWindows-${WXVER}-HTB.tar
299 $TAR cf $WXDEST/wxWindows-${WXVER}-HTB.tar wxWindows-${WXVER}/*
300 rm -f -r wxWindows-${WXVER}
301 gzip $WXDEST/wxWindows-${WXVER}-HTB.tar
302
303 ### PDF docs
304 cd $WXSRC
305 cat $WXSRC/distrib/msw/wx_pdf.rsp > /tmp/pdf_in.txt
306 expandlines /tmp/pdf_in.txt /tmp/pdf.txt
307 $TAR cf $WXDEST/wxWindows-${WXVER}-PDF.tar -T /tmp/pdf.txt
308
309 echo Re-tarring PDF in a subdirectory...
310 cd $WXDEST
311 mkdir wxWindows-${WXVER}
312 cd wxWindows-${WXVER}
313 $TAR xf ../wxWindows-${WXVER}-PDF.tar
314 cd ..
315 rm -f wxWindows-${WXVER}-PDF.tar
316 $TAR cf $WXDEST/wxWindows-${WXVER}-PDF.tar wxWindows-${WXVER}/*
317 rm -f -r wxWindows-${WXVER}
318 gzip $WXDEST/wxWindows-${WXVER}-PDF.tar
319 }
320
321 ### Tex2RTF
322 #cd $WXSRC
323 #cat $WXSRC/distrib/msw/tex2rtf.rsp > /tmp/tex2rtf_in.txt
324 #expandlines /tmp/tex2rtf_in.txt /tmp/tex2rtf.txt
325 #$TAR cf $WXDEST/wxWindows-${WXVER}-tex2rtf.tar -T /tmp/tex2rtf.txt
326 #
327 #echo Re-tarring Tex2RTF in a subdirectory...
328 #cd $WXDEST
329 #mkdir wxWindows-${WXVER}
330 #cd wxWindows-${WXVER}
331 #$TAR xf ../wxWindows-${WXVER}-tex2rtf.tar
332 #cd ..
333 #rm -f wxWindows-${WXVER}-tex2rtf.tar
334 #$TAR cf $WXDEST/wxWindows-${WXVER}-tex2rtf.tar wxWindows-${WXVER}/*
335 #rm -f -r wxWindows-${WXVER}
336 #gzip $WXDEST/wxWindows-${WXVER}-tex2rtf.tar
337
338 ### OGL
339 #cd $WXSRC
340 #cat $WXSRC/distrib/msw/ogl.rsp > /tmp/ogl_in.txt
341 #expandlines /tmp/ogl_in.txt /tmp/ogl.txt
342 #$TAR cf $WXDEST/wxWindows-${WXVER}-ogl.tar -T /tmp/ogl.txt
343 #
344 #echo Re-tarring OGL in a subdirectory...
345 #cd $WXDEST
346 #mkdir wxWindows-${WXVER}
347 #cd wxWindows-${WXVER}
348 #$TAR xf ../wxWindows-${WXVER}-ogl.tar
349 #cd ..
350 #rm -f wxWindows-${WXVER}-ogl.tar
351 #$TAR cf $WXDEST/wxWindows-${WXVER}-ogl.tar wxWindows-${WXVER}/*
352 #rm -f -r wxWindows-${WXVER}
353 #gzip $WXDEST/wxWindows-${WXVER}-ogl.tar
354
355 ### JPEG
356 #cd $WXSRC
357 #cat $WXSRC/distrib/msw/jpeg.rsp > /tmp/jpeg_in.txt
358 #expandlines /tmp/jpeg_in.txt /tmp/jpeg.txt
359 #$TAR cf $WXDEST/wxWindows-${WXVER}-jpeg.tar -T /tmp/jpeg.txt
360 #
361 #echo Re-tarring jpeg in a subdirectory...
362 #cd $WXDEST
363 #mkdir wxWindows-${WXVER}
364 #cd wxWindows-${WXVER}
365 #$TAR xf ../wxWindows-${WXVER}-jpeg.tar
366 #cd ..
367 #rm -f wxWindows-${WXVER}-jpeg.tar
368 #$TAR cf $WXDEST/wxWindows-${WXVER}-jpeg.tar wxWindows-${WXVER}/*
369 #rm -f -r wxWindows-${WXVER}
370 #gzip $WXDEST/wxWindows-${WXVER}-jpeg.tar
371
372 ### TIFF
373 #cd $WXSRC
374 #cat $WXSRC/distrib/msw/tiff.rsp > /tmp/tiff_in.txt
375 #expandlines /tmp/tiff_in.txt /tmp/tiff.txt
376 #$TAR cf $WXDEST/wxWindows-${WXVER}-tiff.tar -T /tmp/tiff.txt
377 #
378 #echo Re-tarring docs in a subdirectory...
379 #cd $WXDEST
380 #mkdir wxWindows-${WXVER}
381 #cd wxWindows-${WXVER}
382 #$TAR xf ../wxWindows-${WXVER}-tiff.tar
383 #cd ..
384 #rm -f wxWindows-${WXVER}-tiff.tar
385 #$TAR cf $WXDEST/wxWindows-${WXVER}-tiff.tar wxWindows-${WXVER}/*
386 #rm -f -r wxWindows-${WXVER}
387 #gzip $WXDEST/wxWindows-${WXVER}-tiff.tar
388
389 init=""
390 if [ "$1" = "" ]
391 then
392 echo Usage: tardist wx-dir output-dir version
393 exit
394 fi
395
396 if [ "$2" = "" ]
397 then
398 echo Usage: tardist wx-dir output-dir version
399 exit
400 fi
401
402 if [ "$3" = "" ]
403 then
404 echo Usage: tardist wx-dir output-dir version
405 exit
406 fi
407
408 PROGNAME=$0
409 WXSRC=$1
410 WXDEST=$2
411 WXVER=$3
412
413 SPINWXALL=0
414 SPINWXX11=0
415 SPINWXGTK=0
416 SPINWXMOTIF=0
417 SPINWXMAC=0
418 SPINWXDOCS=0
419 SPINEVERYTHING=0
420
421 usage()
422 {
423 echo Usage: $PROGNAME "src-dir dest-dir version-number [ options ]"
424 echo Options:
425 echo " --help Display this help message"
426 echo " --wxall Spin wxAll"
427 echo " --wxgtk Spin wxGTK"
428 echo " --wxmotif Spin wxMotif"
429 echo " --wxmac Spin wxMac"
430 echo " --wxx11 Spin wxX11"
431 echo " --wxdocs Spin docs"
432 echo " --all Spin EVERYTHING"
433
434 exit 1
435 }
436
437 # Process command line options.
438 shift 3
439 for i in "$@"; do
440 case "$i" in
441 --wxall) SPINWXALL=1 ;;
442 --wxx11) SPINWXX11=1 ;;
443 --wxgtk) SPINWXGTK=1 ;;
444 --wxmotif) SPINWXMOTIF=1 ;;
445 --wxmac) SPINWXMAC=1 ;;
446 --wxdocs) SPINWXDOCS=1 ;;
447 --all) SPINEVERYTHING=1 ;;
448 *)
449 usage
450 exit
451 ;;
452 esac
453 done
454
455 echo About to archive wxWindows:
456 echo From $WXSRC
457 echo To $WXDEST
458 echo Version $WXVER
459 echo CTRL-C if this is not correct.
460 read dummy
461
462 doinit
463
464 if [ "$SPINWXX11" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
465 dospinwxx11
466 fi
467
468 if [ "$SPINWXGTK" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
469 dospinwxgtk
470 fi
471
472 if [ "$SPINWXMAC" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
473 dospinwxmac
474 fi
475
476 if [ "$SPINWXMOTIF" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
477 dospinwxmotif
478 fi
479
480 if [ "$SPINWXDOCS" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
481 dospinwxdocs
482 fi
483
484 if [ "$SPINWXALL" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
485 dospinwxall
486 fi
487