]>
Commit | Line | Data |
---|---|---|
1 | #!/usr/bin/env python | |
2 | #---------------------------------------------------------------------- | |
3 | ||
4 | import sys, os, glob, fnmatch, tempfile | |
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 | from distutils.spawn import spawn | |
10 | from distutils.command.install_data import install_data | |
11 | ||
12 | #---------------------------------------------------------------------- | |
13 | # flags and values that affect this script | |
14 | #---------------------------------------------------------------------- | |
15 | ||
16 | VER_MAJOR = 2 # The first three must match wxWindows | |
17 | VER_MINOR = 5 | |
18 | VER_RELEASE = 1 | |
19 | VER_SUBREL = 0 # wxPython release num for x.y.z release of wxWindows | |
20 | VER_FLAGS = "p8" # release flags, such as prerelease num, unicode, etc. | |
21 | ||
22 | DESCRIPTION = "Cross platform GUI toolkit for Python" | |
23 | AUTHOR = "Robin Dunn" | |
24 | AUTHOR_EMAIL = "Robin Dunn <robin@alldunn.com>" | |
25 | URL = "http://wxPython.org/" | |
26 | DOWNLOAD_URL = "http://wxPython.org/download.php" | |
27 | LICENSE = "wxWindows Library License (LGPL derivative)" | |
28 | PLATFORMS = "WIN32,OSX,POSIX" | |
29 | KEYWORDS = "GUI,wx,wxWindows,cross-platform" | |
30 | ||
31 | LONG_DESCRIPTION = """\ | |
32 | wxPython is a GUI toolkit for Python that is a wrapper around the | |
33 | wxWindows C++ GUI library. wxPython provides a large variety of | |
34 | window types and controls, all implemented with a native look and | |
35 | feel (by using the native widgets) on the platforms it is supported | |
36 | on. | |
37 | """ | |
38 | ||
39 | CLASSIFIERS = """\ | |
40 | Development Status :: 6 - Mature | |
41 | Environment :: MacOS X :: Carbon | |
42 | Environment :: Win32 (MS Windows) | |
43 | Environment :: X11 Applications :: GTK | |
44 | Intended Audience :: Developers | |
45 | License :: OSI Approved | |
46 | Operating System :: MacOS :: MacOS X | |
47 | Operating System :: Microsoft :: Windows :: Windows 95/98/2000 | |
48 | Operating System :: POSIX | |
49 | Programming Language :: Python | |
50 | Topic :: Software Development :: User Interfaces | |
51 | """ | |
52 | ||
53 | ## License :: OSI Approved :: wxWindows Library Licence | |
54 | ||
55 | ||
56 | # Config values below this point can be reset on the setup.py command line. | |
57 | ||
58 | BUILD_GLCANVAS = 1 # If true, build the contrib/glcanvas extension module | |
59 | BUILD_OGL = 1 # If true, build the contrib/ogl extension module | |
60 | BUILD_STC = 1 # If true, build the contrib/stc extension module | |
61 | BUILD_XRC = 1 # XML based resource system | |
62 | BUILD_GIZMOS = 1 # Build a module for the gizmos contrib library | |
63 | BUILD_DLLWIDGET = 0# Build a module that enables unknown wx widgets | |
64 | # to be loaded from a DLL and to be used from Python. | |
65 | ||
66 | # Internet Explorer wrapper (experimental) | |
67 | BUILD_IEWIN = (os.name == 'nt') | |
68 | ||
69 | ||
70 | CORE_ONLY = 0 # if true, don't build any of the above | |
71 | ||
72 | PREP_ONLY = 0 # Only run the prepatory steps, not the actual build. | |
73 | ||
74 | USE_SWIG = 0 # Should we actually execute SWIG, or just use the | |
75 | # files already in the distribution? | |
76 | ||
77 | SWIG = "swig" # The swig executable to use. | |
78 | ||
79 | BUILD_RENAMERS = 1 # Should we build the renamer modules too? | |
80 | ||
81 | UNICODE = 0 # This will pass the 'wxUSE_UNICODE' flag to SWIG and | |
82 | # will ensure that the right headers are found and the | |
83 | # right libs are linked. | |
84 | ||
85 | UNDEF_NDEBUG = 1 # Python 2.2 on Unix/Linux by default defines NDEBUG, | |
86 | # and distutils will pick this up and use it on the | |
87 | # compile command-line for the extensions. This could | |
88 | # conflict with how wxWindows was built. If NDEBUG is | |
89 | # set then wxWindows' __WXDEBUG__ setting will be turned | |
90 | # off. If wxWindows was actually built with it turned | |
91 | # on then you end up with mismatched class structures, | |
92 | # and wxPython will crash. | |
93 | ||
94 | NO_SCRIPTS = 0 # Don't install the tool scripts | |
95 | ||
96 | WX_CONFIG = None # Usually you shouldn't need to touch this, but you can set | |
97 | # it to pass an alternate version of wx-config or alternate | |
98 | # flags, eg. as required by the .deb in-tree build. By | |
99 | # default a wx-config command will be assembled based on | |
100 | # version, port, etc. and it will be looked for on the | |
101 | # default $PATH. | |
102 | ||
103 | WXPORT = 'gtk' # On Linux/Unix there are several ports of wxWindows available. | |
104 | # Setting this value lets you select which will be used for | |
105 | # the wxPython build. Possibilites are 'gtk', 'gtk2' and | |
106 | # 'x11'. Curently only gtk and gtk2 works. | |
107 | ||
108 | BUILD_BASE = "build" # Directory to use for temporary build files. | |
109 | ||
110 | ||
111 | ||
112 | # Some MSW build settings | |
113 | ||
114 | FINAL = 0 # Mirrors use of same flag in wx makefiles, | |
115 | # (0 or 1 only) should probably find a way to | |
116 | # autodetect this... | |
117 | ||
118 | HYBRID = 1 # If set and not debug or FINAL, then build a | |
119 | # hybrid extension that can be used by the | |
120 | # non-debug version of python, but contains | |
121 | # debugging symbols for wxWindows and wxPython. | |
122 | # wxWindows must have been built with /MD, not /MDd | |
123 | # (using FINAL=hybrid will do it.) | |
124 | ||
125 | # Version part of wxWindows LIB/DLL names | |
126 | WXDLLVER = '%d%d' % (VER_MAJOR, VER_MINOR) | |
127 | ||
128 | ||
129 | #---------------------------------------------------------------------- | |
130 | ||
131 | def msg(text): | |
132 | if __name__ == "__main__": | |
133 | print text | |
134 | ||
135 | ||
136 | def opj(*args): | |
137 | path = apply(os.path.join, args) | |
138 | return os.path.normpath(path) | |
139 | ||
140 | ||
141 | def libFlag(): | |
142 | if FINAL: | |
143 | rv = '' | |
144 | elif HYBRID: | |
145 | rv = 'h' | |
146 | else: | |
147 | rv = 'd' | |
148 | if UNICODE: | |
149 | rv = 'u' + rv | |
150 | return rv | |
151 | ||
152 | ||
153 | #---------------------------------------------------------------------- | |
154 | # Some other globals | |
155 | #---------------------------------------------------------------------- | |
156 | ||
157 | PKGDIR = 'wx' | |
158 | wxpExtensions = [] | |
159 | DATA_FILES = [] | |
160 | ||
161 | force = '--force' in sys.argv or '-f' in sys.argv | |
162 | debug = '--debug' in sys.argv or '-g' in sys.argv | |
163 | cleaning = 'clean' in sys.argv | |
164 | ||
165 | ||
166 | # change the PORT default for wxMac | |
167 | if sys.platform[:6] == "darwin": | |
168 | WXPORT = 'mac' | |
169 | ||
170 | # and do the same for wxMSW, just for consistency | |
171 | if os.name == 'nt': | |
172 | WXPORT = 'msw' | |
173 | ||
174 | ||
175 | #---------------------------------------------------------------------- | |
176 | # Check for build flags on the command line | |
177 | #---------------------------------------------------------------------- | |
178 | ||
179 | # Boolean (int) flags | |
180 | for flag in ['BUILD_GLCANVAS', 'BUILD_OGL', 'BUILD_STC', 'BUILD_XRC', | |
181 | 'BUILD_GIZMOS', 'BUILD_DLLWIDGET', 'BUILD_IEWIN', | |
182 | 'CORE_ONLY', 'PREP_ONLY', 'USE_SWIG', 'UNICODE', | |
183 | 'UNDEF_NDEBUG', 'NO_SCRIPTS', 'BUILD_RENAMERS', | |
184 | 'FINAL', 'HYBRID', ]: | |
185 | for x in range(len(sys.argv)): | |
186 | if sys.argv[x].find(flag) == 0: | |
187 | pos = sys.argv[x].find('=') + 1 | |
188 | if pos > 0: | |
189 | vars()[flag] = eval(sys.argv[x][pos:]) | |
190 | sys.argv[x] = '' | |
191 | ||
192 | # String options | |
193 | for option in ['WX_CONFIG', 'WXDLLVER', 'BUILD_BASE', 'WXPORT', 'SWIG']: | |
194 | for x in range(len(sys.argv)): | |
195 | if sys.argv[x].find(option) == 0: | |
196 | pos = sys.argv[x].find('=') + 1 | |
197 | if pos > 0: | |
198 | vars()[option] = sys.argv[x][pos:] | |
199 | sys.argv[x] = '' | |
200 | ||
201 | sys.argv = filter(None, sys.argv) | |
202 | ||
203 | ||
204 | #---------------------------------------------------------------------- | |
205 | # some helper functions | |
206 | #---------------------------------------------------------------------- | |
207 | ||
208 | def Verify_WX_CONFIG(): | |
209 | """ Called below for the builds that need wx-config, | |
210 | if WX_CONFIG is not set then tries to select the specific | |
211 | wx*-config script based on build options. If not found | |
212 | then it defaults to 'wx-config'. | |
213 | """ | |
214 | # if WX_CONFIG hasn't been set to an explicit value then construct one. | |
215 | global WX_CONFIG | |
216 | if WX_CONFIG is None: | |
217 | if debug: # TODO: Fix this. wxPython's --debug shouldn't be tied to wxWindows... | |
218 | df = 'd' | |
219 | else: | |
220 | df = '' | |
221 | if UNICODE: | |
222 | uf = 'u' | |
223 | else: | |
224 | uf = '' | |
225 | ver2 = "%s.%s" % (VER_MAJOR, VER_MINOR) | |
226 | port = WXPORT | |
227 | if port == "x11": | |
228 | port = "x11univ" | |
229 | WX_CONFIG = 'wx%s%s%s-%s-config' % (port, uf, df, ver2) | |
230 | ||
231 | searchpath = os.environ["PATH"] | |
232 | for p in searchpath.split(':'): | |
233 | fp = os.path.join(p, WX_CONFIG) | |
234 | if os.path.exists(fp) and os.access(fp, os.X_OK): | |
235 | # success | |
236 | msg("Found wx-config: " + fp) | |
237 | WX_CONFIG = fp | |
238 | break | |
239 | else: | |
240 | msg("WX_CONFIG not specified and %s not found on $PATH " | |
241 | "defaulting to \"wx-config\"" % WX_CONFIG) | |
242 | WX_CONFIG = 'wx-config' | |
243 | ||
244 | ||
245 | ||
246 | def run_swig(files, dir, gendir, package, USE_SWIG, force, swig_args, swig_deps=[]): | |
247 | """Run SWIG the way I want it done""" | |
248 | ||
249 | if not os.path.exists(os.path.join(dir, gendir)): | |
250 | os.mkdir(os.path.join(dir, gendir)) | |
251 | ||
252 | if not os.path.exists(os.path.join("docs", "xml-raw")): | |
253 | os.mkdir(os.path.join("docs", "xml-raw")) | |
254 | ||
255 | sources = [] | |
256 | ||
257 | for file in files: | |
258 | basefile = os.path.splitext(file)[0] | |
259 | i_file = os.path.join(dir, file) | |
260 | py_file = os.path.join(dir, gendir, basefile+'.py') | |
261 | cpp_file = os.path.join(dir, gendir, basefile+'_wrap.cpp') | |
262 | xml_file = os.path.join("docs", "xml-raw", basefile+'_swig.xml') | |
263 | ||
264 | sources.append(cpp_file) | |
265 | ||
266 | if not cleaning and USE_SWIG: | |
267 | for dep in swig_deps: | |
268 | if newer(dep, py_file) or newer(dep, cpp_file): | |
269 | force = 1 | |
270 | break | |
271 | ||
272 | if force or newer(i_file, py_file) or newer(i_file, cpp_file): | |
273 | ## we need forward slashes here even on win32 | |
274 | #cpp_file = opj(cpp_file) #'/'.join(cpp_file.split('\\')) | |
275 | #i_file = opj(i_file) #'/'.join(i_file.split('\\')) | |
276 | ||
277 | if BUILD_RENAMERS: | |
278 | #tempfile.tempdir = sourcePath | |
279 | xmltemp = tempfile.mktemp('.xml') | |
280 | ||
281 | # First run swig to produce the XML file, adding | |
282 | # an extra -D that prevents the old rename | |
283 | # directives from being used | |
284 | cmd = [ swig_cmd ] + swig_args + \ | |
285 | [ '-DBUILDING_RENAMERS', '-xmlout', xmltemp ] + \ | |
286 | ['-I'+dir, '-o', cpp_file, i_file] | |
287 | msg(' '.join(cmd)) | |
288 | spawn(cmd) | |
289 | ||
290 | # Next run build_renamers to process the XML | |
291 | cmd = [ sys.executable, '-u', | |
292 | './distrib/build_renamers.py', dir, basefile, xmltemp] | |
293 | msg(' '.join(cmd)) | |
294 | spawn(cmd) | |
295 | os.remove(xmltemp) | |
296 | ||
297 | # Then run swig for real | |
298 | cmd = [ swig_cmd ] + swig_args + ['-I'+dir, '-o', cpp_file, | |
299 | '-xmlout', xml_file, i_file] | |
300 | msg(' '.join(cmd)) | |
301 | spawn(cmd) | |
302 | ||
303 | ||
304 | # copy the generated python file to the package directory | |
305 | copy_file(py_file, package, update=not force, verbose=0) | |
306 | ||
307 | return sources | |
308 | ||
309 | ||
310 | ||
311 | def contrib_copy_tree(src, dest, verbose=0): | |
312 | """Update local copies of wxWindows contrib files""" | |
313 | from distutils.dir_util import mkpath, copy_tree | |
314 | ||
315 | mkpath(dest, verbose=verbose) | |
316 | copy_tree(src, dest, update=1, verbose=verbose) | |
317 | ||
318 | ||
319 | ||
320 | class smart_install_data(install_data): | |
321 | def run(self): | |
322 | #need to change self.install_dir to the actual library dir | |
323 | install_cmd = self.get_finalized_command('install') | |
324 | self.install_dir = getattr(install_cmd, 'install_lib') | |
325 | return install_data.run(self) | |
326 | ||
327 | ||
328 | def build_locale_dir(destdir, verbose=1): | |
329 | """Build a locale dir under the wxPython package for MSW""" | |
330 | moFiles = glob.glob(opj(WXDIR, 'locale', '*.mo')) | |
331 | for src in moFiles: | |
332 | lang = os.path.splitext(os.path.basename(src))[0] | |
333 | dest = opj(destdir, lang, 'LC_MESSAGES') | |
334 | mkpath(dest, verbose=verbose) | |
335 | copy_file(src, opj(dest, 'wxstd.mo'), update=1, verbose=verbose) | |
336 | ||
337 | ||
338 | def build_locale_list(srcdir): | |
339 | # get a list of all files under the srcdir, to be used for install_data | |
340 | def walk_helper(lst, dirname, files): | |
341 | for f in files: | |
342 | filename = opj(dirname, f) | |
343 | if not os.path.isdir(filename): | |
344 | lst.append( (dirname, [filename]) ) | |
345 | file_list = [] | |
346 | os.path.walk(srcdir, walk_helper, file_list) | |
347 | return file_list | |
348 | ||
349 | ||
350 | def find_data_files(srcdir, *wildcards): | |
351 | # get a list of all files under the srcdir matching wildcards, | |
352 | # returned in a format to be used for install_data | |
353 | ||
354 | def walk_helper(arg, dirname, files): | |
355 | names = [] | |
356 | lst, wildcards = arg | |
357 | for wc in wildcards: | |
358 | for f in files: | |
359 | filename = opj(dirname, f) | |
360 | if fnmatch.fnmatch(filename, wc) and not os.path.isdir(filename): | |
361 | names.append(filename) | |
362 | if names: | |
363 | lst.append( (dirname, names ) ) | |
364 | ||
365 | file_list = [] | |
366 | os.path.walk(srcdir, walk_helper, (file_list, wildcards)) | |
367 | return file_list | |
368 | ||
369 | ||
370 | def makeLibName(name): | |
371 | if os.name == 'posix': | |
372 | libname = '%s_%s-%s' % (WXBASENAME, name, WXRELEASE) | |
373 | else: | |
374 | libname = 'wxmsw%s%s_%s' % (WXDLLVER, libFlag(), name) | |
375 | ||
376 | return [libname] | |
377 | ||
378 | ||
379 | ||
380 | def adjustCFLAGS(cflags, defines, includes): | |
381 | '''Extrace the raw -I, -D, and -U flags and put them into | |
382 | defines and includes as needed.''' | |
383 | newCFLAGS = [] | |
384 | for flag in cflags: | |
385 | if flag[:2] == '-I': | |
386 | includes.append(flag[2:]) | |
387 | elif flag[:2] == '-D': | |
388 | flag = flag[2:] | |
389 | if flag.find('=') == -1: | |
390 | defines.append( (flag, None) ) | |
391 | else: | |
392 | defines.append( tuple(flag.split('=')) ) | |
393 | elif flag[:2] == '-U': | |
394 | defines.append( (flag[2:], ) ) | |
395 | else: | |
396 | newCFLAGS.append(flag) | |
397 | return newCFLAGS | |
398 | ||
399 | ||
400 | ||
401 | def adjustLFLAGS(lfags, libdirs, libs): | |
402 | '''Extrace the -L and -l flags and put them in libdirs and libs as needed''' | |
403 | newLFLAGS = [] | |
404 | for flag in lflags: | |
405 | if flag[:2] == '-L': | |
406 | libdirs.append(flag[2:]) | |
407 | elif flag[:2] == '-l': | |
408 | libs.append(flag[2:]) | |
409 | else: | |
410 | newLFLAGS.append(flag) | |
411 | ||
412 | return newLFLAGS | |
413 | ||
414 | #---------------------------------------------------------------------- | |
415 | # sanity checks | |
416 | ||
417 | if CORE_ONLY: | |
418 | BUILD_GLCANVAS = 0 | |
419 | BUILD_OGL = 0 | |
420 | BUILD_STC = 0 | |
421 | BUILD_XRC = 0 | |
422 | BUILD_GIZMOS = 0 | |
423 | BUILD_DLLWIDGET = 0 | |
424 | BUILD_IEWIN = 0 | |
425 | ||
426 | if debug: | |
427 | FINAL = 0 | |
428 | HYBRID = 0 | |
429 | ||
430 | if FINAL: | |
431 | HYBRID = 0 | |
432 | ||
433 | if UNICODE and WXPORT not in ['msw', 'gtk2']: | |
434 | raise SystemExit, "UNICODE mode not currently supported on this WXPORT: "+WXPORT | |
435 | ||
436 | ||
437 | #---------------------------------------------------------------------- | |
438 | # Setup some platform specific stuff | |
439 | #---------------------------------------------------------------------- | |
440 | ||
441 | if os.name == 'nt': | |
442 | # Set compile flags and such for MSVC. These values are derived | |
443 | # from the wxWindows makefiles for MSVC, other compilers settings | |
444 | # will probably vary... | |
445 | if os.environ.has_key('WXWIN'): | |
446 | WXDIR = os.environ['WXWIN'] | |
447 | else: | |
448 | msg("WARNING: WXWIN not set in environment.") | |
449 | WXDIR = '..' # assumes in CVS tree | |
450 | WXPLAT = '__WXMSW__' | |
451 | GENDIR = 'msw' | |
452 | ||
453 | includes = ['include', 'src', | |
454 | opj(WXDIR, 'lib', 'vc_dll', 'msw' + libFlag()), | |
455 | opj(WXDIR, 'include'), | |
456 | opj(WXDIR, 'contrib', 'include'), | |
457 | ] | |
458 | ||
459 | defines = [ ('WIN32', None), | |
460 | ('_WINDOWS', None), | |
461 | ||
462 | (WXPLAT, None), | |
463 | ('WXUSINGDLL', '1'), | |
464 | ||
465 | ('SWIG_GLOBAL', None), | |
466 | ('WXP_USE_THREAD', '1'), | |
467 | ] | |
468 | ||
469 | if UNDEF_NDEBUG: | |
470 | defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef | |
471 | ||
472 | if HYBRID: | |
473 | defines.append( ('__NO_VC_CRTDBG__', None) ) | |
474 | ||
475 | if not FINAL or HYBRID: | |
476 | defines.append( ('__WXDEBUG__', None) ) | |
477 | ||
478 | libdirs = [ opj(WXDIR, 'lib', 'vc_dll') ] | |
479 | libs = [ 'wxbase' + WXDLLVER + libFlag(), # TODO: trim this down to what is really needed for the core | |
480 | 'wxbase' + WXDLLVER + libFlag() + '_net', | |
481 | 'wxbase' + WXDLLVER + libFlag() + '_xml', | |
482 | makeLibName('core')[0], | |
483 | makeLibName('adv')[0], | |
484 | makeLibName('html')[0], | |
485 | ] | |
486 | ||
487 | libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32', | |
488 | 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32', | |
489 | 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4', | |
490 | 'advapi32', 'wsock32'] | |
491 | ||
492 | ||
493 | cflags = [ '/Gy', | |
494 | # '/GX-' # workaround for internal compiler error in MSVC on some machines | |
495 | ] | |
496 | lflags = None | |
497 | ||
498 | # Other MSVC flags... | |
499 | # Too bad I don't remember why I was playing with these, can they be removed? | |
500 | if FINAL: | |
501 | pass #cflags = cflags + ['/O1'] | |
502 | elif HYBRID : | |
503 | pass #cflags = cflags + ['/Ox'] | |
504 | else: | |
505 | pass # cflags = cflags + ['/Od', '/Z7'] | |
506 | # lflags = ['/DEBUG', ] | |
507 | ||
508 | ||
509 | ||
510 | #---------------------------------------------------------------------- | |
511 | ||
512 | elif os.name == 'posix': | |
513 | WXDIR = '..' | |
514 | includes = ['include', 'src'] | |
515 | defines = [('SWIG_GLOBAL', None), | |
516 | ('HAVE_CONFIG_H', None), | |
517 | ('WXP_USE_THREAD', '1'), | |
518 | ] | |
519 | if UNDEF_NDEBUG: | |
520 | defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef | |
521 | ||
522 | Verify_WX_CONFIG() | |
523 | ||
524 | libdirs = [] | |
525 | libs = [] | |
526 | ||
527 | # If you get unresolved symbol errors on Solaris and are using gcc, then | |
528 | # uncomment this block to add the right flags to the link step and build | |
529 | # again. | |
530 | ## if os.uname()[0] == 'SunOS': | |
531 | ## libs.append('gcc') | |
532 | ## libdirs.append(commands.getoutput("gcc -print-search-dirs | grep '^install' | awk '{print $2}'")[:-1]) | |
533 | ||
534 | cflags = os.popen(WX_CONFIG + ' --cxxflags', 'r').read()[:-1] | |
535 | cflags = cflags.split() | |
536 | if debug: | |
537 | cflags.append('-g') | |
538 | cflags.append('-O0') | |
539 | else: | |
540 | cflags.append('-O3') | |
541 | ||
542 | lflags = os.popen(WX_CONFIG + ' --libs', 'r').read()[:-1] | |
543 | lflags = lflags.split() | |
544 | ||
545 | WXBASENAME = os.popen(WX_CONFIG + ' --basename').read()[:-1] | |
546 | WXRELEASE = os.popen(WX_CONFIG + ' --release').read()[:-1] | |
547 | WXPREFIX = os.popen(WX_CONFIG + ' --prefix').read()[:-1] | |
548 | ||
549 | ||
550 | if sys.platform[:6] == "darwin": | |
551 | # Flags and such for a Darwin (Max OS X) build of Python | |
552 | WXPLAT = '__WXMAC__' | |
553 | GENDIR = 'mac' | |
554 | libs = ['stdc++'] | |
555 | NO_SCRIPTS = 1 | |
556 | ||
557 | ||
558 | else: | |
559 | # Set flags for other Unix type platforms | |
560 | GENDIR = WXPORT | |
561 | ||
562 | if WXPORT == 'gtk': | |
563 | WXPLAT = '__WXGTK__' | |
564 | portcfg = os.popen('gtk-config --cflags', 'r').read()[:-1] | |
565 | elif WXPORT == 'gtk2': | |
566 | WXPLAT = '__WXGTK__' | |
567 | GENDIR = 'gtk' # no code differences so use the same generated sources | |
568 | portcfg = os.popen('pkg-config gtk+-2.0 --cflags', 'r').read()[:-1] | |
569 | BUILD_BASE = BUILD_BASE + '-' + WXPORT | |
570 | elif WXPORT == 'x11': | |
571 | WXPLAT = '__WXX11__' | |
572 | portcfg = '' | |
573 | BUILD_BASE = BUILD_BASE + '-' + WXPORT | |
574 | else: | |
575 | raise SystemExit, "Unknown WXPORT value: " + WXPORT | |
576 | ||
577 | cflags += portcfg.split() | |
578 | ||
579 | # Some distros (e.g. Mandrake) put libGLU in /usr/X11R6/lib, but | |
580 | # wx-config doesn't output that for some reason. For now, just | |
581 | # add it unconditionally but we should really check if the lib is | |
582 | # really found there or wx-config should be fixed. | |
583 | libdirs.append("/usr/X11R6/lib") | |
584 | ||
585 | ||
586 | # Move the various -I, -D, etc. flags we got from the *config scripts | |
587 | # into the distutils lists. | |
588 | cflags = adjustCFLAGS(cflags, defines, includes) | |
589 | lflags = adjustLFLAGS(lflags, libdirs, libs) | |
590 | ||
591 | ||
592 | #---------------------------------------------------------------------- | |
593 | else: | |
594 | raise 'Sorry Charlie, platform not supported...' | |
595 | ||
596 | ||
597 | #---------------------------------------------------------------------- | |
598 | # post platform setup checks and tweaks, create the full version string | |
599 | #---------------------------------------------------------------------- | |
600 | ||
601 | if UNICODE: | |
602 | BUILD_BASE = BUILD_BASE + '.unicode' | |
603 | VER_FLAGS += 'u' | |
604 | ||
605 | ||
606 | VERSION = "%s.%s.%s.%s%s" % (VER_MAJOR, VER_MINOR, VER_RELEASE, | |
607 | VER_SUBREL, VER_FLAGS) | |
608 | ||
609 | #---------------------------------------------------------------------- | |
610 | # Update the version file | |
611 | #---------------------------------------------------------------------- | |
612 | ||
613 | # Unconditionally updated since the version string can change based | |
614 | # on the UNICODE flag | |
615 | open('src/__version__.py', 'w').write("""\ | |
616 | # This file was generated by setup.py... | |
617 | ||
618 | VERSION_STRING = '%(VERSION)s' | |
619 | MAJOR_VERSION = %(VER_MAJOR)s | |
620 | MINOR_VERSION = %(VER_MINOR)s | |
621 | RELEASE_VERSION = %(VER_RELEASE)s | |
622 | SUBREL_VERSION = %(VER_SUBREL)s | |
623 | ||
624 | VERSION = (MAJOR_VERSION, MINOR_VERSION, RELEASE_VERSION, | |
625 | SUBREL_VERSION, '%(VER_FLAGS)s') | |
626 | ||
627 | RELEASE_NUMBER = RELEASE_VERSION # for compatibility | |
628 | """ % globals()) | |
629 | ||
630 | ||
631 | ||
632 | ||
633 | #---------------------------------------------------------------------- | |
634 | # SWIG defaults | |
635 | #---------------------------------------------------------------------- | |
636 | ||
637 | swig_cmd = SWIG | |
638 | swig_force = force | |
639 | swig_args = ['-c++', | |
640 | '-Wall', | |
641 | '-nodefault', | |
642 | ||
643 | ## '-xml', | |
644 | ||
645 | '-python', | |
646 | '-keyword', | |
647 | '-new_repr', | |
648 | '-modern', | |
649 | ||
650 | '-I./src', | |
651 | '-D'+WXPLAT, | |
652 | '-noruntime' | |
653 | ] | |
654 | if UNICODE: | |
655 | swig_args.append('-DwxUSE_UNICODE') | |
656 | ||
657 | swig_deps = [ 'src/my_typemaps.i', | |
658 | 'src/common.swg', | |
659 | 'src/pyrun.swg', | |
660 | ] | |
661 | ||
662 | depends = [ #'include/wx/wxPython/wxPython.h', | |
663 | #'include/wx/wxPython/wxPython_int.h', | |
664 | #'src/pyclasses.h', | |
665 | ] | |
666 | ||
667 | ||
668 | #---------------------------------------------------------------------- | |
669 | # Define the CORE extension module | |
670 | #---------------------------------------------------------------------- | |
671 | ||
672 | msg('Preparing CORE...') | |
673 | swig_sources = run_swig(['core.i'], 'src', GENDIR, PKGDIR, | |
674 | USE_SWIG, swig_force, swig_args, swig_deps + | |
675 | [ 'src/_accel.i', | |
676 | 'src/_app.i', | |
677 | 'src/_app_ex.py', | |
678 | 'src/_constraints.i', | |
679 | 'src/_core_api.i', | |
680 | 'src/_core_ex.py', | |
681 | 'src/_core_rename.i', | |
682 | 'src/_core_reverse.txt', | |
683 | 'src/_defs.i', | |
684 | 'src/_event.i', | |
685 | 'src/_event_ex.py', | |
686 | 'src/_evthandler.i', | |
687 | 'src/_filesys.i', | |
688 | 'src/_gdicmn.i', | |
689 | 'src/_image.i', | |
690 | 'src/_menu.i', | |
691 | 'src/_obj.i', | |
692 | 'src/_sizers.i', | |
693 | 'src/_gbsizer.i', | |
694 | 'src/_streams.i', | |
695 | 'src/_validator.i', | |
696 | 'src/_window.i', | |
697 | 'src/_control.i', | |
698 | ]) | |
699 | ||
700 | copy_file('src/__init__.py', PKGDIR, update=1, verbose=0) | |
701 | copy_file('src/__version__.py', PKGDIR, update=1, verbose=0) | |
702 | ||
703 | ||
704 | # update the license files | |
705 | mkpath('licence') | |
706 | for file in ['preamble.txt', 'licence.txt', 'licendoc.txt', 'lgpl.txt']: | |
707 | copy_file(opj(WXDIR, 'docs', file), opj('licence',file), update=1, verbose=0) | |
708 | ||
709 | ||
710 | if os.name == 'nt': | |
711 | build_locale_dir(opj(PKGDIR, 'locale')) | |
712 | DATA_FILES += build_locale_list(opj(PKGDIR, 'locale')) | |
713 | ||
714 | ||
715 | if os.name == 'nt': | |
716 | rc_file = ['src/wxc.rc'] | |
717 | else: | |
718 | rc_file = [] | |
719 | ||
720 | ||
721 | ext = Extension('_core', ['src/helpers.cpp', | |
722 | 'src/libpy.c', | |
723 | ] + rc_file + swig_sources, | |
724 | ||
725 | include_dirs = includes, | |
726 | define_macros = defines, | |
727 | ||
728 | library_dirs = libdirs, | |
729 | libraries = libs, | |
730 | ||
731 | extra_compile_args = cflags, | |
732 | extra_link_args = lflags, | |
733 | ||
734 | depends = depends | |
735 | ) | |
736 | wxpExtensions.append(ext) | |
737 | ||
738 | ||
739 | ||
740 | ||
741 | ||
742 | # Extension for the GDI module | |
743 | swig_sources = run_swig(['gdi.i'], 'src', GENDIR, PKGDIR, | |
744 | USE_SWIG, swig_force, swig_args, swig_deps + | |
745 | ['src/_gdi_rename.i', | |
746 | 'src/_bitmap.i', 'src/_brush.i', | |
747 | 'src/_colour.i', 'src/_cursor.i', | |
748 | 'src/_dc.i', 'src/_font.i', | |
749 | 'src/_gdiobj.i', 'src/_icon.i', | |
750 | 'src/_imaglist.i', 'src/_pen.i', | |
751 | 'src/_region.i', 'src/_palette.i', | |
752 | 'src/_stockobjs.i', | |
753 | 'src/_effects.i', | |
754 | 'src/_intl.i', | |
755 | 'src/_intl_ex.py', | |
756 | ]) | |
757 | ext = Extension('_gdi', ['src/drawlist.cpp'] + swig_sources, | |
758 | include_dirs = includes, | |
759 | define_macros = defines, | |
760 | library_dirs = libdirs, | |
761 | libraries = libs, | |
762 | extra_compile_args = cflags, | |
763 | extra_link_args = lflags, | |
764 | depends = depends | |
765 | ) | |
766 | wxpExtensions.append(ext) | |
767 | ||
768 | ||
769 | ||
770 | ||
771 | ||
772 | ||
773 | # Extension for the windows module | |
774 | swig_sources = run_swig(['windows.i'], 'src', GENDIR, PKGDIR, | |
775 | USE_SWIG, swig_force, swig_args, swig_deps + | |
776 | ['src/_windows_rename.i', 'src/_windows_reverse.txt', | |
777 | 'src/_panel.i', | |
778 | 'src/_toplvl.i', 'src/_statusbar.i', | |
779 | 'src/_splitter.i', 'src/_sashwin.i', | |
780 | 'src/_popupwin.i', 'src/_tipwin.i', | |
781 | 'src/_vscroll.i', 'src/_taskbar.i', | |
782 | 'src/_cmndlgs.i', 'src/_mdi.i', | |
783 | 'src/_pywindows.i', 'src/_printfw.i', | |
784 | ]) | |
785 | ext = Extension('_windows', swig_sources, | |
786 | include_dirs = includes, | |
787 | define_macros = defines, | |
788 | library_dirs = libdirs, | |
789 | libraries = libs, | |
790 | extra_compile_args = cflags, | |
791 | extra_link_args = lflags, | |
792 | depends = depends | |
793 | ) | |
794 | wxpExtensions.append(ext) | |
795 | ||
796 | ||
797 | ||
798 | ||
799 | # Extension for the controls module | |
800 | swig_sources = run_swig(['controls.i'], 'src', GENDIR, PKGDIR, | |
801 | USE_SWIG, swig_force, swig_args, swig_deps + | |
802 | [ 'src/_controls_rename.i', 'src/_controls_reverse.txt', | |
803 | 'src/_toolbar.i', | |
804 | 'src/_button.i', 'src/_checkbox.i', | |
805 | 'src/_choice.i', 'src/_combobox.i', | |
806 | 'src/_gauge.i', 'src/_statctrls.i', | |
807 | 'src/_listbox.i', 'src/_textctrl.i', | |
808 | 'src/_scrolbar.i', 'src/_spin.i', | |
809 | 'src/_radio.i', 'src/_slider.i', | |
810 | 'src/_tglbtn.i', 'src/_notebook.i', | |
811 | 'src/_listctrl.i', 'src/_treectrl.i', | |
812 | 'src/_dirctrl.i', 'src/_pycontrol.i', | |
813 | 'src/_cshelp.i', 'src/_dragimg.i', | |
814 | ]) | |
815 | ext = Extension('_controls', swig_sources, | |
816 | include_dirs = includes, | |
817 | define_macros = defines, | |
818 | library_dirs = libdirs, | |
819 | libraries = libs, | |
820 | extra_compile_args = cflags, | |
821 | extra_link_args = lflags, | |
822 | depends = depends | |
823 | ) | |
824 | wxpExtensions.append(ext) | |
825 | ||
826 | ||
827 | ||
828 | ||
829 | # Extension for the misc module | |
830 | swig_sources = run_swig(['misc.i'], 'src', GENDIR, PKGDIR, | |
831 | USE_SWIG, swig_force, swig_args, swig_deps + | |
832 | [ 'src/_settings.i', 'src/_functions.i', | |
833 | 'src/_misc.i', 'src/_tipdlg.i', | |
834 | 'src/_timer.i', 'src/_log.i', | |
835 | 'src/_process.i', 'src/_joystick.i', | |
836 | 'src/_sound.i', 'src/_mimetype.i', | |
837 | 'src/_artprov.i', 'src/_config.i', | |
838 | 'src/_datetime.i', 'src/_dataobj.i', | |
839 | 'src/_dnd.i', | |
840 | 'src/_clipbrd.i', | |
841 | ]) | |
842 | ext = Extension('_misc', swig_sources, | |
843 | include_dirs = includes, | |
844 | define_macros = defines, | |
845 | library_dirs = libdirs, | |
846 | libraries = libs, | |
847 | extra_compile_args = cflags, | |
848 | extra_link_args = lflags, | |
849 | depends = depends | |
850 | ) | |
851 | wxpExtensions.append(ext) | |
852 | ||
853 | ||
854 | ||
855 | ## | |
856 | ## Core modules that are not in the "core" namespace start here | |
857 | ## | |
858 | ||
859 | swig_sources = run_swig(['calendar.i'], 'src', GENDIR, PKGDIR, | |
860 | USE_SWIG, swig_force, swig_args, swig_deps) | |
861 | ext = Extension('_calendar', swig_sources, | |
862 | include_dirs = includes, | |
863 | define_macros = defines, | |
864 | library_dirs = libdirs, | |
865 | libraries = libs, | |
866 | extra_compile_args = cflags, | |
867 | extra_link_args = lflags, | |
868 | depends = depends | |
869 | ) | |
870 | wxpExtensions.append(ext) | |
871 | ||
872 | ||
873 | swig_sources = run_swig(['grid.i'], 'src', GENDIR, PKGDIR, | |
874 | USE_SWIG, swig_force, swig_args, swig_deps) | |
875 | ext = Extension('_grid', swig_sources, | |
876 | include_dirs = includes, | |
877 | define_macros = defines, | |
878 | library_dirs = libdirs, | |
879 | libraries = libs, | |
880 | extra_compile_args = cflags, | |
881 | extra_link_args = lflags, | |
882 | depends = depends | |
883 | ) | |
884 | wxpExtensions.append(ext) | |
885 | ||
886 | ||
887 | ||
888 | swig_sources = run_swig(['html.i'], 'src', GENDIR, PKGDIR, | |
889 | USE_SWIG, swig_force, swig_args, swig_deps) | |
890 | ext = Extension('_html', swig_sources, | |
891 | include_dirs = includes, | |
892 | define_macros = defines, | |
893 | library_dirs = libdirs, | |
894 | libraries = libs, | |
895 | extra_compile_args = cflags, | |
896 | extra_link_args = lflags, | |
897 | depends = depends | |
898 | ) | |
899 | wxpExtensions.append(ext) | |
900 | ||
901 | ||
902 | ||
903 | swig_sources = run_swig(['wizard.i'], 'src', GENDIR, PKGDIR, | |
904 | USE_SWIG, swig_force, swig_args, swig_deps) | |
905 | ext = Extension('_wizard', swig_sources, | |
906 | include_dirs = includes, | |
907 | define_macros = defines, | |
908 | library_dirs = libdirs, | |
909 | libraries = libs, | |
910 | extra_compile_args = cflags, | |
911 | extra_link_args = lflags, | |
912 | depends = depends | |
913 | ) | |
914 | wxpExtensions.append(ext) | |
915 | ||
916 | ||
917 | ||
918 | ||
919 | ||
920 | #---------------------------------------------------------------------- | |
921 | # Define the GLCanvas extension module | |
922 | #---------------------------------------------------------------------- | |
923 | ||
924 | if BUILD_GLCANVAS: | |
925 | msg('Preparing GLCANVAS...') | |
926 | location = 'contrib/glcanvas' | |
927 | ||
928 | swig_sources = run_swig(['glcanvas.i'], location, GENDIR, PKGDIR, | |
929 | USE_SWIG, swig_force, swig_args, swig_deps) | |
930 | ||
931 | gl_libs = [] | |
932 | if os.name == 'posix': | |
933 | gl_config = os.popen(WX_CONFIG + ' --gl-libs', 'r').read()[:-1] | |
934 | gl_lflags = gl_config.split() + lflags | |
935 | gl_libs = libs | |
936 | else: | |
937 | gl_libs = libs + ['opengl32', 'glu32'] + makeLibName('gl') | |
938 | gl_lflags = lflags | |
939 | ||
940 | ext = Extension('_glcanvas', | |
941 | swig_sources, | |
942 | ||
943 | include_dirs = includes, | |
944 | define_macros = defines, | |
945 | ||
946 | library_dirs = libdirs, | |
947 | libraries = gl_libs, | |
948 | ||
949 | extra_compile_args = cflags, | |
950 | extra_link_args = gl_lflags, | |
951 | ) | |
952 | ||
953 | wxpExtensions.append(ext) | |
954 | ||
955 | ||
956 | #---------------------------------------------------------------------- | |
957 | # Define the OGL extension module | |
958 | #---------------------------------------------------------------------- | |
959 | ||
960 | if BUILD_OGL: | |
961 | msg('Preparing OGL...') | |
962 | location = 'contrib/ogl' | |
963 | ||
964 | swig_sources = run_swig(['ogl.i'], location, GENDIR, PKGDIR, | |
965 | USE_SWIG, swig_force, swig_args, swig_deps + | |
966 | [ '%s/_oglbasic.i' % location, | |
967 | '%s/_oglshapes.i' % location, | |
968 | '%s/_oglshapes2.i' % location, | |
969 | '%s/_oglcanvas.i' % location, | |
970 | '%s/_ogldefs.i' % location, | |
971 | ]) | |
972 | ||
973 | ext = Extension('_ogl', | |
974 | swig_sources, | |
975 | ||
976 | include_dirs = includes + [ location ], | |
977 | define_macros = defines + [('wxUSE_DEPRECATED', '0')], | |
978 | ||
979 | library_dirs = libdirs, | |
980 | libraries = libs + makeLibName('ogl'), | |
981 | ||
982 | extra_compile_args = cflags, | |
983 | extra_link_args = lflags, | |
984 | ) | |
985 | ||
986 | wxpExtensions.append(ext) | |
987 | ||
988 | ||
989 | ||
990 | #---------------------------------------------------------------------- | |
991 | # Define the STC extension module | |
992 | #---------------------------------------------------------------------- | |
993 | ||
994 | if BUILD_STC: | |
995 | msg('Preparing STC...') | |
996 | location = 'contrib/stc' | |
997 | if os.name == 'nt': | |
998 | STC_H = opj(WXDIR, 'contrib', 'include/wx/stc') | |
999 | else: | |
1000 | STC_H = opj(WXPREFIX, 'include/wx/stc') | |
1001 | ||
1002 | ## NOTE: need to add something like this to the stc.bkl... | |
1003 | ||
1004 | ## # Check if gen_iface needs to be run for the wxSTC sources | |
1005 | ## if (newer(opj(CTRB_SRC, 'stc/stc.h.in'), opj(CTRB_INC, 'stc/stc.h' )) or | |
1006 | ## newer(opj(CTRB_SRC, 'stc/stc.cpp.in'), opj(CTRB_SRC, 'stc/stc.cpp')) or | |
1007 | ## newer(opj(CTRB_SRC, 'stc/gen_iface.py'), opj(CTRB_SRC, 'stc/stc.cpp'))): | |
1008 | ||
1009 | ## msg('Running gen_iface.py, regenerating stc.h and stc.cpp...') | |
1010 | ## cwd = os.getcwd() | |
1011 | ## os.chdir(opj(CTRB_SRC, 'stc')) | |
1012 | ## sys.path.insert(0, os.curdir) | |
1013 | ## import gen_iface | |
1014 | ## gen_iface.main([]) | |
1015 | ## os.chdir(cwd) | |
1016 | ||
1017 | ||
1018 | swig_sources = run_swig(['stc.i'], location, '', PKGDIR, | |
1019 | USE_SWIG, swig_force, | |
1020 | swig_args + ['-I'+STC_H, '-I'+location], | |
1021 | [opj(STC_H, 'stc.h')] + swig_deps) | |
1022 | ||
1023 | ext = Extension('_stc', | |
1024 | swig_sources, | |
1025 | ||
1026 | include_dirs = includes, | |
1027 | define_macros = defines, | |
1028 | ||
1029 | library_dirs = libdirs, | |
1030 | libraries = libs + makeLibName('stc'), | |
1031 | ||
1032 | extra_compile_args = cflags, | |
1033 | extra_link_args = lflags, | |
1034 | ) | |
1035 | ||
1036 | wxpExtensions.append(ext) | |
1037 | ||
1038 | ||
1039 | ||
1040 | #---------------------------------------------------------------------- | |
1041 | # Define the IEWIN extension module (experimental) | |
1042 | #---------------------------------------------------------------------- | |
1043 | ||
1044 | if BUILD_IEWIN: | |
1045 | msg('Preparing IEWIN...') | |
1046 | location = 'contrib/iewin' | |
1047 | ||
1048 | swig_files = ['iewin.i', ] | |
1049 | ||
1050 | swig_sources = run_swig(swig_files, location, '', PKGDIR, | |
1051 | USE_SWIG, swig_force, swig_args, swig_deps) | |
1052 | ||
1053 | ||
1054 | ext = Extension('_iewin', ['%s/IEHtmlWin.cpp' % location, | |
1055 | '%s/wxactivex.cpp' % location, | |
1056 | ] + swig_sources, | |
1057 | ||
1058 | include_dirs = includes, | |
1059 | define_macros = defines, | |
1060 | ||
1061 | library_dirs = libdirs, | |
1062 | libraries = libs, | |
1063 | ||
1064 | extra_compile_args = cflags, | |
1065 | extra_link_args = lflags, | |
1066 | ) | |
1067 | ||
1068 | wxpExtensions.append(ext) | |
1069 | ||
1070 | ||
1071 | #---------------------------------------------------------------------- | |
1072 | # Define the XRC extension module | |
1073 | #---------------------------------------------------------------------- | |
1074 | ||
1075 | if BUILD_XRC: | |
1076 | msg('Preparing XRC...') | |
1077 | location = 'contrib/xrc' | |
1078 | ||
1079 | swig_sources = run_swig(['xrc.i'], location, '', PKGDIR, | |
1080 | USE_SWIG, swig_force, swig_args, swig_deps + | |
1081 | [ '%s/_xrc_rename.i' % location, | |
1082 | '%s/_xrc_ex.py' % location, | |
1083 | '%s/_xmlres.i' % location, | |
1084 | '%s/_xmlsub.i' % location, | |
1085 | '%s/_xml.i' % location, | |
1086 | '%s/_xmlhandler.i' % location, | |
1087 | ]) | |
1088 | ||
1089 | ext = Extension('_xrc', | |
1090 | swig_sources, | |
1091 | ||
1092 | include_dirs = includes, | |
1093 | define_macros = defines, | |
1094 | ||
1095 | library_dirs = libdirs, | |
1096 | libraries = libs + makeLibName('xrc'), | |
1097 | ||
1098 | extra_compile_args = cflags, | |
1099 | extra_link_args = lflags, | |
1100 | ) | |
1101 | ||
1102 | wxpExtensions.append(ext) | |
1103 | ||
1104 | ||
1105 | ||
1106 | #---------------------------------------------------------------------- | |
1107 | # Define the GIZMOS extension module | |
1108 | #---------------------------------------------------------------------- | |
1109 | ||
1110 | if BUILD_GIZMOS: | |
1111 | msg('Preparing GIZMOS...') | |
1112 | location = 'contrib/gizmos' | |
1113 | ||
1114 | swig_sources = run_swig(['gizmos.i'], location, GENDIR, PKGDIR, | |
1115 | USE_SWIG, swig_force, swig_args, swig_deps) | |
1116 | ||
1117 | ext = Extension('_gizmos', | |
1118 | [ '%s/treelistctrl.cpp' % location ] + swig_sources, | |
1119 | ||
1120 | include_dirs = includes + [ location ], | |
1121 | define_macros = defines, | |
1122 | ||
1123 | library_dirs = libdirs, | |
1124 | libraries = libs + makeLibName('gizmos'), | |
1125 | ||
1126 | extra_compile_args = cflags, | |
1127 | extra_link_args = lflags, | |
1128 | ) | |
1129 | ||
1130 | wxpExtensions.append(ext) | |
1131 | ||
1132 | ||
1133 | ||
1134 | #---------------------------------------------------------------------- | |
1135 | # Define the DLLWIDGET extension module | |
1136 | #---------------------------------------------------------------------- | |
1137 | ||
1138 | if BUILD_DLLWIDGET: | |
1139 | msg('Preparing DLLWIDGET...') | |
1140 | location = 'contrib/dllwidget' | |
1141 | swig_files = ['dllwidget_.i'] | |
1142 | ||
1143 | swig_sources = run_swig(swig_files, location, '', PKGDIR, | |
1144 | USE_SWIG, swig_force, swig_args, swig_deps) | |
1145 | ||
1146 | # copy a contrib project specific py module to the main package dir | |
1147 | copy_file(opj(location, 'dllwidget.py'), PKGDIR, update=1, verbose=0) | |
1148 | ||
1149 | ext = Extension('dllwidget_c', [ | |
1150 | '%s/dllwidget.cpp' % location, | |
1151 | ] + swig_sources, | |
1152 | ||
1153 | include_dirs = includes, | |
1154 | define_macros = defines, | |
1155 | ||
1156 | library_dirs = libdirs, | |
1157 | libraries = libs, | |
1158 | ||
1159 | extra_compile_args = cflags, | |
1160 | extra_link_args = lflags, | |
1161 | ) | |
1162 | ||
1163 | wxpExtensions.append(ext) | |
1164 | ||
1165 | ||
1166 | ||
1167 | ||
1168 | #---------------------------------------------------------------------- | |
1169 | # Tools and scripts | |
1170 | #---------------------------------------------------------------------- | |
1171 | ||
1172 | if NO_SCRIPTS: | |
1173 | SCRIPTS = None | |
1174 | else: | |
1175 | SCRIPTS = [opj('scripts/helpviewer'), | |
1176 | opj('scripts/img2png'), | |
1177 | opj('scripts/img2xpm'), | |
1178 | opj('scripts/img2py'), | |
1179 | opj('scripts/xrced'), | |
1180 | opj('scripts/pyshell'), | |
1181 | opj('scripts/pycrust'), | |
1182 | opj('scripts/pywrap'), | |
1183 | opj('scripts/pywrap'), | |
1184 | opj('scripts/pyalacarte'), | |
1185 | opj('scripts/pyalamode'), | |
1186 | ] | |
1187 | ||
1188 | ||
1189 | DATA_FILES += find_data_files('wx/tools/XRCed', '*.txt', '*.xrc') | |
1190 | DATA_FILES += find_data_files('wx/py', '*.txt', '*.ico', '*.css', '*.html') | |
1191 | DATA_FILES += find_data_files('wx', '*.txt', '*.css', '*.html') | |
1192 | ||
1193 | ||
1194 | #---------------------------------------------------------------------- | |
1195 | # Do the Setup/Build/Install/Whatever | |
1196 | #---------------------------------------------------------------------- | |
1197 | ||
1198 | if __name__ == "__main__": | |
1199 | if not PREP_ONLY: | |
1200 | setup(name = 'wxPython', | |
1201 | version = VERSION, | |
1202 | description = DESCRIPTION, | |
1203 | long_description = LONG_DESCRIPTION, | |
1204 | author = AUTHOR, | |
1205 | author_email = AUTHOR_EMAIL, | |
1206 | url = URL, | |
1207 | download_url = DOWNLOAD_URL, | |
1208 | license = LICENSE, | |
1209 | platforms = PLATFORMS, | |
1210 | classifiers = filter(None, CLASSIFIERS.split("\n")), | |
1211 | keywords = KEYWORDS, | |
1212 | ||
1213 | packages = ['wxPython', | |
1214 | 'wxPython.lib', | |
1215 | 'wxPython.lib.colourchooser', | |
1216 | 'wxPython.lib.editor', | |
1217 | 'wxPython.lib.mixins', | |
1218 | 'wxPython.tools', | |
1219 | ||
1220 | 'wx', | |
1221 | 'wx.lib', | |
1222 | 'wx.lib.colourchooser', | |
1223 | 'wx.lib.editor', | |
1224 | 'wx.lib.mixins', | |
1225 | 'wx.py', | |
1226 | 'wx.tools', | |
1227 | 'wx.tools.XRCed', | |
1228 | ], | |
1229 | ||
1230 | ext_package = PKGDIR, | |
1231 | ext_modules = wxpExtensions, | |
1232 | ||
1233 | options = { 'build' : { 'build_base' : BUILD_BASE }}, | |
1234 | ||
1235 | scripts = SCRIPTS, | |
1236 | ||
1237 | cmdclass = { 'install_data': smart_install_data}, | |
1238 | data_files = DATA_FILES, | |
1239 | ||
1240 | ) | |
1241 | ||
1242 | ||
1243 | #---------------------------------------------------------------------- | |
1244 | #---------------------------------------------------------------------- |