added script to generate parts of rsp manifests with samples files and bakefile-gener...
[wxWidgets.git] / distrib / scripts / create_archives.sh
1 #!/bin/sh
2
3 # Make a distribution of an application on MSW.
4 # Example:
5 # ../distrib/msw/makesetup.sh --wxmsw --verbose &> log
6
7 # If your zip accepts Cygwin-style paths, then
8 # use cygpath, else substitute echo
9 CYGPATHPROG=cygpath
10 #CYGPATHPROG=echo
11
12 SPINMSW=0
13 SPINOS2=0
14 SPINDOCS=0
15 SPINALL=0
16 SPINWXALL=0
17 SPINBASE=0
18 GETMAKEFILES=0
19 VERBOSE=0
20 ZIPFLAGS=
21
22 PROGNAME=$0
23 ##SCRIPTDIR=$WXWIN/distrib/scripts
24 . $SCRIPTDIR/utils.inc
25
26 MANIFESTDIR=$WXWIN/distrib/scripts/manifests
27 WEBFILES=$WXWIN/../wxWebSite
28 if [ ! "$CYGPATH" = "" ]; then
29 WEBFILES=`$CYGPATH "$WEBFILES"`
30 fi
31
32 # Set this to the required version
33 if [ "$VERSION" = "" ]; then
34 VERSION=2.7.0
35 fi
36
37 getfilelist(){
38 port=$1
39 outfile=$2
40
41 filelist="base.rsp"
42 contribfiles="stc.rsp contrib.rsp ogl.rsp"
43 utilsfiles="tex2rtf.rsp utils.rsp utilmake.rsp"
44 commonfiles="generic.rsp generic_samples.rsp jpeg.rsp tiff.rsp xml.rsp deprecated.rsp makefile.rsp $utilsfiles $contribfiles"
45
46 if [ ! $port = "base" ]; then
47 filelist="$filelist $commonfiles"
48 fi
49
50 if [ $port = "msw" ] || [ $port = "all" ]; then
51 filelist="$filelist msw.rsp univ.rsp vc.rsp mmedia.rsp wince.rsp dmc.rsp"
52 fi
53
54 if [ $port = "os2" ] || [ $port = "all" ]; then
55 filelist="$filelist os2.rsp"
56 fi
57
58 if [ $port = "x11" ] || [ $port = "all" ]; then
59 filelist="$filelist univ.rsp x11.rsp"
60 fi
61
62 if [ $port = "mgl" ] || [ $port = "all" ]; then
63 filelist="$filelist mgl.rsp"
64 fi
65
66 if [ $port = "dfb" ] || [ $port = "all" ]; then
67 filelist="$filelist dfb.rsp"
68 fi
69
70 if [ $port = "gtk" ] || [ $port = "all" ]; then
71 filelist="$filelist gtk.rsp"
72 fi
73
74 if [ $port = "motif" ] || [ $port = "all" ]; then
75 filelist="$filelist motif.rsp"
76 fi
77
78 if [ $port = "mac" ] || [ $port = "all" ]; then
79 filelist="$filelist mac.rsp cocoa.rsp"
80 fi
81
82 if [ $port = "all" ]; then
83 filelist="$filelist gtk1.rsp palmos.rsp docsrc.rsp"
84 fi
85
86 tempfile="/tmp/wx$port.files.in"
87 rm -f $outfile
88
89 olddir=$PWD
90 cd $MANIFESTDIR
91
92 cat $filelist > $outfile
93
94 cd $olddir
95 }
96
97 copyfilelist(){
98 FILELIST=$1
99 APPDIR=$2
100 DESTDIR=$3
101
102 for line in `cat $FILELIST` ; do
103 if [ "$line" != "" ]; then
104 subdir=`dirname $line`
105 mkdir -p $DESTDIR/$subdir
106 cp -rf $APPDIR/$line $DESTDIR/$subdir
107 fi
108 done
109 }
110
111 doinit()
112 {
113 if [ "$VERBOSE" != "1" ]; then
114 ZIPFLAGS=-q
115 fi
116 }
117
118 dospinport(){
119 port=$1
120
121 case "$port" in
122 all)
123 portname="Widgets";;
124 base)
125 portname="Base";;
126 motif)
127 portname="Motif";;
128 mac)
129 portname="Mac";;
130 *)
131 # for all the others (DFB, GTK, MGL, DFB, MSW, X11) just use the
132 # upper-case version as they are abbreviations
133 portname=`echo $port | tr '[a-z]' '[A-Z]'`;;
134 esac
135
136 echo "Creating wx$portname distribution..."
137
138 cd $APPDIR
139 portfiles="/tmp/wx$port.files"
140 getfilelist "$port" "$portfiles"
141
142 TMPFILESDIR=/tmp/wx$port/wx$portname-$VERSION
143 rm -rf $TMPFILESDIR
144 mkdir -p $TMPFILESDIR
145
146 copyfilelist $portfiles $APPDIR $TMPFILESDIR
147
148 if [ $port = "msw" ]; then
149 FILES=`find . -type f \( -path '*/CVS/*' -prune -o -exec ${SCRIPTDIR}/is_text.sh {} \; -print \)`
150 echo "$FILES" > /tmp/textfiles
151 fi
152
153 pushd /tmp/wx$port
154 # use DOS line endings for text files for MSW archives.
155 if [ $port = "msw" ]; then
156 pushd /tmp/wx$port/wx$portname-$VERSION
157 for file in `cat /tmp/textfiles`; do
158 unix2dos $file
159 done
160 popd
161 fi
162 echo "Creating wx$portname-$VERSION.zip..."
163 zip $ZIPFLAGS -r -9 $APPDIR/deliver/wx$portname-$VERSION.zip .
164 echo "Creating wx$portname-$VERSION.tar.gz..."
165 tar czf $APPDIR/deliver/wx$portname-$VERSION.tar.gz wx$portname-$VERSION
166 echo "Creating wx$portname-$VERSION.tar.bz2..."
167 tar ch wx$portname-$VERSION | bzip2 -f9 > $APPDIR/deliver/wx$portname-$VERSION.tar.bz2
168 popd
169 rm -rf /tmp/wx$port
170 rm ${portfiles}
171 rm /tmp/textfiles
172 }
173
174 prepareforrelease()
175 {
176 pushd $APPDIR
177 echo Copying FAQ and other files from $WEBFILES
178 cp $WEBFILES/site/faq*.htm $APPDIR/docs/html
179 cp $WEBFILES/site/platform.htm $APPDIR/docs/html
180 cp $WEBFILES/site/i18n.htm $APPDIR/docs/html
181
182 echo Copying readme files...
183 cp $APPDIR/docs/msw/readme.txt README-MSW.txt
184 cp $APPDIR/docs/msw/install.txt INSTALL-MSW.txt
185 cp $APPDIR/docs/os2/install.txt INSTALL-OS2.txt
186 cp $APPDIR/docs/licence.txt LICENCE.txt
187 cp $APPDIR/docs/lgpl.txt COPYING.LIB
188 cp $APPDIR/docs/changes.txt CHANGES.txt
189 cp $APPDIR/docs/readme.txt README.txt
190
191 cp $APPDIR/docs/mgl/readme.txt $APPDIR/readme-mgl.txt
192 cp $APPDIR/docs/mgl/install.txt $APPDIR/install-mgl.txt
193
194 cp $APPDIR/docs/dfb/install.txt $APPDIR/install-dfb.txt
195
196 cp $APPDIR/docs/x11/readme.txt $APPDIR/readme-x11.txt
197 cp $APPDIR/docs/x11/install.txt $APPDIR/install-x11.txt
198
199 cp $APPDIR/docs/motif/readme.txt $APPDIR/readme-motif.txt
200 cp $APPDIR/docs/motif/install.txt $APPDIR/install-motif.txt
201
202 cp $APPDIR/docs/gtk/readme.txt $APPDIR/readme-gtk.txt
203 cp $APPDIR/docs/gtk/install.txt $APPDIR/install-gtk.txt
204
205 cp $APPDIR/docs/mac/readme.txt $APPDIR/readme-mac.txt
206 cp $APPDIR/docs/mac/install.txt $APPDIR/install-mac.txt
207
208 cp $APPDIR/docs/cocoa/readme.txt $APPDIR/readme-cocoa.txt
209 cp $APPDIR/docs/cocoa/install.txt $APPDIR/install-cocoa.txt
210
211 # Now delete a few files that are unnecessary
212 rm -f BuildCVS.txt descrip.mms
213 rm -f setup.h_vms
214 rm -f docs/html/wxbook.htm docs/html/roadmap.htm
215 rm -f -r contrib/docs/latex/ogl
216 rm -f src/mingegcs.bat
217 # rm -f *.spec
218 rm -f src/gtk/descrip.mms src/motif/descrip.mms
219
220 # Copy setup0.h files to setup.h
221 # OS/2 always built with configure now
222 # cp $APPDIR/include/wx/os2/setup0.h $APPDIR/include/wx/os2/setup.h
223 cp $APPDIR/include/wx/msw/setup0.h $APPDIR/include/wx/msw/setup.h
224 cp $APPDIR/include/wx/univ/setup0.h $APPDIR/include/wx/univ/setup.h
225
226 # Make MSW project files always have DOS line endings.
227 unix2dos `cat $MANIFESTDIR/vc.rsp`
228
229 popd
230 }
231
232 usage()
233 {
234 echo "Usage: $PROGNAME [ options ]" 1>&2
235 echo Options:
236 echo " --help Display this help message"
237 echo " --wxmac Build wxMac distribution"
238 echo " --wxmsw Build wxMSW distribution"
239 echo " --wxos2 Build wxOS2 distribution"
240 echo " --wxall Build wxAll zip distribution"
241 echo " --wxbase Build wxBase zip distribution"
242 echo " --all Build all distributions (the default)"
243 echo " --verbose Verbose zip operation"
244 exit 1
245 }
246
247 # Process command line options.
248
249 for i in "$@"; do
250
251 case "$i" in
252 --wxmac) SPINMAC=1; SPINALL=0 ;;
253 --wxmsw) SPINMSW=1; SPINALL=0 ;;
254 --wxos2) SPINOS2=1; SPINALL=0 ;;
255 --wxall) SPINWXALL=1; SPINALL=0 ;;
256 --wxbase) SPINBASE=1; SPINALL=0 ;;
257 --getmakefiles) GETMAKEFILES=1; SPINALL=0 ;;
258 --docs) SPINDOCS=1; SPINALL=0 ;;
259 --all) SPINALL=1 ;;
260 --verbose) VERBOSE=1 ;;
261 *)
262 usage
263 exit
264 ;;
265 esac
266 done
267
268
269 doinit
270 prepareforrelease
271
272 # Do OS/2 spin
273 if [ "$SPINOS2" = "1" ] || [ "$SPINALL" = "1" ]; then
274 dospinport "os2"
275 fi
276
277 # Do MSW spin
278 if [ "$SPINMSW" = "1" ] || [ "$SPINALL" = "1" ]; then
279 dospinport "msw"
280 fi
281
282 # Do wxBase spin
283 if [ "$SPINBASE" = "1" ] || [ "$SPINALL" = "1" ]; then
284 dospinport "base"
285 fi
286
287 # Do wxAll spin
288 if [ "$SPINWXALL" = "1" ] || [ "$SPINALL" = "1" ]; then
289 dospinport "all"
290 fi
291
292 if [ "$SPINALL" = "1" ]; then
293 dospinport "mgl"
294 dospinport "dfb"
295 dospinport "gtk"
296 dospinport "x11"
297 dospinport "motif"
298 dospinport "mac"
299 fi
300