]>
Commit | Line | Data |
---|---|---|
2a29700e RR |
1 | #! /bin/sh |
2 | # | |
3 | # This script is creates a dir tree in ~/wxgtk_dist which | |
4 | # can then be packed into an archive | |
5 | ||
301cd871 RR |
6 | echo -------- |
7 | echo This script will copy the wxGTK release files into ~/wxgtk_dist | |
8 | echo -------- | |
9 | echo | |
2a29700e RR |
10 | |
11 | mkdir ~/wxgtk_dist | |
12 | mkdir ~/wxgtk_dist/wxGTK | |
13 | ||
14 | echo Base dir.. | |
15 | ||
16 | cd ../.. | |
17 | cp wxGTK.spec ~/wxgtk_dist/wxGTK | |
5bd9e519 | 18 | cp Makefile.in ~/wxgtk_dist/wxGTK |
2a29700e | 19 | cp configure ~/wxgtk_dist/wxGTK |
2a29700e RR |
20 | cp config.sub ~/wxgtk_dist/wxGTK |
21 | cp config.guess ~/wxgtk_dist/wxGTK | |
22 | cp install-sh ~/wxgtk_dist/wxGTK | |
5bd9e519 RR |
23 | cp ltconfig ~/wxgtk_dist/wxGTK |
24 | cp ltmain.sh ~/wxgtk_dist/wxGTK | |
25 | cp missing ~/wxgtk_dist/wxGTK | |
2a29700e | 26 | cp mkinstalldirs ~/wxgtk_dist/wxGTK |
2a29700e | 27 | cp wx-config.in ~/wxgtk_dist/wxGTK |
5bd9e519 | 28 | cp setup.h.in ~/wxgtk_dist/wxGTK |
2a29700e RR |
29 | |
30 | echo Docs.. | |
31 | ||
32 | cd docs/gtk | |
33 | cp COPYING.LIB ~/wxgtk_dist/wxGTK | |
34 | cp install.txt ~/wxgtk_dist/wxGTK/INSTALL.txt | |
35 | cp licence.txt ~/wxgtk_dist/wxGTK/LICENCE.txt | |
36 | cp readme.txt ~/wxgtk_dist/wxGTK/README.txt | |
37 | cp todo.txt ~/wxgtk_dist/wxGTK/TODO.txt | |
38 | cd .. | |
39 | cp symbols.txt ~/wxgtk_dist/wxGTK/SYMBOLS.txt | |
40 | cd .. | |
41 | ||
42 | echo Include dir.. | |
43 | ||
44 | mkdir ~/wxgtk_dist/wxGTK/include | |
45 | cd include | |
5bd9e519 | 46 | cp Makefile.in ~/wxgtk_dist/wxGTK/include |
2a29700e RR |
47 | |
48 | mkdir ~/wxgtk_dist/wxGTK/include/wx | |
49 | cd wx | |
2a29700e RR |
50 | cp *.h ~/wxgtk_dist/wxGTK/include/wx |
51 | cp *.cpp ~/wxgtk_dist/wxGTK/include/wx | |
5bd9e519 | 52 | cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx |
2a29700e RR |
53 | |
54 | mkdir ~/wxgtk_dist/wxGTK/include/wx/generic | |
55 | cd generic | |
56 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/generic | |
5bd9e519 | 57 | cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/generic |
2a29700e RR |
58 | cd .. |
59 | ||
034be888 RR |
60 | mkdir ~/wxgtk_dist/wxGTK/include/wx/unix |
61 | cd unix | |
62 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/unix | |
5bd9e519 | 63 | cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/unix |
034be888 RR |
64 | cd .. |
65 | ||
2a29700e RR |
66 | mkdir ~/wxgtk_dist/wxGTK/include/wx/gtk |
67 | cd gtk | |
68 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/gtk | |
69 | rm ~/wxgtk_dist/wxGTK/include/wx/gtk/setup.h | |
5bd9e519 | 70 | cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/gtk |
2a29700e RR |
71 | cd .. |
72 | ||
73 | mkdir ~/wxgtk_dist/wxGTK/include/wx/protocol | |
74 | cd protocol | |
75 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/protocol | |
5bd9e519 | 76 | cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/protocol |
2a29700e RR |
77 | cd .. |
78 | ||
79 | cd .. | |
80 | cd .. | |
81 | ||
2a29700e RR |
82 | echo Misc dir.. |
83 | ||
84 | mkdir ~/wxgtk_dist/wxGTK/misc | |
85 | mkdir ~/wxgtk_dist/wxGTK/misc/afm | |
86 | mkdir ~/wxgtk_dist/wxGTK/misc/gs_afm | |
87 | ||
88 | cp ./misc/afm/*.afm ~/wxgtk_dist/wxGTK/misc/afm | |
89 | cp ./misc/gs_afm/*.afm ~/wxgtk_dist/wxGTK/misc/gs_afm | |
90 | ||
2a29700e RR |
91 | echo Src dir.. |
92 | ||
93 | cd src | |
94 | mkdir ~/wxgtk_dist/wxGTK/src | |
2a29700e | 95 | cp Makefile.in ~/wxgtk_dist/wxGTK/src |
5bd9e519 RR |
96 | |
97 | cd gtk | |
98 | mkdir ~/wxgtk_dist/wxGTK/src/gtk | |
99 | cp Makefile.in ~/wxgtk_dist/wxGTK/src/gtk | |
100 | cp *.xbm ~/wxgtk_dist/wxGTK/src/gtk | |
101 | cp *.c ~/wxgtk_dist/wxGTK/src/gtk | |
102 | cp *.inc ~/wxgtk_dist/wxGTK/src/gtk | |
103 | cp *.cpp ~/wxgtk_dist/wxGTK/src/gtk | |
104 | cd .. | |
2a29700e RR |
105 | |
106 | cd common | |
107 | mkdir ~/wxgtk_dist/wxGTK/src/common | |
108 | cp glob.inc ~/wxgtk_dist/wxGTK/src/common | |
109 | cp lexer.l ~/wxgtk_dist/wxGTK/src/common | |
110 | cp parser.y ~/wxgtk_dist/wxGTK/src/common | |
2a29700e RR |
111 | cp extended.c ~/wxgtk_dist/wxGTK/src/common |
112 | cp *.cpp ~/wxgtk_dist/wxGTK/src/common | |
113 | cd .. | |
114 | ||
034be888 RR |
115 | cd unix |
116 | mkdir ~/wxgtk_dist/wxGTK/src/unix | |
117 | cp *.cpp ~/wxgtk_dist/wxGTK/src/unix | |
118 | cd .. | |
119 | ||
2a29700e RR |
120 | cd generic |
121 | mkdir ~/wxgtk_dist/wxGTK/src/generic | |
122 | cp *.cpp ~/wxgtk_dist/wxGTK/src/generic | |
123 | cd .. | |
124 | ||
125 | cd iodbc | |
126 | mkdir ~/wxgtk_dist/wxGTK/src/iodbc | |
127 | cp * ~/wxgtk_dist/wxGTK/src/iodbc | |
128 | cd .. | |
129 | ||
130 | cd zlib | |
131 | mkdir ~/wxgtk_dist/wxGTK/src/zlib | |
132 | cp * ~/wxgtk_dist/wxGTK/src/zlib | |
133 | cd .. | |
134 | ||
135 | cd png | |
136 | mkdir ~/wxgtk_dist/wxGTK/src/png | |
137 | cp * ~/wxgtk_dist/wxGTK/src/png | |
138 | cd .. | |
139 | ||
7ddb3812 RR |
140 | cd jpeg |
141 | mkdir ~/wxgtk_dist/wxGTK/src/jpeg | |
142 | cp * ~/wxgtk_dist/wxGTK/src/jpeg | |
143 | cd .. | |
144 | ||
2a29700e RR |
145 | cd .. |
146 | ||
147 | echo Utils dir.. | |
148 | ||
149 | cd utils | |
150 | mkdir ~/wxgtk_dist/wxGTK/utils | |
5bd9e519 | 151 | cp Makefile.in ~/wxgtk_dist/wxGTK/utils |
2a29700e | 152 | |
3cdda6cd RR |
153 | echo wxGLCanvas.. |
154 | ||
2a29700e RR |
155 | cd glcanvas |
156 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas | |
157 | cp ./docs/notes.txt ~/wxgtk_dist/wxGTK/utils/glcanvas/NOTES.txt | |
158 | ||
159 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk | |
160 | cp ./gtk/glcanvas.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk | |
161 | cp ./gtk/glcanvas.h ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk | |
162 | ||
163 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples | |
164 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
f234c60c | 165 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf |
2a29700e RR |
166 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin |
167 | ||
168 | cd samples/cube | |
169 | cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
170 | cp cube.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
171 | cp cube.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
172 | cd .. | |
173 | ||
f234c60c RR |
174 | cd isosurf |
175 | cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf | |
176 | cp isosurf.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf | |
177 | cp isosurf.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf | |
178 | cp isosurf.dat.gz ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf | |
179 | cd .. | |
180 | ||
2a29700e RR |
181 | cd penguin |
182 | cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
183 | cp penguin.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
184 | cp penguin.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
185 | cp trackball.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
186 | cp trackball.c ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
187 | cp lw.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
188 | cp lw.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
189 | cp penguin.lwo ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
190 | cd ../../.. | |
191 | ||
3cdda6cd RR |
192 | echo DialogEd.. |
193 | ||
2a29700e RR |
194 | cd dialoged/src |
195 | mkdir ~/wxgtk_dist/wxGTK/utils/dialoged | |
196 | cp Makefile ~/wxgtk_dist/wxGTK/utils/dialoged | |
197 | cp dialoged.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
198 | cp dlghndlr.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
199 | cp edlist.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
200 | cp edtree.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
201 | cp reseditr.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
202 | cp reswrite.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
203 | cp symbtabl.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
204 | cp winprop.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
205 | cp winstyle.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
206 | cp dialoged.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
207 | cp dlghndlr.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
208 | cp edlist.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
209 | cp edtree.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
210 | cp reseditr.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
211 | cp symbtabl.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
212 | cp winprop.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
213 | cp winstyle.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
214 | ||
215 | cd bitmaps | |
216 | mkdir ~/wxgtk_dist/wxGTK/utils/dialoged/bitmaps | |
217 | cp *.xpm ~/wxgtk_dist/wxGTK/utils/dialoged/bitmaps | |
5aa5e35a RR |
218 | cd ../../.. |
219 | ||
3cdda6cd RR |
220 | echo wxPython.. |
221 | ||
5aa5e35a RR |
222 | cd wxPython |
223 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython | |
224 | cp README.txt ~/wxgtk_dist/wxGTK/utils/wxPython | |
3cdda6cd | 225 | |
5aa5e35a RR |
226 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/src |
227 | cp ./src/* ~/wxgtk_dist/wxGTK/utils/wxPython/src | |
3cdda6cd | 228 | |
5aa5e35a RR |
229 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/src/gtk |
230 | cp ./src/gtk/* ~/wxgtk_dist/wxGTK/utils/wxPython/src/gtk | |
3cdda6cd RR |
231 | |
232 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/lib | |
233 | cp ./lib/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/lib | |
234 | ||
5aa5e35a | 235 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/tests |
3cdda6cd | 236 | cp ./tests/README.txt ~/wxgtk_dist/wxGTK/utils/wxPython/tests |
5aa5e35a | 237 | cp ./tests/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/tests |
3cdda6cd RR |
238 | |
239 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/demo | |
5c387335 RR |
240 | cp ./demo/README.txt ~/wxgtk_dist/wxGTK/utils/wxPython/demo |
241 | cp ./demo/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/demo | |
242 | cp ./demo/*.pyc ~/wxgtk_dist/wxGTK/utils/wxPython/demo | |
3cdda6cd | 243 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/demo/bitmaps |
5c387335 | 244 | cp ./demo/bitmaps/* ~/wxgtk_dist/wxGTK/utils/wxPython/demo/bitmaps |
3cdda6cd | 245 | |
5aa5e35a RR |
246 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/tests/bitmaps |
247 | cp ./tests/bitmaps/* ~/wxgtk_dist/wxGTK/utils/wxPython/tests/bitmaps | |
3cdda6cd RR |
248 | cd .. |
249 | ||
250 | echo wxOLE.. | |
251 | ||
252 | cd wxOLE | |
253 | mkdir ~/wxgtk_dist/wxGTK/utils/wxOLE | |
254 | mkdir ~/wxgtk_dist/wxGTK/utils/wxOLE/gtk | |
255 | cp ./gtk/wxole.* ~/wxgtk_dist/wxGTK/utils/wxOLE/gtk | |
256 | mkdir ~/wxgtk_dist/wxGTK/utils/wxOLE/samples | |
257 | mkdir ~/wxgtk_dist/wxGTK/utils/wxOLE/samples/servlet | |
258 | cp ./samples/servlet/Makefile ~/wxgtk_dist/wxGTK/utils/wxOLE/samples/servlet | |
259 | cp ./samples/servlet/*.xpm ~/wxgtk_dist/wxGTK/utils/wxOLE/samples/servlet | |
260 | cp ./samples/servlet/*.cpp ~/wxgtk_dist/wxGTK/utils/wxOLE/samples/servlet | |
261 | cp ./samples/servlet/*.gnorba ~/wxgtk_dist/wxGTK/utils/wxOLE/samples/servlet | |
262 | ||
5aa5e35a | 263 | cd ../.. |
2a29700e | 264 | |
3cdda6cd | 265 | |
2a29700e RR |
266 | echo Samples dir.. |
267 | ||
268 | cd samples | |
269 | mkdir ~/wxgtk_dist/wxGTK/samples | |
5bd9e519 | 270 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples |
2a29700e RR |
271 | |
272 | echo Minimal sample.. | |
273 | ||
274 | cd minimal | |
275 | mkdir ~/wxgtk_dist/wxGTK/samples/minimal | |
2a29700e RR |
276 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/minimal |
277 | cp minimal.cpp ~/wxgtk_dist/wxGTK/samples/minimal | |
278 | cp mondrian.xpm ~/wxgtk_dist/wxGTK/samples/minimal | |
279 | cd .. | |
280 | ||
281 | echo Bombs sample.. | |
282 | ||
283 | cd bombs | |
284 | mkdir ~/wxgtk_dist/wxGTK/samples/bombs | |
2a29700e RR |
285 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/bombs |
286 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/bombs | |
287 | cp *.h ~/wxgtk_dist/wxGTK/samples/bombs | |
288 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/bombs | |
289 | cd .. | |
290 | ||
291 | echo Checklst sample.. | |
292 | ||
293 | cd checklst | |
294 | mkdir ~/wxgtk_dist/wxGTK/samples/checklst | |
2a29700e RR |
295 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/checklst |
296 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/checklst | |
297 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/checklst | |
298 | cd .. | |
299 | ||
300 | echo Config sample.. | |
301 | ||
302 | cd config | |
303 | mkdir ~/wxgtk_dist/wxGTK/samples/config | |
2a29700e RR |
304 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/config |
305 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/config | |
306 | cd .. | |
307 | ||
308 | echo Controls sample.. | |
309 | ||
310 | cd controls | |
311 | mkdir ~/wxgtk_dist/wxGTK/samples/controls | |
2a29700e RR |
312 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/controls |
313 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/controls | |
314 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/controls | |
315 | cd icons | |
316 | mkdir ~/wxgtk_dist/wxGTK/samples/controls/icons | |
317 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/controls/icons | |
318 | cd ../.. | |
319 | ||
320 | echo Db sample.. | |
321 | ||
322 | cd db | |
323 | mkdir ~/wxgtk_dist/wxGTK/samples/db | |
2a29700e RR |
324 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/db |
325 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/db | |
326 | cp *.h ~/wxgtk_dist/wxGTK/samples/db | |
327 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/db | |
328 | cd .. | |
329 | ||
31276cb5 RR |
330 | echo DDE sample.. |
331 | ||
332 | cd dde | |
333 | mkdir ~/wxgtk_dist/wxGTK/samples/dde | |
31276cb5 RR |
334 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dde |
335 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dde | |
336 | cp *.h ~/wxgtk_dist/wxGTK/samples/dde | |
337 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/dde | |
338 | cd .. | |
2a29700e RR |
339 | |
340 | echo Dialogs sample.. | |
341 | ||
342 | cd dialogs | |
343 | mkdir ~/wxgtk_dist/wxGTK/samples/dialogs | |
2a29700e RR |
344 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dialogs |
345 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dialogs | |
346 | cp *.h ~/wxgtk_dist/wxGTK/samples/dialogs | |
347 | cd .. | |
348 | ||
349 | echo DnD sample.. | |
350 | ||
351 | cd dnd | |
352 | mkdir ~/wxgtk_dist/wxGTK/samples/dnd | |
2a29700e RR |
353 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dnd |
354 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dnd | |
355 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/dnd | |
356 | cd .. | |
357 | ||
358 | echo Docview sample.. | |
359 | ||
360 | cd docview | |
361 | mkdir ~/wxgtk_dist/wxGTK/samples/docview | |
2a29700e RR |
362 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/docview |
363 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/docview | |
364 | cp *.h ~/wxgtk_dist/wxGTK/samples/docview | |
365 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/docview | |
366 | cd .. | |
367 | ||
368 | echo DocvwMDI sample.. | |
369 | ||
370 | cd docvwmdi | |
371 | mkdir ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
2a29700e RR |
372 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/docvwmdi |
373 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
374 | cp *.h ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
375 | cd .. | |
376 | ||
377 | echo Dynamic sample.. | |
378 | ||
379 | cd dynamic | |
380 | mkdir ~/wxgtk_dist/wxGTK/samples/dynamic | |
2a29700e RR |
381 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dynamic |
382 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dynamic | |
383 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/dynamic | |
384 | cd .. | |
385 | ||
74505862 RR |
386 | echo Drawing sample.. |
387 | ||
388 | cd drawing | |
389 | mkdir ~/wxgtk_dist/wxGTK/samples/drawing | |
74505862 RR |
390 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/drawing |
391 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/drawing | |
392 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/drawing | |
393 | cd .. | |
394 | ||
2a29700e RR |
395 | echo Forty sample.. |
396 | ||
397 | cd forty | |
398 | mkdir ~/wxgtk_dist/wxGTK/samples/forty | |
2a29700e RR |
399 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/forty |
400 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/forty | |
401 | cp *.h ~/wxgtk_dist/wxGTK/samples/forty | |
402 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/forty | |
cf33637f | 403 | cp *.xbm ~/wxgtk_dist/wxGTK/samples/forty |
2a29700e RR |
404 | cd .. |
405 | ||
406 | echo Fractal sample.. | |
407 | ||
408 | cd fractal | |
409 | mkdir ~/wxgtk_dist/wxGTK/samples/fractal | |
2a29700e RR |
410 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/fractal |
411 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/fractal | |
412 | cd .. | |
413 | ||
414 | echo Grid sample.. | |
415 | ||
416 | cd grid | |
417 | mkdir ~/wxgtk_dist/wxGTK/samples/grid | |
2a29700e RR |
418 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/grid |
419 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/grid | |
420 | cd .. | |
421 | ||
422 | echo Help sample.. | |
423 | ||
424 | cd help | |
425 | mkdir ~/wxgtk_dist/wxGTK/samples/help | |
2a29700e RR |
426 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/help |
427 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/help | |
428 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/help | |
429 | cd doc | |
430 | mkdir ~/wxgtk_dist/wxGTK/samples/help/doc | |
431 | cp * ~/wxgtk_dist/wxGTK/samples/help/doc | |
432 | cd ../.. | |
433 | ||
434 | echo Image sample.. | |
435 | ||
436 | cd image | |
437 | mkdir ~/wxgtk_dist/wxGTK/samples/image | |
2a29700e RR |
438 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/image |
439 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/image | |
440 | cp horse.png ~/wxgtk_dist/wxGTK/samples/image | |
7ddb3812 RR |
441 | cp horse.gif ~/wxgtk_dist/wxGTK/samples/image |
442 | cp horse.jpg ~/wxgtk_dist/wxGTK/samples/image | |
2a29700e RR |
443 | cd .. |
444 | ||
445 | echo Internat sample.. | |
446 | ||
447 | cd internat | |
448 | mkdir ~/wxgtk_dist/wxGTK/samples/internat | |
2a29700e RR |
449 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/internat |
450 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/internat | |
451 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/internat | |
452 | cp readme.txt ~/wxgtk_dist/wxGTK/samples/internat | |
453 | cp wxstd.po ~/wxgtk_dist/wxGTK/samples/internat | |
454 | cd fr | |
455 | mkdir ~/wxgtk_dist/wxGTK/samples/internat/fr | |
456 | cp *.?o ~/wxgtk_dist/wxGTK/samples/internat/fr | |
457 | cd ../.. | |
458 | ||
459 | echo Layout sample.. | |
460 | ||
461 | cd layout | |
462 | mkdir ~/wxgtk_dist/wxGTK/samples/layout | |
2a29700e RR |
463 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/layout |
464 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/layout | |
465 | cp *.h ~/wxgtk_dist/wxGTK/samples/layout | |
466 | cd .. | |
467 | ||
468 | echo Listctrl sample.. | |
469 | ||
470 | cd listctrl | |
471 | mkdir ~/wxgtk_dist/wxGTK/samples/listctrl | |
2a29700e RR |
472 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/listctrl |
473 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/listctrl | |
474 | cp *.h ~/wxgtk_dist/wxGTK/samples/listctrl | |
475 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/listctrl | |
476 | cd bitmaps | |
477 | mkdir ~/wxgtk_dist/wxGTK/samples/listctrl/bitmaps | |
478 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/listctrl/bitmaps | |
479 | cd ../.. | |
480 | ||
481 | echo MDI sample.. | |
482 | ||
483 | cd mdi | |
484 | mkdir ~/wxgtk_dist/wxGTK/samples/mdi | |
2a29700e RR |
485 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/mdi |
486 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/mdi | |
487 | cp *.h ~/wxgtk_dist/wxGTK/samples/mdi | |
488 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/mdi | |
489 | cd bitmaps | |
490 | mkdir ~/wxgtk_dist/wxGTK/samples/mdi/bitmaps | |
491 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/mdi/bitmaps | |
492 | cd ../.. | |
493 | ||
494 | echo Memcheck sample.. | |
495 | ||
496 | cd memcheck | |
497 | mkdir ~/wxgtk_dist/wxGTK/samples/memcheck | |
2a29700e RR |
498 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/memcheck |
499 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/memcheck | |
500 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/memcheck | |
501 | cd .. | |
502 | ||
503 | echo Minifram sample.. | |
504 | ||
505 | cd minifram | |
506 | mkdir ~/wxgtk_dist/wxGTK/samples/minifram | |
2a29700e RR |
507 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/minifram |
508 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/minifram | |
509 | cp *.h ~/wxgtk_dist/wxGTK/samples/minifram | |
510 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/minifram | |
511 | cd bitmaps | |
512 | mkdir ~/wxgtk_dist/wxGTK/samples/minifram/bitmaps | |
513 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/minifram/bitmaps | |
514 | cd ../.. | |
515 | ||
516 | echo Notebook sample.. | |
517 | ||
518 | cd notebook | |
519 | mkdir ~/wxgtk_dist/wxGTK/samples/notebook | |
2a29700e RR |
520 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/notebook |
521 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/notebook | |
522 | cp *.h ~/wxgtk_dist/wxGTK/samples/notebook | |
523 | cd .. | |
524 | ||
525 | echo PNG sample.. | |
526 | ||
527 | cd png | |
528 | mkdir ~/wxgtk_dist/wxGTK/samples/png | |
2a29700e RR |
529 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/png |
530 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/png | |
531 | cp *.h ~/wxgtk_dist/wxGTK/samples/png | |
532 | cp *.png ~/wxgtk_dist/wxGTK/samples/png | |
533 | cd .. | |
534 | ||
535 | echo Printing sample.. | |
536 | ||
537 | cd printing | |
538 | mkdir ~/wxgtk_dist/wxGTK/samples/printing | |
2a29700e RR |
539 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/printing |
540 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/printing | |
541 | cp *.h ~/wxgtk_dist/wxGTK/samples/printing | |
542 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/printing | |
543 | cd .. | |
544 | ||
545 | echo Proplist sample.. | |
546 | ||
547 | cd proplist | |
548 | mkdir ~/wxgtk_dist/wxGTK/samples/proplist | |
2a29700e RR |
549 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/proplist |
550 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/proplist | |
551 | cp *.h ~/wxgtk_dist/wxGTK/samples/proplist | |
552 | cd .. | |
553 | ||
554 | echo Resource sample.. | |
555 | ||
556 | cd resource | |
557 | mkdir ~/wxgtk_dist/wxGTK/samples/resource | |
2a29700e RR |
558 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/resource |
559 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/resource | |
560 | cp *.h ~/wxgtk_dist/wxGTK/samples/resource | |
561 | cp *.wxr ~/wxgtk_dist/wxGTK/samples/resource | |
562 | cd .. | |
563 | ||
564 | echo Sashtest sample.. | |
565 | ||
566 | cd sashtest | |
567 | mkdir ~/wxgtk_dist/wxGTK/samples/sashtest | |
2a29700e RR |
568 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/sashtest |
569 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/sashtest | |
570 | cp *.h ~/wxgtk_dist/wxGTK/samples/sashtest | |
571 | cd .. | |
572 | ||
31276cb5 RR |
573 | echo Scroll sample.. |
574 | ||
575 | cd sashtest | |
576 | mkdir ~/wxgtk_dist/wxGTK/samples/scroll | |
31276cb5 RR |
577 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/scroll |
578 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/scroll | |
579 | cp *.h ~/wxgtk_dist/wxGTK/samples/scroll | |
580 | cd .. | |
581 | ||
2a29700e RR |
582 | echo Splitter sample.. |
583 | ||
584 | cd splitter | |
585 | mkdir ~/wxgtk_dist/wxGTK/samples/splitter | |
2a29700e RR |
586 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/splitter |
587 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/splitter | |
588 | cd .. | |
589 | ||
590 | echo Tab sample.. | |
591 | ||
592 | cd tab | |
593 | mkdir ~/wxgtk_dist/wxGTK/samples/tab | |
2a29700e RR |
594 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/tab |
595 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/tab | |
596 | cp *.h ~/wxgtk_dist/wxGTK/samples/tab | |
597 | cd .. | |
598 | ||
5bd9e519 RR |
599 | echo Text sample.. |
600 | ||
601 | cd text | |
602 | mkdir ~/wxgtk_dist/wxGTK/samples/text | |
603 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/text | |
604 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/text | |
605 | cd .. | |
606 | ||
2a29700e RR |
607 | echo Thread sample.. |
608 | ||
609 | cd thread | |
610 | mkdir ~/wxgtk_dist/wxGTK/samples/thread | |
2a29700e RR |
611 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/thread |
612 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/thread | |
613 | cd .. | |
614 | ||
615 | echo Toolbar sample.. | |
616 | ||
617 | cd toolbar | |
618 | mkdir ~/wxgtk_dist/wxGTK/samples/toolbar | |
2a29700e RR |
619 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/toolbar |
620 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/toolbar | |
621 | cp *.h ~/wxgtk_dist/wxGTK/samples/toolbar | |
622 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/toolbar | |
623 | cd bitmaps | |
624 | mkdir ~/wxgtk_dist/wxGTK/samples/toolbar/bitmaps | |
625 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/toolbar/bitmaps | |
626 | cd ../.. | |
627 | ||
628 | echo TreeCtrl sample.. | |
629 | ||
630 | cd treectrl | |
631 | mkdir ~/wxgtk_dist/wxGTK/samples/treectrl | |
2a29700e RR |
632 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/treectrl |
633 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/treectrl | |
634 | cp *.h ~/wxgtk_dist/wxGTK/samples/treectrl | |
635 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/treectrl | |
636 | cd .. | |
637 | ||
638 | echo typetest sample.. | |
639 | ||
640 | cd typetest | |
641 | mkdir ~/wxgtk_dist/wxGTK/samples/typetest | |
2a29700e RR |
642 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/typetest |
643 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/typetest | |
644 | cp *.h ~/wxgtk_dist/wxGTK/samples/typetest | |
645 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/typetest | |
646 | cd .. | |
647 | ||
648 | echo Validate sample.. | |
649 | ||
650 | cd validate | |
651 | mkdir ~/wxgtk_dist/wxGTK/samples/validate | |
2a29700e RR |
652 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/validate |
653 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/validate | |
654 | cp *.h ~/wxgtk_dist/wxGTK/samples/validate | |
655 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/validate | |
656 | cd .. | |
657 | ||
658 | echo wxPoem sample.. | |
659 | ||
660 | cd wxpoem | |
661 | mkdir ~/wxgtk_dist/wxGTK/samples/wxpoem | |
2a29700e RR |
662 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/wxpoem |
663 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/wxpoem | |
cf33637f | 664 | cp *.h ~/wxgtk_dist/wxGTK/samples/wxpoem |
2a29700e RR |
665 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/wxpoem |
666 | cp wxpoem.dat ~/wxgtk_dist/wxGTK/samples/wxpoem | |
667 | cp wxpoem.txt ~/wxgtk_dist/wxGTK/samples/wxpoem | |
668 | cp wxpoem.idx ~/wxgtk_dist/wxGTK/samples/wxpoem | |
669 | cd .. | |
670 | ||
671 | echo wxSocket sample.. | |
672 | ||
673 | cd wxsocket | |
674 | mkdir ~/wxgtk_dist/wxGTK/samples/wxsocket | |
2a29700e RR |
675 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/wxsocket |
676 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/wxsocket | |
677 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/wxsocket | |
301cd871 | 678 | cd ../.. |
2a29700e | 679 | |
301cd871 | 680 | echo LOCAL CORRECTCIONS |
2a29700e | 681 | |
301cd871 RR |
682 | cd distrib/gtk |
683 | cp README.txt ~/wxgtk_dist/wxGTK/utils/wxPython | |
684 | cp Setup ~/wxgtk_dist/wxGTK/utils/wxPython/src | |
2a29700e | 685 | |
5bd9e519 | 686 | cd .. |
2a29700e | 687 | |
5bd9e519 | 688 | # tar ch | gzip -f9 > wxGTK-2.1.0-b6.tgz |