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