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