]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tardist
Small updates
[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
33 init=""
34 if [ "$1" = "" ]
35 then
36 echo Usage: tardist wx-dir output-dir version
37 exit
38 fi
39
40 if [ "$2" = "" ]
41 then
42 echo Usage: tardist wx-dir output-dir version
43 exit
44 fi
45
46 if [ "$3" = "" ]
47 then
48 echo Usage: tardist wx-dir output-dir version
49 exit
50 fi
51
52 WXVER=$3
53
54 echo About to archive wxWindows:
55 echo From $1
56 echo To $2
57 echo CTRL-C if this is not correct.
58 read dummy
59
60 cd $1
61
62 echo Removing backup files...
63 rm *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~
64
65 rm -f $2/wx*-${WXVER}*.tar.gz
66
67 # Copy setup files
68 cp $1/include/wx/os2/SETUP0.H $1/include/wx/os2/setup.h
69 cp $1/include/wx/msw/setup0.h $1/include/wx/msw/setup.h
70
71 echo Tarring...
72
73 ### Generic
74 #cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp > /tmp/wxgen_in.txt
75 #expandlines /tmp/wxgen_in.txt /tmp/wxgen.txt
76 #$TAR cf $2/wxWindows-${WXVER}-gen.tar -T /tmp/wxgen.txt
77 #gzip $2/wxWindows-${WXVER}-gen.tar
78 #mv $2/wxWindows-${WXVER}-gen.tar.gz $2/wxWindows-${WXVER}-gen.tgz
79
80 ### wxGTK
81 cd $1
82 cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/dialoged.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
83 expandlines /tmp/wxgtk_in.txt /tmp/wxgtk.txt
84 $TAR cf $2/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt
85
86 echo Re-tarring wxGTK in a subdirectory...
87 cd $2
88 mkdir wxWindows-${WXVER}
89 cd wxWindows-${WXVER}
90 $TAR xf ../wxGTK-${WXVER}.tar
91 cd ..
92 rm -f wxGTK-${WXVER}.tar
93 $TAR cf $2/wxGTK-${WXVER}.tar wxWindows-${WXVER}/*
94 rm -f -r wxWindows-${WXVER}
95 gzip $2/wxGTK-${WXVER}.tar
96
97 ### wxMotif
98 cd $1
99 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_in.txt
100 expandlines /tmp/wxmotif_in.txt /tmp/wxmotif.txt
101 $TAR cf $2/wxMotif-${WXVER}.tar -T /tmp/wxmotif.txt
102
103 echo Re-tarring wxMotif in a subdirectory...
104 cd $2
105 mkdir wxWindows-${WXVER}
106 cd wxWindows-${WXVER}
107 $TAR xf ../wxMotif-${WXVER}.tar
108 cd ..
109 rm -f wxMotif-${WXVER}.tar
110 $TAR cf $2/wxMotif-${WXVER}.tar wxWindows-${WXVER}/*
111 rm -f -r wxWindows-${WXVER}
112 gzip $2/wxMotif-${WXVER}.tar
113
114 ### wxX11: combined wxMotif and wxX11 distributions
115 cd $1
116 cat $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
117 expandlines /tmp/wxx11_in.txt /tmp/wxx11.txt
118 $TAR cf $2/wxX11-${WXVER}.tar -T /tmp/wxx11.txt
119
120 echo Re-tarring wxX11 in a subdirectory...
121 cd $2
122 mkdir wxWindows-${WXVER}
123 cd wxWindows-${WXVER}
124 $TAR xf ../wxX11-${WXVER}.tar
125 cd ..
126 rm -f wxX11-${WXVER}.tar
127 $TAR cf $2/wxX11-${WXVER}.tar wxWindows-${WXVER}/*
128 rm -f -r wxWindows-${WXVER}
129 gzip $2/wxX11-${WXVER}.tar
130
131 ### wxMSW
132 # cd $1
133 # 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
134 # expandlines /tmp/wxmsw_in.txt /tmp/wxmsw.txt
135 # $TAR cf $2/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt
136 # gzip $2/wxMSW-${WXVER}.tar
137
138 ### wxMac
139 cp $1/include/wx/mac/setup0.h $1/include/wx/setup.h
140 cd $1
141 cat $1/distrib/msw/mac.rsp $1/distrib/msw/generic.rsp $1/distrib/msw/cw_mac.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/dialoged.rsp $1/distrib/msw/ogl.rsp $1/distrib/msw/stc.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
142 expandlines /tmp/wxmac_in.txt /tmp/wxmac.txt
143 $TAR cf $2/wxMac-${WXVER}.tar -T /tmp/wxmac.txt
144
145 rm -f $1/include/wx/setup.h
146
147 echo Re-tarring wxMac in a subdirectory...
148 cd $2
149 mkdir wxWindows-${WXVER}
150 cd wxWindows-${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 $2/wxMac-${WXVER}.tar wxWindows-${WXVER}/*
156 rm -f -r wxWindows-${WXVER}
157 gzip $2/wxMac-${WXVER}.tar
158
159 ### wxUniv: universal-specific files
160 cd $1
161 cat $1/distrib/msw/univ.rsp > /tmp/wxuniv_in.txt
162 expandlines /tmp/wxuniv_in.txt /tmp/wxuniv.txt
163 $TAR cf $2/wxWindows-${WXVER}-Univ.tar -T /tmp/wxuniv.txt
164
165 echo Re-tarring wxUniversal in a subdirectory...
166 cd $2
167 mkdir wxWindows-${WXVER}
168 cd wxWindows-${WXVER}
169 $TAR xf ../wxWindows-${WXVER}-Univ.tar
170 cd ..
171 rm -f wxWindows-${WXVER}-Univ.tar
172 $TAR cf $2/wxWindows-${WXVER}-Univ.tar wxWindows-${WXVER}/*
173 rm -f -r wxWindows-${WXVER}
174 gzip $2/wxWindows-${WXVER}-Univ.tar
175
176 ### wxAll: all distributions in one giant archive
177 cd $1
178 cat $1/distrib/msw/generic.rsp $1/distrib/msw/msw.rsp $1/distrib/msw/vc.rsp $1/distrib/msw/cw.rsp $1/distrib/msw/cw_mac.rsp $1/distrib/msw/gtk.rsp $1/distrib/msw/x11.rsp $1/distrib/msw/motif.rsp $1/distrib/msw/mac.rsp $1/distrib/msw/os2.rsp $1/distrib/msw/x11.rsp $1/distrib/msw/univ.rsp $1/distrib/msw/mgl.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/utilmake.rsp $1/distrib/msw/utils.rsp $1/distrib/msw/mmedia.rsp $1/distrib/msw/tex2rtf.rsp $1/distrib/msw/stc.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 $1/distrib/msw/docsrc.rsp | uniq > /tmp/wxall_in.txt
179 expandlines /tmp/wxall_in.txt /tmp/wxall.txt
180 $TAR cf $2/wxAll-${WXVER}.tar -T /tmp/wxall.txt
181
182 echo Re-tarring wxAll in a subdirectory...
183 cd $2
184 mkdir wxWindows-${WXVER}
185
186 # If we have the full set of VC++ project files,
187 # get them
188 if [ -f $2/extra/wxWindows-${WXVER}-VC.zip ]; then
189 unzip -o $2/extra/wxWindows-${WXVER}-VC.zip
190 else
191 echo "Warning - did not find $2/deliver/extra/wxWindows-${WXVER}-VC.zip"
192 fi
193
194 cd wxWindows-${WXVER}
195 $TAR xf ../wxAll-${WXVER}.tar
196
197 # Translate all .dsp and .dsw files to DOS format
198 unix2dos --unix2dos `cat $1/distrib/msw/vc.rsp`
199
200 # Copy OS/2 specific configure files
201 cp $1/distrib/os2/os2-specific.zip docs/os2
202
203 # Copy the OS/2 files which probably haven't been copied yet
204 mkdir include/wx/os2
205 mkdir src/os2
206 cp $1/include/wx/os2/*.H include/wx/os2
207 cp $1/src/os2/*.CPP $1/src/os2/*.I src/os2
208
209 # Make all OS/2 files lower case
210 $1/distrib/msw/namedown include/wx/os2/*.H
211 $1/distrib/msw/namedown src/os2/*.CPP src/os2/*.I
212
213 cd ..
214 rm -f wxAll-${WXVER}.tar
215 $TAR cf $2/wxAll-${WXVER}.tar wxWindows-${WXVER}/*
216 rm -f -r wxWindows-${WXVER}
217 gzip $2/wxAll-${WXVER}.tar
218
219
220 ### Doc sources
221 #cd $1
222 #cat $1/distrib/msw/docsrc.rsp > /tmp/docsrc_in.txt
223 #expandlines /tmp/docsrc_in.txt /tmp/docsrc.txt
224 #$TAR cf $2/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt
225 #
226 #echo Re-tarring docs in a subdirectory...
227 #cd $2
228 #mkdir wxWindows-${WXVER}
229 #cd wxWindows-${WXVER}
230 #$TAR xf ../wxWindows-${WXVER}-doc.tar
231 #cd ..
232 #rm -f wxWindows-${WXVER}-doc.tar
233 #$TAR cf $2/wxWindows-${WXVER}-doc.tar wxWindows-${WXVER}/*
234 #rm -f -r wxWindows-${WXVER}
235 #gzip $2/wxWindows-${WXVER}-doc.tar
236
237 ### HTML docs
238 cd $1
239 cat $1/distrib/msw/wx_html.rsp > /tmp/html_in.txt
240 expandlines /tmp/html_in.txt /tmp/html.txt
241 $TAR cf $2/wxWindows-${WXVER}-HTML.tar -T /tmp/html.txt
242
243 echo Re-tarring HTML in a subdirectory...
244 cd $2
245 mkdir wxWindows-${WXVER}
246 cd wxWindows-${WXVER}
247 $TAR xf ../wxWindows-${WXVER}-HTML.tar
248 cd ..
249 rm -f wxWindows-${WXVER}-HTML.tar
250 $TAR cf $2/wxWindows-${WXVER}-HTML.tar wxWindows-${WXVER}/*
251 rm -f -r wxWindows-${WXVER}
252 gzip $2/wxWindows-${WXVER}-HTML.tar
253
254 ### HTB docs
255 cd $1
256 cat $1/distrib/msw/wx_htb.rsp > /tmp/htb_in.txt
257 expandlines /tmp/htb_in.txt /tmp/htb.txt
258 $TAR cf $2/wxWindows-${WXVER}-HTB.tar -T /tmp/htb.txt
259
260 echo Re-tarring HTB in a subdirectory...
261 cd $2
262 mkdir wxWindows-${WXVER}
263 cd wxWindows-${WXVER}
264 $TAR xf ../wxWindows-${WXVER}-HTB.tar
265 cd ..
266 rm -f wxWindows-${WXVER}-HTB.tar
267 $TAR cf $2/wxWindows-${WXVER}-HTB.tar wxWindows-${WXVER}/*
268 rm -f -r wxWindows-${WXVER}
269 gzip $2/wxWindows-${WXVER}-HTB.tar
270
271 ### PDF docs
272 cd $1
273 cat $1/distrib/msw/wx_pdf.rsp > /tmp/pdf_in.txt
274 expandlines /tmp/pdf_in.txt /tmp/pdf.txt
275 $TAR cf $2/wxWindows-${WXVER}-PDF.tar -T /tmp/pdf.txt
276
277 echo Re-tarring PDF in a subdirectory...
278 cd $2
279 mkdir wxWindows-${WXVER}
280 cd wxWindows-${WXVER}
281 $TAR xf ../wxWindows-${WXVER}-PDF.tar
282 cd ..
283 rm -f wxWindows-${WXVER}-PDF.tar
284 $TAR cf $2/wxWindows-${WXVER}-PDF.tar wxWindows-${WXVER}/*
285 rm -f -r wxWindows-${WXVER}
286 gzip $2/wxWindows-${WXVER}-PDF.tar
287
288 ### Tex2RTF
289 #cd $1
290 #cat $1/distrib/msw/tex2rtf.rsp > /tmp/tex2rtf_in.txt
291 #expandlines /tmp/tex2rtf_in.txt /tmp/tex2rtf.txt
292 #$TAR cf $2/wxWindows-${WXVER}-tex2rtf.tar -T /tmp/tex2rtf.txt
293 #
294 #echo Re-tarring Tex2RTF in a subdirectory...
295 #cd $2
296 #mkdir wxWindows-${WXVER}
297 #cd wxWindows-${WXVER}
298 #$TAR xf ../wxWindows-${WXVER}-tex2rtf.tar
299 #cd ..
300 #rm -f wxWindows-${WXVER}-tex2rtf.tar
301 #$TAR cf $2/wxWindows-${WXVER}-tex2rtf.tar wxWindows-${WXVER}/*
302 #rm -f -r wxWindows-${WXVER}
303 #gzip $2/wxWindows-${WXVER}-tex2rtf.tar
304
305 ### OGL
306 #cd $1
307 #cat $1/distrib/msw/ogl.rsp > /tmp/ogl_in.txt
308 #expandlines /tmp/ogl_in.txt /tmp/ogl.txt
309 #$TAR cf $2/wxWindows-${WXVER}-ogl.tar -T /tmp/ogl.txt
310 #
311 #echo Re-tarring OGL in a subdirectory...
312 #cd $2
313 #mkdir wxWindows-${WXVER}
314 #cd wxWindows-${WXVER}
315 #$TAR xf ../wxWindows-${WXVER}-ogl.tar
316 #cd ..
317 #rm -f wxWindows-${WXVER}-ogl.tar
318 #$TAR cf $2/wxWindows-${WXVER}-ogl.tar wxWindows-${WXVER}/*
319 #rm -f -r wxWindows-${WXVER}
320 #gzip $2/wxWindows-${WXVER}-ogl.tar
321
322 ### JPEG
323 #cd $1
324 #cat $1/distrib/msw/jpeg.rsp > /tmp/jpeg_in.txt
325 #expandlines /tmp/jpeg_in.txt /tmp/jpeg.txt
326 #$TAR cf $2/wxWindows-${WXVER}-jpeg.tar -T /tmp/jpeg.txt
327 #
328 #echo Re-tarring jpeg in a subdirectory...
329 #cd $2
330 #mkdir wxWindows-${WXVER}
331 #cd wxWindows-${WXVER}
332 #$TAR xf ../wxWindows-${WXVER}-jpeg.tar
333 #cd ..
334 #rm -f wxWindows-${WXVER}-jpeg.tar
335 #$TAR cf $2/wxWindows-${WXVER}-jpeg.tar wxWindows-${WXVER}/*
336 #rm -f -r wxWindows-${WXVER}
337 #gzip $2/wxWindows-${WXVER}-jpeg.tar
338
339 ### TIFF
340 #cd $1
341 #cat $1/distrib/msw/tiff.rsp > /tmp/tiff_in.txt
342 #expandlines /tmp/tiff_in.txt /tmp/tiff.txt
343 #$TAR cf $2/wxWindows-${WXVER}-tiff.tar -T /tmp/tiff.txt
344 #
345 #echo Re-tarring docs in a subdirectory...
346 #cd $2
347 #mkdir wxWindows-${WXVER}
348 #cd wxWindows-${WXVER}
349 #$TAR xf ../wxWindows-${WXVER}-tiff.tar
350 #cd ..
351 #rm -f wxWindows-${WXVER}-tiff.tar
352 #$TAR cf $2/wxWindows-${WXVER}-tiff.tar wxWindows-${WXVER}/*
353 #rm -f -r wxWindows-${WXVER}
354 #gzip $2/wxWindows-${WXVER}-tiff.tar
355
356 # Copy readme and other files
357 cd $1
358 cp $1/docs/readme.txt $2/readme-${WXVER}.txt
359 cp $1/docs/changes.txt $2/changes-${WXVER}.txt
360 cp $1/docs/mgl/readme.txt $2/readme-mgl-${WXVER}.txt
361 cp $1/docs/mgl/install.txt $2/install-mgl-${WXVER}.txt
362 cp $1/docs/x11/readme.txt $2/readme-x11-${WXVER}.txt
363 cp $1/docs/x11/readme-nanox.txt $2/readme-nanox-${WXVER}.txt
364 cp $1/docs/x11/install.txt $2/install-x11-${WXVER}.txt
365 cp $1/docs/motif/readme.txt $2/readme-motif-${WXVER}.txt
366 cp $1/docs/motif/install.txt $2/install-motif-${WXVER}.txt
367 cp $1/docs/msw/readme.txt $2/readme-msw-${WXVER}.txt
368 cp $1/docs/msw/install.txt $2/install-msw-${WXVER}.txt
369 cp $1/docs/gtk/readme.txt $2/readme-gtk-${WXVER}.txt
370 cp $1/docs/gtk/install.txt $2/install-gtk-${WXVER}.txt
371 cp $1/docs/mac/readme.txt $2/readme-mac-${WXVER}.txt
372 cp $1/docs/mac/install.txt $2/install-mac-${WXVER}.txt
373 cp $1/docs/os2/install.txt $2/install-os2-${WXVER}.txt
374
375 echo Done!