]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | @echo off |
2 | rem Zip up an external, generic + Windows distribution of wxWindows 2.0 | |
706bb5f9 | 3 | set src=%wxwin |
bbcdf8bc | 4 | set dest=%src\deliver |
af111fc3 | 5 | set wise=0 |
7f24fdbf JS |
6 | |
7 | Rem Set this to the required version | |
5fa399c9 | 8 | set version=2_1_14 |
7f24fdbf | 9 | |
bbcdf8bc JS |
10 | if "%src" == "" goto usage |
11 | if "%dest" == "" goto usage | |
af111fc3 JS |
12 | if "%1" == "-help" goto usage |
13 | if "%1" == "--help" goto usage | |
14 | if "%1" == "/?" goto usage | |
a925b006 | 15 | if "%1" == "wiseonly" goto dounzip |
af111fc3 | 16 | if "%1" == "wise" set wise=1 |
457814b5 | 17 | echo About to archive an external wxWindows distribution: |
bbcdf8bc | 18 | echo From %src |
589f0e3e | 19 | echo To %dest |
af111fc3 | 20 | if "%wise" == "1" echo with WISE setup creation. |
457814b5 JS |
21 | echo CTRL-C if this is not correct. |
22 | pause | |
23 | ||
7f24fdbf | 24 | erase %dest\wx*.zip |
06ad8636 JS |
25 | erase %dest\ogl3.zip |
26 | erase %dest\tex2rtf2.zip | |
794005c0 | 27 | erase %dest\jpeg.zip |
ccebc98a | 28 | erase %dest\tiff.zip |
281b0186 | 29 | erase %dest\dialoged.zip |
0a0352f2 | 30 | erase %dest\utils.zip |
457814b5 | 31 | |
07e63290 JS |
32 | if direxist %dest\wx deltree /Y %dest\wx |
33 | ||
bbcdf8bc | 34 | cd %src |
457814b5 | 35 | echo Zipping... |
88150e60 | 36 | |
7f24fdbf JS |
37 | zip32 -@ %dest\wx%version%_gen.zip < %src\distrib\msw\generic.rsp |
38 | zip32 -@ -u %dest\wx%version%_gen.zip < %src\distrib\msw\makefile.rsp | |
39 | zip32 -@ %dest\wx%version%_msw.zip < %src\distrib\msw\msw.rsp | |
40 | zip32 -@ -u %dest\wx%version%_msw.zip < %src\distrib\msw\makefile.rsp | |
41 | zip32 -@ %dest\wx%version%_gtk.zip < %src\distrib\msw\gtk.rsp | |
42 | zip32 -@ -u %dest\wx%version%_gtk.zip < %src\distrib\msw\makefile.rsp | |
43 | zip32 -@ %dest\wx%version%_stubs.zip < %src\distrib\msw\stubs.rsp | |
44 | zip32 -@ %dest\wx%version%_mot.zip < %src\distrib\msw\motif.rsp | |
45 | zip32 -@ -u %dest\wx%version%_mot.zip < %src\distrib\msw\makefile.rsp | |
9bb3479c | 46 | Rem (Obsolete) zip32 -@ %dest\wx%version%_user.zip < %src\distrib\msw\user.rsp |
7f24fdbf JS |
47 | |
48 | zip32 -@ %dest\wx%version%_doc.zip < %src\distrib\msw\docsrc.rsp | |
49 | zip32 -@ %dest\wx%version%_hlp.zip < %src\distrib\msw\wx_hlp.rsp | |
50 | zip32 -@ %dest\wx%version%_htm.zip < %src\distrib\msw\wx_html.rsp | |
51 | zip32 -@ %dest\wx%version%_pdf.zip < %src\distrib\msw\wx_pdf.rsp | |
52 | zip32 -@ %dest\wx%version%_wrd.zip < %src\distrib\msw\wx_word.rsp | |
457814b5 | 53 | |
754330c0 | 54 | rem VC++ project files |
7f24fdbf | 55 | zip32 -@ %dest\wx%version%_vc.zip < %src\distrib\msw\vc.rsp |
88150e60 | 56 | |
ca5c8b2d | 57 | rem BC++ project files |
7f24fdbf | 58 | zip32 -@ %dest\wx%version%_bc.zip < %src\distrib\msw\bc.rsp |
ca5c8b2d | 59 | |
754330c0 | 60 | rem CodeWarrior project files |
7f24fdbf | 61 | zip32 -@ %dest\wx%version%_cw.zip < %src\distrib\msw\cw.rsp |
a367b9b3 | 62 | |
9838df2c | 63 | rem OGL 3 |
08853b68 | 64 | zip32 -@ %dest\ogl3.zip < %src\distrib\msw\ogl.rsp |
3dd4e4e0 | 65 | |
5d525ad9 JS |
66 | rem MMedia |
67 | zip32 -@ %dest\mmedia.zip < %src\distrib\msw\mmedia.rsp | |
68 | ||
53adbc34 JS |
69 | rem STC (Scintilla widget) |
70 | zip32 -@ %dest\stc.zip < %src\distrib\msw\stc.rsp | |
71 | ||
babc9758 JS |
72 | rem GLCanvas: obsolete, now in main library |
73 | rem zip32 -@ %dest\glcanvas.zip < %src\distrib\msw\glcanvas.rsp | |
9838df2c | 74 | |
9a29912f | 75 | rem Tex2RTF |
3d05544e | 76 | zip32 -@ %dest\tex2rtf2.zip < %src\distrib\msw\tex2rtf.rsp |
9a29912f | 77 | |
794005c0 JS |
78 | rem JPEG source |
79 | zip32 -@ %dest\jpeg.zip < %src\distrib\msw\jpeg.rsp | |
80 | ||
ccebc98a JS |
81 | rem TIFF source |
82 | zip32 -@ %dest\tiff.zip < %src\distrib\msw\tiff.rsp | |
83 | ||
281b0186 JS |
84 | rem Dialog Editor source and binary |
85 | erase %dest\dialoged_source.zip | |
86 | zip32 -@ %dest\dialoged_source.zip < %src\distrib\msw\dialoged.rsp | |
87 | zip32 -j %dest\dialoged.zip %dest\dialoged_source.zip %src\bin\dialoged.exe %src\bin\dialoged.hlp %src\bin\dialoged.cnt | |
88 | erase %dest\dialoged_source.zip | |
89 | ||
0a0352f2 JS |
90 | rem Misc. utils not in the main distribution |
91 | zip32 -@ %dest\utils.zip < %src\distrib\msw\utils.rsp | |
92 | zip32 -@ -u %dest\utils.zip < %src\distrib\msw\utilmake.rsp | |
93 | ||
ad5c34f3 JS |
94 | copy %src\docs\changes.txt %dest |
95 | copy %src\docs\msw\install.txt %dest\install_msw.txt | |
96 | copy %src\docs\motif\install.txt %dest\install_motif.txt | |
97 | copy %src\docs\gtk\install.txt %dest\install_gtk.txt | |
98 | copy %src\docs\readme.txt %dest | |
a925b006 | 99 | copy %src\docs\release.txt %dest |
c7f49969 JS |
100 | copy %src\docs\motif\makewxmotif %dest |
101 | copy %src\docs\gtk\makewxgtk %dest | |
ad5c34f3 | 102 | |
a925b006 JS |
103 | Rem Skip WISE setup if wise is 0. |
104 | if "%wise" == "0" goto end | |
105 | ||
07e63290 JS |
106 | :dounzip |
107 | ||
108 | cd %dest | |
109 | ||
110 | rem Unzip the Windows files into 'wx' | |
111 | mkdir %dest\wx | |
112 | ||
113 | Rem After this change of directory, we're in the | |
114 | Rem temporary 'wx' directory and not acting on | |
115 | Rem the source wxWindows directory. | |
116 | cd %dest\wx | |
7f24fdbf JS |
117 | unzip32 -o ..\wx%version%_msw.zip |
118 | unzip32 -o ..\wx%version%_gen.zip | |
119 | unzip32 -o ..\wx%version%_vc.zip | |
120 | unzip32 -o ..\wx%version%_bc.zip | |
121 | unzip32 -o ..\wx%version%_hlp.zip | |
733dac47 | 122 | Rem Need Word file, for Remstar DB classes |
7f24fdbf | 123 | unzip32 -o ..\wx%version%_wrd.zip |
07e63290 JS |
124 | unzip32 -o ..\ogl3.zip |
125 | unzip32 -o ..\jpeg.zip | |
ccebc98a | 126 | unzip32 -o ..\tiff.zip |
17d8ee1c | 127 | unzip32 -o ..\tex2rtf2.zip |
07e63290 | 128 | |
07e63290 | 129 | rem Now delete a few files that are unnecessary |
a19762cf JS |
130 | attrib -R * |
131 | erase /Y BuildCVS.txt *.in *.spec *.guess *.sub mkinstalldirs modules install-sh *.sh descrip.mms | |
53adbc34 | 132 | erase /Y configure samples\configure samples\*.in demos\configure demos\*.in contrib\configure contrib\*.in |
a19762cf | 133 | erase /Y setup.h.in setup.h_vms |
07e63290 | 134 | erase /SY Makefile.in |
01dba85a JS |
135 | rem erase /Y docs\pdf\ogl.pdf |
136 | rem deltree /Y docs\html\ogl | |
07e63290 JS |
137 | |
138 | rem Now copy some binary files to 'bin' | |
139 | if not isdir bin mkdir bin | |
140 | copy %src\bin\dialoged.exe bin | |
9c6751aa JS |
141 | copy %src\bin\dbgview.* bin |
142 | copy %src\bin\life.exe bin | |
07e63290 JS |
143 | copy %src\docs\winhelp\dialoged.hlp %src\docs\winhelp\dialoged.cnt bin |
144 | ||
145 | rem Time to regenerate the WISE install script, wxwin2.wse. | |
146 | rem NB: if you've changed wxwin2.wse using WISE, call splitwise.exe | |
147 | rem from within distrib\msw, to split off wisetop.txt and wisebott.txt. | |
148 | echo Calling 'makewise' to generate wxwin2.wse... | |
149 | call %WXWIN\distrib\msw\makewise.bat | |
150 | ||
a19762cf | 151 | erase /Y %dest\setup.* |
b40b0f5b | 152 | |
07e63290 JS |
153 | rem Now invoke WISE install on the new wxwin2.wse |
154 | set wisecmd="c:\Program Files\wise\wise32.exe" /C %WXWIN\distrib\msw\wxwin2.wse | |
155 | echo Invoking %wisecmd... | |
0a0352f2 JS |
156 | start %wisecmd |
157 | pause Press any key to continue with the wxWindows distribution... | |
6e47faf1 | 158 | Rem ren %WXWIN\deliver\setup.EXE %WXWIN\deliver\setup_%version%.exe |
07e63290 | 159 | |
bbcdf8bc | 160 | cd %dest |
457814b5 | 161 | |
a925b006 JS |
162 | Rem tidy up capitalisation of filenames |
163 | ren setup.EXE s | |
164 | ren s setup.exe | |
165 | ||
166 | ren setup.w02 s | |
167 | ren s setup.w02 | |
168 | ||
169 | ren setup.w03 s | |
170 | ren s setup.w03 | |
171 | ||
172 | ren setup.w04 s | |
173 | ren s setup.w04 | |
174 | ||
175 | ren setup.w05 s | |
176 | ren s setup.w05 | |
177 | ||
178 | ren setup.w06 s | |
179 | ren s setup.w06 | |
180 | ||
a19762cf JS |
181 | ren setup.w07 s |
182 | ren s setup.w07 | |
183 | ||
b40b0f5b | 184 | rem Put all the setup files into a single zip archive. |
ccebc98a | 185 | zip32 wx%version%_setup.zip readme.txt setup.* |
b40b0f5b | 186 | |
457814b5 | 187 | echo wxWindows archived. |
a925b006 | 188 | |
457814b5 JS |
189 | goto end |
190 | ||
191 | :usage | |
af111fc3 JS |
192 | echo DOS wxWindows distribution. Zips up all GTK/Motif/MSW/doc files, |
193 | echo and optionally makes a deliver\wx directory and a setup.exe | |
a925b006 | 194 | echo if you specify 'wise' (skipping the zipping if you use 'wiseonly'). |
af111fc3 | 195 | echo. |
a925b006 | 196 | echo Usage: zipdist [wise | wiseonly] |
457814b5 JS |
197 | |
198 | :end |