]>
Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/env python | |
2 | #---------------------------------------------------------------------- | |
3 | ||
4 | import sys, os, string | |
5 | from distutils.core import setup, Extension | |
6 | from distutils.file_util import copy_file | |
7 | from distutils.dir_util import mkpath | |
8 | from distutils.dep_util import newer | |
9 | ||
10 | from my_distutils import run_swig, contrib_copy_tree | |
11 | ||
12 | #---------------------------------------------------------------------- | |
13 | # flags and values that affect this script | |
14 | #---------------------------------------------------------------------- | |
15 | ||
16 | VERSION = "2.3.2b5" | |
17 | DESCRIPTION = "Cross platform GUI toolkit for Python" | |
18 | AUTHOR = "Robin Dunn" | |
19 | AUTHOR_EMAIL = "Robin Dunn <robin@alldunn.com>" | |
20 | URL = "http://wxPython.org/" | |
21 | LICENCE = "wxWindows (LGPL derivative)" | |
22 | LONG_DESCRIPTION = """\ | |
23 | wxPython is a GUI toolkit for Python that is a wrapper around the | |
24 | wxWindows C++ GUI library. wxPython provides a large variety of | |
25 | window types and controls, all implemented with a native look and | |
26 | feel (and native runtime speed) on the platforms it is supported | |
27 | on. | |
28 | """ | |
29 | ||
30 | ||
31 | BUILD_GLCANVAS = 1 # If true, build the contrib/glcanvas extension module | |
32 | BUILD_OGL = 1 # If true, build the contrib/ogl extension module | |
33 | BUILD_STC = 1 # If true, build the contrib/stc extension module | |
34 | BUILD_IEWIN = 0 # Internet Explorer wrapper (experimental) | |
35 | BUILD_XRC = 1 # XML based resource system | |
36 | ||
37 | ||
38 | CORE_ONLY = 0 # if true, don't build any of the above | |
39 | GL_ONLY = 0 # Only used when making the -gl RPM. See the "b" script | |
40 | # for the ugly details | |
41 | ||
42 | USE_SWIG = 0 # Should we actually execute SWIG, or just use the | |
43 | # files already in the distribution? | |
44 | ||
45 | IN_CVS_TREE = 0 # Set to true if building in a full wxWindows CVS | |
46 | # tree, otherwise will assume all needed files are | |
47 | # available in the wxPython source distribution | |
48 | ||
49 | WX_CONFIG = "wx-config" # Usually you shouldn't need to touch this, | |
50 | # but you can set it to pass an alternate | |
51 | # version of wx-config or alternate flags, | |
52 | # eg. as required by the .deb in-tree build. | |
53 | ||
54 | # Some MSW build settings | |
55 | ||
56 | FINAL = 1 # Mirrors use of same flag in wx makefiles, | |
57 | # (0 or 1 only) should probably find a way to | |
58 | # autodetect this... | |
59 | ||
60 | HYBRID = 0 # If set and not debug or FINAL, then build a | |
61 | # hybrid extension that can be used by the | |
62 | # non-debug version of python, but contains | |
63 | # debugging symbols for wxWindows and wxPython. | |
64 | # wxWindows must have been built with /MD, not /MDd | |
65 | # (using FINAL=hybrid will do it.) | |
66 | ||
67 | WXDLLVER = '23_2' # Version part of DLL name | |
68 | ||
69 | ||
70 | #---------------------------------------------------------------------- | |
71 | ||
72 | def msg(text): | |
73 | if __name__ == "__main__": | |
74 | print text | |
75 | ||
76 | def opj(*args): | |
77 | path = apply(os.path.join, args) | |
78 | return os.path.normpath(path) | |
79 | ||
80 | #---------------------------------------------------------------------- | |
81 | # Some other globals | |
82 | #---------------------------------------------------------------------- | |
83 | ||
84 | PKGDIR = 'wxPython' | |
85 | wxpExtensions = [] | |
86 | ||
87 | force = '--force' in sys.argv or '-f' in sys.argv | |
88 | debug = '--debug' in sys.argv or '-g' in sys.argv | |
89 | ||
90 | bcpp_compiling = '-c' in sys.argv and 'my_bcpp' in sys.argv # Bad heuristic | |
91 | ||
92 | if bcpp_compiling: | |
93 | msg("Compiling wxPython by Borland C/C++ Compiler") | |
94 | HYBRID=0 | |
95 | WXBCPPLIBVER = string.replace(WXDLLVER,"_","") | |
96 | # Version part of BCPP build LIBRARY name | |
97 | WXDLLVER="" # no dll ver path avaible | |
98 | ||
99 | ||
100 | #---------------------------------------------------------------------- | |
101 | # Check for build flags on the command line | |
102 | #---------------------------------------------------------------------- | |
103 | ||
104 | for flag in ['BUILD_GLCANVAS', 'BUILD_OGL', 'BUILD_STC', 'BUILD_XRC', | |
105 | 'CORE_ONLY', 'USE_SWIG', 'IN_CVS_TREE', | |
106 | 'FINAL', 'HYBRID', ]: | |
107 | for x in range(len(sys.argv)): | |
108 | if string.find(sys.argv[x], flag) == 0: | |
109 | pos = string.find(sys.argv[x], '=') + 1 | |
110 | if pos > 0: | |
111 | vars()[flag] = eval(sys.argv[x][pos:]) | |
112 | sys.argv[x] = '' | |
113 | ||
114 | for option in ['WX_CONFIG', 'WXDLLVER', ]: | |
115 | for x in range(len(sys.argv)): | |
116 | if string.find(sys.argv[x], option) == 0: | |
117 | pos = string.find(sys.argv[x], '=') + 1 | |
118 | if pos > 0: | |
119 | vars()[option] = sys.argv[x][pos:] | |
120 | sys.argv[x] = '' | |
121 | ||
122 | sys.argv = filter(None, sys.argv) | |
123 | ||
124 | ||
125 | if CORE_ONLY: | |
126 | BUILD_GLCANVAS = 0 | |
127 | BUILD_OGL = 0 | |
128 | BUILD_STC = 0 | |
129 | BUILD_XRC = 0 | |
130 | ||
131 | #---------------------------------------------------------------------- | |
132 | # Setup some platform specific stuff | |
133 | #---------------------------------------------------------------------- | |
134 | ||
135 | if os.name == 'nt': | |
136 | # Set compile flags and such for MSVC. These values are derived | |
137 | # from the wxWindows makefiles for MSVC, others will probably | |
138 | # vary... | |
139 | WXDIR = os.environ['WXWIN'] | |
140 | WXPLAT = '__WXMSW__' | |
141 | GENDIR = 'msw' | |
142 | ||
143 | if debug: | |
144 | FINAL = 0 | |
145 | HYBRID = 0 | |
146 | ||
147 | if HYBRID: | |
148 | FINAL = 0 | |
149 | ||
150 | includes = ['src', | |
151 | opj(WXDIR, 'include'), | |
152 | ] | |
153 | ||
154 | defines = [ ('WIN32', None), # Some of these are no longer | |
155 | ('__WIN32__', None), # necessary. Anybody know which? | |
156 | ('_WINDOWS', None), | |
157 | ('__WINDOWS__', None), | |
158 | ('WINVER', '0x0400'), | |
159 | ('__WIN95__', None), | |
160 | ('STRICT', None), | |
161 | ||
162 | (WXPLAT, None), | |
163 | ('WXUSINGDLL', '1'), | |
164 | ||
165 | ('SWIG_GLOBAL', None), | |
166 | ('HAVE_CONFIG_H', None), | |
167 | ('WXP_USE_THREAD', '1'), | |
168 | ] | |
169 | ||
170 | if bcpp_compiling: # overwrite it | |
171 | defines = [ | |
172 | ('_WINDOWS', None), | |
173 | ('WINVER', '0x0400'), | |
174 | ('STRICT', None), | |
175 | ||
176 | ('WXUSINGDLL', '1'), | |
177 | ||
178 | ('SWIG_GLOBAL', None), | |
179 | ('HAVE_CONFIG_H', None), | |
180 | ('WXP_USE_THREAD', '1'), | |
181 | ||
182 | ('WXUSE_DEFINE','1'), | |
183 | ('_RTLDLL',None), | |
184 | ] | |
185 | ||
186 | ||
187 | if not FINAL or HYBRID: | |
188 | defines.append( ('__WXDEBUG__', None) ) | |
189 | ||
190 | libdirs = [opj(WXDIR, 'lib'), 'build\\ilib'] | |
191 | ||
192 | if FINAL: | |
193 | wxdll = 'wx' + WXDLLVER | |
194 | elif HYBRID: | |
195 | wxdll = 'wx' + WXDLLVER + 'h' | |
196 | else: | |
197 | wxdll = 'wx' + WXDLLVER + 'd' | |
198 | ||
199 | ||
200 | libs = [wxdll] | |
201 | if bcpp_compiling: | |
202 | libs = ['wx'+WXBCPPLIBVER] | |
203 | ||
204 | libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32', | |
205 | 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32', | |
206 | 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4', | |
207 | 'advapi32', 'wsock32'] | |
208 | ||
209 | ||
210 | cflags = [] #['/GX-'] # workaround for internal compiler error in MSVC on some machines | |
211 | lflags = None | |
212 | ||
213 | ||
214 | if bcpp_compiling: # overwrite it | |
215 | cflags = ['-5', '-VF', ### To supplort MSVC spurious semicolons in the class scope | |
216 | ### else, all semicolons at the end of all DECLARE_...CALLBACK... macros must be eliminated | |
217 | '-Hc', '-H=' + opj(WXDIR, '\src\msw\wx32.csm'), | |
218 | '@' + opj(WXDIR, '\src\msw\wxwin32.cfg') | |
219 | ] | |
220 | ||
221 | ||
222 | if not FINAL and HYBRID and not bcpp_compiling: | |
223 | cflags = cflags + ['/Od', '/Z7'] | |
224 | lflags = ['/DEBUG', ] | |
225 | ||
226 | elif bcpp_compiling and not FINAL: | |
227 | cflags = cflags + ['/Od', '/v', '/y'] | |
228 | lflags = lflags + ['/v', ] ## '/PDB:NONE'] | |
229 | ||
230 | ||
231 | ||
232 | elif os.name == 'posix': | |
233 | # Set flags for Unix type platforms | |
234 | ||
235 | WXDIR = '..' # assumes IN_CVS_TREE | |
236 | WXPLAT = '__WXGTK__' # and assumes GTK... | |
237 | GENDIR = 'gtk' # Need to allow for Motif eventually too | |
238 | ||
239 | includes = ['src'] | |
240 | defines = [('SWIG_GLOBAL', None), | |
241 | ('HAVE_CONFIG_H', None), | |
242 | ('WXP_USE_THREAD', '1'), | |
243 | ] | |
244 | libdirs = [] | |
245 | libs = [] | |
246 | ||
247 | cflags = os.popen(WX_CONFIG + ' --cflags', 'r').read()[:-1] + ' ' + \ | |
248 | os.popen('gtk-config --cflags', 'r').read()[:-1] | |
249 | cflags = string.split(cflags) | |
250 | ||
251 | lflags = os.popen(WX_CONFIG + ' --libs', 'r').read()[:-1] | |
252 | lflags = string.split(lflags) | |
253 | ||
254 | ||
255 | else: | |
256 | raise 'Sorry Charlie...' | |
257 | ||
258 | ||
259 | #---------------------------------------------------------------------- | |
260 | # Check if the version file needs updated | |
261 | #---------------------------------------------------------------------- | |
262 | ||
263 | if IN_CVS_TREE and newer('setup.py', 'src/__version__.py'): | |
264 | open('src/__version__.py', 'w').write("ver = '%s'\n" % VERSION) | |
265 | ||
266 | ||
267 | ||
268 | #---------------------------------------------------------------------- | |
269 | # SWIG defaults | |
270 | #---------------------------------------------------------------------- | |
271 | ||
272 | swig_force = force | |
273 | swig_args = ['-c++', '-shadow', '-python', '-keyword', | |
274 | '-dnone', | |
275 | #'-dascii', | |
276 | #'-docstring', '-Sbefore', | |
277 | '-I./src', '-D'+WXPLAT] | |
278 | swig_deps = ['src/my_typemaps.i'] | |
279 | ||
280 | ||
281 | #---------------------------------------------------------------------- | |
282 | # Define the CORE extension module | |
283 | #---------------------------------------------------------------------- | |
284 | ||
285 | if not GL_ONLY: | |
286 | msg('Preparing CORE...') | |
287 | swig_files = [ 'wx.i', 'windows.i', 'windows2.i', 'windows3.i', 'events.i', | |
288 | 'misc.i', 'misc2.i', 'gdi.i', 'mdi.i', 'controls.i', | |
289 | 'controls2.i', 'cmndlgs.i', 'stattool.i', 'frames.i', 'image.i', | |
290 | 'printfw.i', 'sizers.i', 'clip_dnd.i', | |
291 | 'filesys.i', 'streams.i', | |
292 | ##'grid.i', 'html.i', 'htmlhelp.i', 'calendar.i', 'utils.i', | |
293 | ] | |
294 | ||
295 | swig_sources = run_swig(swig_files, 'src', GENDIR, PKGDIR, | |
296 | USE_SWIG, swig_force, swig_args, swig_deps) | |
297 | ||
298 | copy_file('src/__init__.py', PKGDIR, update=1, verbose=0) | |
299 | copy_file('src/__version__.py', PKGDIR, update=1, verbose=0) | |
300 | ||
301 | ||
302 | if IN_CVS_TREE: # update the licence files | |
303 | mkpath('licence') | |
304 | for file in ['preamble.txt', 'licence.txt', 'licendoc.txt', 'lgpl.txt']: | |
305 | copy_file(opj(WXDIR, 'docs', file), opj('licence',file), update=1, verbose=0) | |
306 | ||
307 | ||
308 | if os.name == 'nt': | |
309 | rc_file = ['src/wxc.rc'] | |
310 | else: | |
311 | rc_file = [] | |
312 | ||
313 | ||
314 | ext = Extension('wxc', ['src/helpers.cpp', | |
315 | 'src/libpy.c', | |
316 | ] + rc_file + swig_sources, | |
317 | ||
318 | include_dirs = includes, | |
319 | define_macros = defines, | |
320 | ||
321 | library_dirs = libdirs, | |
322 | libraries = libs, | |
323 | ||
324 | extra_compile_args = cflags, | |
325 | extra_link_args = lflags, | |
326 | ) | |
327 | wxpExtensions.append(ext) | |
328 | ||
329 | ||
330 | # Extension for the grid module | |
331 | swig_sources = run_swig(['grid.i'], 'src', GENDIR, PKGDIR, | |
332 | USE_SWIG, swig_force, swig_args, swig_deps) | |
333 | ext = Extension('gridc', swig_sources, | |
334 | include_dirs = includes, | |
335 | define_macros = defines, | |
336 | library_dirs = libdirs, | |
337 | libraries = libs, | |
338 | extra_compile_args = cflags, | |
339 | extra_link_args = lflags, | |
340 | ) | |
341 | wxpExtensions.append(ext) | |
342 | ||
343 | ||
344 | # Extension for the html modules | |
345 | swig_sources = run_swig(['html.i', 'htmlhelp.i'], 'src', GENDIR, PKGDIR, | |
346 | USE_SWIG, swig_force, swig_args, swig_deps) | |
347 | ext = Extension('htmlc', swig_sources, | |
348 | include_dirs = includes, | |
349 | define_macros = defines, | |
350 | library_dirs = libdirs, | |
351 | libraries = libs, | |
352 | extra_compile_args = cflags, | |
353 | extra_link_args = lflags, | |
354 | ) | |
355 | wxpExtensions.append(ext) | |
356 | ||
357 | ||
358 | # Extension for the utils module | |
359 | swig_sources = run_swig(['utils.i'], 'src', GENDIR, PKGDIR, | |
360 | USE_SWIG, swig_force, swig_args, swig_deps) | |
361 | ext = Extension('utilsc', swig_sources, | |
362 | include_dirs = includes, | |
363 | define_macros = defines, | |
364 | library_dirs = libdirs, | |
365 | libraries = libs, | |
366 | extra_compile_args = cflags, | |
367 | extra_link_args = lflags, | |
368 | ) | |
369 | wxpExtensions.append(ext) | |
370 | ||
371 | ||
372 | # Extension for the calendar module | |
373 | swig_sources = run_swig(['calendar.i'], 'src', GENDIR, PKGDIR, | |
374 | USE_SWIG, swig_force, swig_args, swig_deps) | |
375 | ext = Extension('calendarc', swig_sources, | |
376 | include_dirs = includes, | |
377 | define_macros = defines, | |
378 | library_dirs = libdirs, | |
379 | libraries = libs, | |
380 | extra_compile_args = cflags, | |
381 | extra_link_args = lflags, | |
382 | ) | |
383 | wxpExtensions.append(ext) | |
384 | ||
385 | ||
386 | # Extension for the help module | |
387 | swig_sources = run_swig(['help.i'], 'src', GENDIR, PKGDIR, | |
388 | USE_SWIG, swig_force, swig_args, swig_deps) | |
389 | ext = Extension('helpc', swig_sources, | |
390 | include_dirs = includes, | |
391 | define_macros = defines, | |
392 | library_dirs = libdirs, | |
393 | libraries = libs, | |
394 | extra_compile_args = cflags, | |
395 | extra_link_args = lflags, | |
396 | ) | |
397 | wxpExtensions.append(ext) | |
398 | ||
399 | ||
400 | #---------------------------------------------------------------------- | |
401 | # Define the GLCanvas extension module | |
402 | #---------------------------------------------------------------------- | |
403 | ||
404 | CTRB_SRC = opj(WXDIR, 'contrib/src') | |
405 | CTRB_INC = opj(WXDIR, 'contrib/include/wx') | |
406 | ||
407 | if BUILD_GLCANVAS or GL_ONLY: | |
408 | msg('Preparing GLCANVAS...') | |
409 | location = 'contrib/glcanvas' | |
410 | swig_files = ['glcanvas.i'] | |
411 | other_sources = [] | |
412 | ||
413 | swig_sources = run_swig(swig_files, location, GENDIR, PKGDIR, | |
414 | USE_SWIG, swig_force, swig_args) | |
415 | ||
416 | gl_libs = [] | |
417 | if os.name == 'posix': | |
418 | gl_config = os.popen(WX_CONFIG + ' --gl-libs', 'r').read()[:-1] | |
419 | gl_lflags = string.split(gl_config) + lflags | |
420 | gl_libs = libs | |
421 | else: | |
422 | other_sources = [opj(location, 'msw/myglcanvas.cpp')] | |
423 | gl_libs = libs + ['opengl32', 'glu32'] | |
424 | gl_lflags = lflags | |
425 | ||
426 | ext = Extension('glcanvasc', | |
427 | swig_sources + other_sources, | |
428 | ||
429 | include_dirs = includes, | |
430 | define_macros = defines, | |
431 | ||
432 | library_dirs = libdirs, | |
433 | libraries = gl_libs, | |
434 | ||
435 | extra_compile_args = cflags, | |
436 | extra_link_args = gl_lflags, | |
437 | ) | |
438 | ||
439 | wxpExtensions.append(ext) | |
440 | ||
441 | ||
442 | #---------------------------------------------------------------------- | |
443 | # Define the OGL extension module | |
444 | #---------------------------------------------------------------------- | |
445 | ||
446 | if not GL_ONLY and BUILD_OGL: | |
447 | msg('Preparing OGL...') | |
448 | location = 'contrib/ogl' | |
449 | OGLLOC = opj(location, 'contrib/src/ogl') | |
450 | OGLINC = opj(location, 'contrib/include') | |
451 | ||
452 | swig_files = ['ogl.i', 'oglbasic.i', 'oglshapes.i', 'oglshapes2.i', | |
453 | 'oglcanvas.i'] | |
454 | ||
455 | swig_sources = run_swig(swig_files, location, '', PKGDIR, | |
456 | USE_SWIG, swig_force, swig_args) | |
457 | ||
458 | if IN_CVS_TREE: | |
459 | # make sure local copy of contrib files are up to date | |
460 | contrib_copy_tree(opj(CTRB_INC, 'ogl'), opj(OGLINC, 'wx/ogl')) | |
461 | contrib_copy_tree(opj(CTRB_SRC, 'ogl'), OGLLOC) | |
462 | ||
463 | ext = Extension('oglc', ['%s/basic.cpp' % OGLLOC, | |
464 | '%s/bmpshape.cpp' % OGLLOC, | |
465 | '%s/composit.cpp' % OGLLOC, | |
466 | '%s/divided.cpp' % OGLLOC, | |
467 | '%s/lines.cpp' % OGLLOC, | |
468 | '%s/misc.cpp' % OGLLOC, | |
469 | '%s/basic2.cpp' % OGLLOC, | |
470 | '%s/canvas.cpp' % OGLLOC, | |
471 | '%s/constrnt.cpp' % OGLLOC, | |
472 | '%s/drawn.cpp' % OGLLOC, | |
473 | '%s/mfutils.cpp' % OGLLOC, | |
474 | '%s/ogldiag.cpp' % OGLLOC, | |
475 | ] + swig_sources, | |
476 | ||
477 | include_dirs = [OGLINC] + includes, | |
478 | define_macros = defines, | |
479 | ||
480 | library_dirs = libdirs, | |
481 | libraries = libs, | |
482 | ||
483 | extra_compile_args = cflags, | |
484 | extra_link_args = lflags, | |
485 | ) | |
486 | ||
487 | wxpExtensions.append(ext) | |
488 | ||
489 | ||
490 | ||
491 | #---------------------------------------------------------------------- | |
492 | # Define the STC extension module | |
493 | #---------------------------------------------------------------------- | |
494 | ||
495 | if not GL_ONLY and BUILD_STC: | |
496 | msg('Preparing STC...') | |
497 | location = 'contrib/stc' | |
498 | STCLOC = opj(location, 'contrib/src/stc') | |
499 | STCINC = opj(location, 'contrib/include') | |
500 | STC_H = opj(location, 'contrib/include/wx/stc') | |
501 | ||
502 | if IN_CVS_TREE: | |
503 | # Check if gen_iface needs to be run for the wxSTC sources | |
504 | if (newer(opj(CTRB_SRC, 'stc/stc.h.in'), opj(CTRB_INC, 'stc/stc.h' )) or | |
505 | newer(opj(CTRB_SRC, 'stc/stc.cpp.in'), opj(CTRB_SRC, 'stc/stc.cpp')) or | |
506 | newer(opj(CTRB_SRC, 'stc/gen_iface.py'), opj(CTRB_SRC, 'stc/stc.cpp'))): | |
507 | ||
508 | msg('Running gen_iface.py, regenerating stc.h and stc.cpp...') | |
509 | cwd = os.getcwd() | |
510 | os.chdir(opj(CTRB_SRC, 'stc')) | |
511 | import gen_iface | |
512 | gen_iface.main([]) | |
513 | os.chdir(cwd) | |
514 | ||
515 | ||
516 | # make sure local copy of contrib files are up to date | |
517 | contrib_copy_tree(opj(CTRB_INC, 'stc'), opj(STCINC, 'wx/stc')) | |
518 | contrib_copy_tree(opj(CTRB_SRC, 'stc'), STCLOC) | |
519 | ||
520 | ||
521 | ||
522 | swig_files = ['stc_.i'] | |
523 | swig_sources = run_swig(swig_files, location, '', PKGDIR, | |
524 | USE_SWIG, swig_force, | |
525 | swig_args + ['-I'+STC_H, '-I'+location], | |
526 | [opj(STC_H, 'stc.h')]) | |
527 | ||
528 | # copy a project specific py module to the main package dir | |
529 | copy_file(opj(location, 'stc.py'), PKGDIR, update=1, verbose=0) | |
530 | ||
531 | # add some include dirs to the standard set | |
532 | stc_includes = includes[:] | |
533 | stc_includes.append('%s/scintilla/include' % STCLOC) | |
534 | stc_includes.append('%s/scintilla/src' % STCLOC) | |
535 | stc_includes.append(STCINC) | |
536 | ||
537 | # and some macro definitions | |
538 | stc_defines = defines[:] | |
539 | stc_defines.append( ('__WX__', None) ) | |
540 | stc_defines.append( ('SCI_LEXER', None) ) | |
541 | ||
542 | ||
543 | ext = Extension('stc_c', | |
544 | ['%s/scintilla/src/AutoComplete.cxx' % STCLOC, | |
545 | '%s/scintilla/src/CallTip.cxx' % STCLOC, | |
546 | '%s/scintilla/src/CellBuffer.cxx' % STCLOC, | |
547 | '%s/scintilla/src/ContractionState.cxx' % STCLOC, | |
548 | '%s/scintilla/src/Document.cxx' % STCLOC, | |
549 | '%s/scintilla/src/DocumentAccessor.cxx' % STCLOC, | |
550 | '%s/scintilla/src/Editor.cxx' % STCLOC, | |
551 | '%s/scintilla/src/Indicator.cxx' % STCLOC, | |
552 | '%s/scintilla/src/KeyMap.cxx' % STCLOC, | |
553 | '%s/scintilla/src/KeyWords.cxx' % STCLOC, | |
554 | '%s/scintilla/src/LineMarker.cxx' % STCLOC, | |
555 | '%s/scintilla/src/PropSet.cxx' % STCLOC, | |
556 | '%s/scintilla/src/RESearch.cxx' % STCLOC, | |
557 | '%s/scintilla/src/ScintillaBase.cxx' % STCLOC, | |
558 | '%s/scintilla/src/Style.cxx' % STCLOC, | |
559 | '%s/scintilla/src/UniConversion.cxx' % STCLOC, | |
560 | '%s/scintilla/src/ViewStyle.cxx' % STCLOC, | |
561 | '%s/scintilla/src/WindowAccessor.cxx' % STCLOC, | |
562 | ||
563 | '%s/scintilla/src/LexAda.cxx' % STCLOC, | |
564 | '%s/scintilla/src/LexAVE.cxx' % STCLOC, | |
565 | '%s/scintilla/src/LexConf.cxx' % STCLOC, | |
566 | '%s/scintilla/src/LexCPP.cxx' % STCLOC, | |
567 | '%s/scintilla/src/LexEiffel.cxx' % STCLOC, | |
568 | '%s/scintilla/src/LexHTML.cxx' % STCLOC, | |
569 | '%s/scintilla/src/LexLisp.cxx' % STCLOC, | |
570 | '%s/scintilla/src/LexLua.cxx' % STCLOC, | |
571 | '%s/scintilla/src/LexOthers.cxx' % STCLOC, | |
572 | '%s/scintilla/src/LexPascal.cxx' % STCLOC, | |
573 | '%s/scintilla/src/LexPerl.cxx' % STCLOC, | |
574 | '%s/scintilla/src/LexPython.cxx' % STCLOC, | |
575 | '%s/scintilla/src/LexRuby.cxx' % STCLOC, | |
576 | '%s/scintilla/src/LexSQL.cxx' % STCLOC, | |
577 | '%s/scintilla/src/LexVB.cxx' % STCLOC, | |
578 | ||
579 | '%s/PlatWX.cpp' % STCLOC, | |
580 | '%s/ScintillaWX.cpp' % STCLOC, | |
581 | '%s/stc.cpp' % STCLOC, | |
582 | ] + swig_sources, | |
583 | ||
584 | include_dirs = stc_includes, | |
585 | define_macros = stc_defines, | |
586 | ||
587 | library_dirs = libdirs, | |
588 | libraries = libs, | |
589 | ||
590 | extra_compile_args = cflags, | |
591 | extra_link_args = lflags, | |
592 | ) | |
593 | ||
594 | wxpExtensions.append(ext) | |
595 | ||
596 | ||
597 | ||
598 | #---------------------------------------------------------------------- | |
599 | # Define the IEWIN extension module (experimental) | |
600 | #---------------------------------------------------------------------- | |
601 | ||
602 | if not GL_ONLY and BUILD_IEWIN: | |
603 | msg('Preparing IEWIN...') | |
604 | location = 'contrib/iewin' | |
605 | ||
606 | swig_files = ['iewin.i', ] | |
607 | ||
608 | swig_sources = run_swig(swig_files, location, '', PKGDIR, | |
609 | USE_SWIG, swig_force, swig_args) | |
610 | ||
611 | ||
612 | ext = Extension('iewinc', ['%s/IEHtmlWin.cpp' % location, | |
613 | ] + swig_sources, | |
614 | ||
615 | include_dirs = includes, | |
616 | define_macros = defines, | |
617 | ||
618 | library_dirs = libdirs, | |
619 | libraries = libs, | |
620 | ||
621 | extra_compile_args = cflags, | |
622 | extra_link_args = lflags, | |
623 | ) | |
624 | ||
625 | wxpExtensions.append(ext) | |
626 | ||
627 | ||
628 | #---------------------------------------------------------------------- | |
629 | # Define the XRC extension module | |
630 | #---------------------------------------------------------------------- | |
631 | ||
632 | if not GL_ONLY and BUILD_XRC: | |
633 | msg('Preparing XRC...') | |
634 | location = 'contrib/xrc' | |
635 | XMLLOC = opj(location, 'contrib/src/xrc') | |
636 | XMLINC = opj(location, 'contrib/include') | |
637 | ||
638 | swig_files = ['xrc.i'] | |
639 | ||
640 | swig_sources = run_swig(swig_files, location, '', PKGDIR, | |
641 | USE_SWIG, swig_force, swig_args) | |
642 | ||
643 | xmlres_includes = includes[:] | |
644 | xmlres_includes.append('%s/expat/xmlparse' % XMLLOC) | |
645 | xmlres_includes.append('%s/expat/xmltok' % XMLLOC) | |
646 | xmlres_includes.append(XMLINC) | |
647 | ||
648 | ||
649 | # make sure local copy of contrib files are up to date | |
650 | if IN_CVS_TREE: | |
651 | contrib_copy_tree(opj(CTRB_INC, 'xrc'), opj(XMLINC, 'wx/xrc')) | |
652 | contrib_copy_tree(opj(CTRB_SRC, 'xrc'), XMLLOC) | |
653 | ||
654 | ext = Extension('xrcc', ['%s/expat/xmlparse/xmlparse.c' % XMLLOC, | |
655 | '%s/expat/xmltok/xmlrole.c' % XMLLOC, | |
656 | '%s/expat/xmltok/xmltok.c' % XMLLOC, | |
657 | ||
658 | '%s/xh_bmp.cpp' % XMLLOC, | |
659 | '%s/xh_bmpbt.cpp' % XMLLOC, | |
660 | '%s/xh_bttn.cpp' % XMLLOC, | |
661 | '%s/xh_cald.cpp' % XMLLOC, | |
662 | '%s/xh_chckb.cpp' % XMLLOC, | |
663 | ||
664 | '%s/xh_chckl.cpp' % XMLLOC, | |
665 | '%s/xh_choic.cpp' % XMLLOC, | |
666 | '%s/xh_combo.cpp' % XMLLOC, | |
667 | '%s/xh_dlg.cpp' % XMLLOC, | |
668 | '%s/xh_frame.cpp' % XMLLOC, | |
669 | ||
670 | '%s/xh_gauge.cpp' % XMLLOC, | |
671 | '%s/xh_html.cpp' % XMLLOC, | |
672 | '%s/xh_listb.cpp' % XMLLOC, | |
673 | '%s/xh_listc.cpp' % XMLLOC, | |
674 | '%s/xh_menu.cpp' % XMLLOC, | |
675 | ||
676 | '%s/xh_notbk.cpp' % XMLLOC, | |
677 | '%s/xh_panel.cpp' % XMLLOC, | |
678 | '%s/xh_radbt.cpp' % XMLLOC, | |
679 | '%s/xh_radbx.cpp' % XMLLOC, | |
680 | '%s/xh_scrol.cpp' % XMLLOC, | |
681 | ||
682 | '%s/xh_sizer.cpp' % XMLLOC, | |
683 | '%s/xh_slidr.cpp' % XMLLOC, | |
684 | '%s/xh_spin.cpp' % XMLLOC, | |
685 | '%s/xh_stbmp.cpp' % XMLLOC, | |
686 | '%s/xh_stbox.cpp' % XMLLOC, | |
687 | ||
688 | '%s/xh_stlin.cpp' % XMLLOC, | |
689 | '%s/xh_sttxt.cpp' % XMLLOC, | |
690 | '%s/xh_text.cpp' % XMLLOC, | |
691 | '%s/xh_toolb.cpp' % XMLLOC, | |
692 | '%s/xh_tree.cpp' % XMLLOC, | |
693 | ||
694 | '%s/xh_unkwn.cpp' % XMLLOC, | |
695 | '%s/xml.cpp' % XMLLOC, | |
696 | '%s/xmlbin.cpp' % XMLLOC, | |
697 | '%s/xmlbinz.cpp' % XMLLOC, | |
698 | '%s/xmlexpat.cpp' % XMLLOC, | |
699 | ||
700 | '%s/xmlres.cpp' % XMLLOC, | |
701 | '%s/xmlrsall.cpp' % XMLLOC, | |
702 | '%s/xmlwrite.cpp' % XMLLOC, | |
703 | ||
704 | ] + swig_sources, | |
705 | ||
706 | include_dirs = xmlres_includes, | |
707 | define_macros = defines, | |
708 | ||
709 | library_dirs = libdirs, | |
710 | libraries = libs, | |
711 | ||
712 | extra_compile_args = cflags, | |
713 | extra_link_args = lflags, | |
714 | ) | |
715 | ||
716 | wxpExtensions.append(ext) | |
717 | ||
718 | ||
719 | ||
720 | ||
721 | #---------------------------------------------------------------------- | |
722 | # Do the Setup/Build/Install/Whatever | |
723 | #---------------------------------------------------------------------- | |
724 | ||
725 | if __name__ == "__main__": | |
726 | if not GL_ONLY: | |
727 | setup(name = PKGDIR, | |
728 | version = VERSION, | |
729 | description = DESCRIPTION, | |
730 | long_description = LONG_DESCRIPTION, | |
731 | author = AUTHOR, | |
732 | author_email = AUTHOR_EMAIL, | |
733 | url = URL, | |
734 | licence = LICENCE, | |
735 | ||
736 | packages = [PKGDIR, | |
737 | PKGDIR+'.lib', | |
738 | PKGDIR+'.lib.editor', | |
739 | PKGDIR+'.lib.mixins' | |
740 | ], | |
741 | ||
742 | ext_package = PKGDIR, | |
743 | ext_modules = wxpExtensions, | |
744 | ) | |
745 | ||
746 | else: | |
747 | ||
748 | setup(name = "wxPython-gl", | |
749 | version = VERSION, | |
750 | description = "wxGLCanvas class for wxPython", | |
751 | author = AUTHOR, | |
752 | author_email = AUTHOR_EMAIL, | |
753 | url = URL, | |
754 | licence = LICENCE, | |
755 | ||
756 | py_modules = [ "wxPython.glcanvas" ], | |
757 | ||
758 | ext_package = PKGDIR, | |
759 | ext_modules = wxpExtensions, | |
760 | ) | |
761 | ||
762 | ||
763 | ||
764 | ||
765 | #---------------------------------------------------------------------- | |
766 | #---------------------------------------------------------------------- |