]>
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 | |
8 | set version=2_1_11 | |
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\glcanvas.zip |
26 | erase %dest\ogl3.zip | |
27 | erase %dest\tex2rtf2.zip | |
794005c0 | 28 | erase %dest\jpeg.zip |
457814b5 | 29 | |
07e63290 JS |
30 | if direxist %dest\wx deltree /Y %dest\wx |
31 | ||
bbcdf8bc | 32 | cd %src |
457814b5 | 33 | echo Zipping... |
88150e60 | 34 | |
7f24fdbf JS |
35 | zip32 -@ %dest\wx%version%_gen.zip < %src\distrib\msw\generic.rsp |
36 | zip32 -@ -u %dest\wx%version%_gen.zip < %src\distrib\msw\makefile.rsp | |
37 | zip32 -@ %dest\wx%version%_msw.zip < %src\distrib\msw\msw.rsp | |
38 | zip32 -@ -u %dest\wx%version%_msw.zip < %src\distrib\msw\makefile.rsp | |
39 | zip32 -@ %dest\wx%version%_gtk.zip < %src\distrib\msw\gtk.rsp | |
40 | zip32 -@ -u %dest\wx%version%_gtk.zip < %src\distrib\msw\makefile.rsp | |
41 | zip32 -@ %dest\wx%version%_stubs.zip < %src\distrib\msw\stubs.rsp | |
42 | zip32 -@ %dest\wx%version%_mot.zip < %src\distrib\msw\motif.rsp | |
43 | zip32 -@ -u %dest\wx%version%_mot.zip < %src\distrib\msw\makefile.rsp | |
44 | zip32 -@ %dest\wx%version%_user.zip < %src\distrib\msw\user.rsp | |
45 | ||
46 | zip32 -@ %dest\wx%version%_doc.zip < %src\distrib\msw\docsrc.rsp | |
47 | zip32 -@ %dest\wx%version%_hlp.zip < %src\distrib\msw\wx_hlp.rsp | |
48 | zip32 -@ %dest\wx%version%_htm.zip < %src\distrib\msw\wx_html.rsp | |
49 | zip32 -@ %dest\wx%version%_pdf.zip < %src\distrib\msw\wx_pdf.rsp | |
50 | zip32 -@ %dest\wx%version%_wrd.zip < %src\distrib\msw\wx_word.rsp | |
457814b5 | 51 | |
754330c0 | 52 | rem VC++ project files |
7f24fdbf | 53 | zip32 -@ %dest\wx%version%_vc.zip < %src\distrib\msw\vc.rsp |
88150e60 | 54 | |
ca5c8b2d | 55 | rem BC++ project files |
7f24fdbf | 56 | zip32 -@ %dest\wx%version%_bc.zip < %src\distrib\msw\bc.rsp |
ca5c8b2d | 57 | |
754330c0 | 58 | rem CodeWarrior project files |
7f24fdbf | 59 | zip32 -@ %dest\wx%version%_cw.zip < %src\distrib\msw\cw.rsp |
a367b9b3 | 60 | |
9838df2c | 61 | rem OGL 3 |
08853b68 | 62 | zip32 -@ %dest\ogl3.zip < %src\distrib\msw\ogl.rsp |
3dd4e4e0 | 63 | |
9838df2c | 64 | rem GLCanvas |
08853b68 | 65 | zip32 -@ %dest\glcanvas.zip < %src\distrib\msw\glcanvas.rsp |
9838df2c | 66 | |
9a29912f | 67 | rem Tex2RTF |
3d05544e | 68 | zip32 -@ %dest\tex2rtf2.zip < %src\distrib\msw\tex2rtf.rsp |
9a29912f | 69 | |
574c0bbf JS |
70 | rem wxTreeLayout |
71 | zip32 -@ %dest\treedraw.zip < %src\distrib\msw\wxtree.rsp | |
72 | ||
794005c0 JS |
73 | rem JPEG source |
74 | zip32 -@ %dest\jpeg.zip < %src\distrib\msw\jpeg.rsp | |
75 | ||
ad5c34f3 JS |
76 | copy %src\docs\changes.txt %dest |
77 | copy %src\docs\msw\install.txt %dest\install_msw.txt | |
78 | copy %src\docs\motif\install.txt %dest\install_motif.txt | |
79 | copy %src\docs\gtk\install.txt %dest\install_gtk.txt | |
80 | copy %src\docs\readme.txt %dest | |
a925b006 | 81 | copy %src\docs\release.txt %dest |
c7f49969 JS |
82 | copy %src\docs\motif\makewxmotif %dest |
83 | copy %src\docs\gtk\makewxgtk %dest | |
ad5c34f3 | 84 | |
a925b006 JS |
85 | Rem Skip WISE setup if wise is 0. |
86 | if "%wise" == "0" goto end | |
87 | ||
07e63290 JS |
88 | :dounzip |
89 | ||
90 | cd %dest | |
91 | ||
92 | rem Unzip the Windows files into 'wx' | |
93 | mkdir %dest\wx | |
94 | ||
95 | Rem After this change of directory, we're in the | |
96 | Rem temporary 'wx' directory and not acting on | |
97 | Rem the source wxWindows directory. | |
98 | cd %dest\wx | |
7f24fdbf JS |
99 | unzip32 -o ..\wx%version%_msw.zip |
100 | unzip32 -o ..\wx%version%_gen.zip | |
101 | unzip32 -o ..\wx%version%_vc.zip | |
102 | unzip32 -o ..\wx%version%_bc.zip | |
103 | unzip32 -o ..\wx%version%_hlp.zip | |
733dac47 | 104 | Rem Need Word file, for Remstar DB classes |
7f24fdbf | 105 | unzip32 -o ..\wx%version%_wrd.zip |
07e63290 JS |
106 | unzip32 -o ..\glcanvas.zip |
107 | unzip32 -o ..\treedraw.zip | |
108 | unzip32 -o ..\ogl3.zip | |
109 | unzip32 -o ..\jpeg.zip | |
17d8ee1c | 110 | unzip32 -o ..\tex2rtf2.zip |
07e63290 | 111 | |
07e63290 JS |
112 | rem Now delete a few files that are unnecessary |
113 | erase /Y *.in *.spec *.guess *.sub mkinstalldirs modules install-sh *.sh | |
114 | erase /SY Makefile.in | |
01dba85a JS |
115 | rem erase /Y docs\pdf\ogl.pdf |
116 | rem deltree /Y docs\html\ogl | |
07e63290 JS |
117 | |
118 | rem Now copy some binary files to 'bin' | |
119 | if not isdir bin mkdir bin | |
120 | copy %src\bin\dialoged.exe bin | |
121 | copy %src\docs\winhelp\dialoged.hlp %src\docs\winhelp\dialoged.cnt bin | |
122 | ||
123 | rem Time to regenerate the WISE install script, wxwin2.wse. | |
124 | rem NB: if you've changed wxwin2.wse using WISE, call splitwise.exe | |
125 | rem from within distrib\msw, to split off wisetop.txt and wisebott.txt. | |
126 | echo Calling 'makewise' to generate wxwin2.wse... | |
127 | call %WXWIN\distrib\msw\makewise.bat | |
128 | ||
b40b0f5b JS |
129 | erase /Y setup.* |
130 | ||
07e63290 JS |
131 | rem Now invoke WISE install on the new wxwin2.wse |
132 | set wisecmd="c:\Program Files\wise\wise32.exe" /C %WXWIN\distrib\msw\wxwin2.wse | |
133 | echo Invoking %wisecmd... | |
134 | start /w %wisecmd | |
6e47faf1 | 135 | Rem ren %WXWIN\deliver\setup.EXE %WXWIN\deliver\setup_%version%.exe |
07e63290 | 136 | |
bbcdf8bc | 137 | cd %dest |
457814b5 | 138 | |
a925b006 JS |
139 | Rem tidy up capitalisation of filenames |
140 | ren setup.EXE s | |
141 | ren s setup.exe | |
142 | ||
143 | ren setup.w02 s | |
144 | ren s setup.w02 | |
145 | ||
146 | ren setup.w03 s | |
147 | ren s setup.w03 | |
148 | ||
149 | ren setup.w04 s | |
150 | ren s setup.w04 | |
151 | ||
152 | ren setup.w05 s | |
153 | ren s setup.w05 | |
154 | ||
155 | ren setup.w06 s | |
156 | ren s setup.w06 | |
157 | ||
b40b0f5b JS |
158 | rem Put all the setup files into a single zip archive. |
159 | zip32 setup.zip readme.txt setup.* | |
160 | ||
457814b5 | 161 | echo wxWindows archived. |
a925b006 | 162 | |
457814b5 JS |
163 | goto end |
164 | ||
165 | :usage | |
af111fc3 JS |
166 | echo DOS wxWindows distribution. Zips up all GTK/Motif/MSW/doc files, |
167 | echo and optionally makes a deliver\wx directory and a setup.exe | |
a925b006 | 168 | echo if you specify 'wise' (skipping the zipping if you use 'wiseonly'). |
af111fc3 | 169 | echo. |
a925b006 | 170 | echo Usage: zipdist [wise | wiseonly] |
457814b5 JS |
171 | |
172 | :end |