]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tardist
Corrected some casting errors -> XtPointer
[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 expandlines()
11 {
12 toexpand=$1
13 outputfile=$2
14
15 rm -f $outputfile
16 touch $outputfile
17 for line in `cat $toexpand` ; do
18 if [ "$line" != "" ]; then
19 ls $line >> $outputfile
20 fi
21 done
22 }
23
24
25 init=""
26 if [ "$1" = "" ]
27 then
28 echo Usage: tardist wx-dir output-dir version
29 exit
30 fi
31
32 if [ "$2" = "" ]
33 then
34 echo Usage: tardist wx-dir output-dir version
35 exit
36 fi
37
38 if [ "$3" = "" ]
39 then
40 echo Usage: tardist wx-dir output-dir version
41 exit
42 fi
43
44 WXVER=$3
45
46 echo About to archive wxWindows:
47 echo From $1
48 echo To $2
49 echo CTRL-C if this is not correct.
50 read dummy
51
52 cd $1
53
54 echo Removing backup files...
55 rm *~ */*~ */*/*~ */*/*/*~ */*/*/*/*~
56
57 rm -f $2/wx*-${WXVER}*.tgz
58 rm -f $2/tex2rtf2-*.tgz
59 rm -f $2/dialoged-*.tgz
60 rm -f $2/ogl3-*.tgz
61 rm -f $2/jpeg-*.tgz
62 rm -f $2/tiff-*.tgz
63 rm -f $2/stc-*.tgz
64 rm -f $2/canvas-*.tgz
65 rm -f $2/contrib-*.tgz
66 rm -f $2/applet-*.tgz
67
68 echo Tarring...
69
70 ### Generic
71 ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/contrib.rsp $1/distrib/msw/xml.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxgen.txt
72 tar cvf $2/wxWindows-${WXVER}-gen.tar -T /tmp/wxgen.txt
73 gzip $2/wxWindows-${WXVER}-gen.tar
74 mv $2/wxWindows-${WXVER}-gen.tar.gz $2/wxWindows-${WXVER}-gen.tgz
75
76 ### wxGTK
77 ls `cat $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.txt
78 tar cvf $2/wxGTK-${WXVER}.tar -T /tmp/wxgtk.txt
79 gzip $2/wxGTK-${WXVER}.tar
80 mv $2/wxGTK-${WXVER}.tar.gz $2/wxGTK-${WXVER}.tgz
81
82 ### wxMotif
83 ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/motif.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/wxmotif.txt
84 tar cvf $2/wxWindows-${WXVER}-mot.tar -T /tmp/wxmotif.txt
85 gzip $2/wxMotif-${WXVER}.tar
86 mv $2/wxMotif-${WXVER}.tar.gz $2/wxMotif-${WXVER}.tgz
87
88 ### wxMSW
89 ls `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.txt
90 tar cvf $2/wxMSW-${WXVER}.tar -T /tmp/wxmsw.txt
91 gzip $2/wxMSW-${WXVER}.tar
92 mv $2/wxMSW-${WXVER}.tar.gz $2/wxMSW-${WXVER}.tgz
93
94 ### Doc sources
95 ls `cat $1/distrib/msw/docsrc.rsp` > /tmp/docsrc.txt
96 tar cvf $2/wxWindows-${WXVER}-doc.tar -T /tmp/docsrc.txt
97 gzip $2/wxWindows-${WXVER}-doc.tar
98 mv $2/wxWindows-${WXVER}-doc.tar.gz $2/wxWindows-${WXVER}-doc.tgz
99
100 ### HTML docs
101 ls `cat $1/distrib/msw/wx_html.rsp` > /tmp/html.txt
102 tar cvf $2/wxWindows-${WXVER}-htm.tar -T /tmp/html.txt
103 gzip $2/wxWindows-${WXVER}-htm.tar
104 mv $2/wxWindows-${WXVER}-htm.tar.gz $2/wxWindows-${WXVER}-htm.tgz
105
106 ### PDF docs
107 ls `cat $1/distrib/msw/wx_pdf.rsp` > /tmp/pdf.txt
108 tar cvf $2/wxWindows-${WXVER}-pdf.tar -T /tmp/pdf.txt
109 gzip $2/wxWindows-${WXVER}-pdf.tar
110 mv $2/wxWindows-${WXVER}-pdf.tar.gz $2/wxWindows-${WXVER}-pdf.tgz
111
112 ### Stubs files
113 #ls `cat $1/distrib/msw/stubs.rsp` > /tmp/stubs.txt
114 #tar cvf $2/wxWindows-${WXVER}-stubs.tar -T /tmp/stubs.txt
115 #gzip $2/wxWindows-${WXVER}-stubs.tar
116 #mv $2/wxWindows-${WXVER}-stubs.tar.gz $2/wxWindows-${WXVER}-stubs.tgz
117
118 ### Tex2RTF
119 ls `cat $1/distrib/msw/tex2rtf.rsp` > /tmp/tex2rtf.txt
120 tar cvf $2/tex2rtf2-${WXVER}.tar -T /tmp/tex2rtf.txt
121 gzip $2/tex2rtf2-${WXVER}.tar
122 mv $2/tex2rtf2-${WXVER}.tar.gz $2/tex2rtf2-${WXVER}.tgz
123
124 ### OGL
125 ls `cat $1/distrib/msw/ogl.rsp` > /tmp/ogl.txt
126 tar cvf $2/ogl3-${WXVER}.tar -T /tmp/ogl.txt
127 gzip $2/ogl3-${WXVER}.tar
128 mv $2/ogl3-${WXVER}.tar.gz $2/ogl3-${WXVER}.tgz
129
130 ### JPEG
131 ls `cat $1/distrib/msw/jpeg.rsp` > /tmp/jpeg.txt
132 tar cvf $2/jpeg-${WXVER}.tar -T /tmp/jpeg.txt
133 gzip $2/jpeg-${WXVER}.tar
134 mv $2/jpeg-${WXVER}.tar.gz $2/jpeg-${WXVER}.tgz
135
136 ### TIFF
137 ls `cat $1/distrib/msw/tiff.rsp` > /tmp/tiff.txt
138 tar cvf $2/tiff-${WXVER}.tar -T /tmp/tiff.txt
139 gzip $2/tiff-${WXVER}.tar
140 mv $2/tiff-${WXVER}.tar.gz $2/tiff-${WXVER}.tgz
141
142 echo Done!