89 |
proj4_lib = "proj_i" |
proj4_lib = "proj_i" |
90 |
|
|
91 |
# Define include and lib directories for wxWindows and |
# Define include and lib directories for wxWindows and |
92 |
#wx_prefix = r"D:\cygwin\home\user\project\greater\wxPython-2.4.0.4" |
wx_prefix = r"C:\wx-versions\wxPython-2.4.0.6" |
93 |
wx_prefix = r"D:\wx-sources\wxPythonSrc-2.4.0.7" |
wx_inc = [os.path.join(wx_prefix, 'lib', 'mswdllh'), |
|
wx_inc = [os.path.join(wx_prefix, 'lib', 'mswdll'), |
|
94 |
os.path.join(wx_prefix, "include")] |
os.path.join(wx_prefix, "include")] |
95 |
wx_lib = [os.path.join(wx_prefix, "lib")] |
wx_lib = [os.path.join(wx_prefix, "lib")] |
96 |
|
|
150 |
|
|
151 |
wx_cs_params[CS_INCDIRS] = wx_inc |
wx_cs_params[CS_INCDIRS] = wx_inc |
152 |
wx_cs_params[CS_LIBDIRS] = wx_lib |
wx_cs_params[CS_LIBDIRS] = wx_lib |
153 |
wx_cs_params[CS_LIBS] = ["wxmsw24"] \ |
wx_cs_params[CS_LIBS] = ["wxmsw24h"] \ |
154 |
+ ['kernel32', 'user32', 'gdi32', 'comdlg32', |
+ ['kernel32', 'user32', 'gdi32', 'comdlg32', |
155 |
'winspool', 'winmm', 'shell32', 'oldnames', |
'winspool', 'winmm', 'shell32', 'oldnames', |
156 |
'comctl32', 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', |
'comctl32', 'ctl3d32', 'odbc32', 'ole32', 'oleaut32', |
230 |
# |
# |
231 |
# Define some extension and python modules |
# Define some extension and python modules |
232 |
# |
# |
233 |
# The C-extension names are prefixed woth "Lib." so they get put into |
# The C-extension names are prefixed with "Lib." so they get put into |
234 |
# the Lib/ subdirectory. Lib/ is not really a package but distutils |
# the Lib/ subdirectory. Lib/ is not really a package but distutils |
235 |
# doesn't care |
# doesn't care |
236 |
|
|
237 |
# subdirectory containing the extensions |
# subdirectory containing the distutil extensions |
238 |
ext_dir = "extensions" |
ext_dir = "libraries" |
239 |
|
|
240 |
# subdirectory with some shapelib files |
# subdirectory with some shapelib files |
241 |
shp_dir = ext_dir + "/shapelib" |
shp_dir = ext_dir + "/shapelib" |
296 |
|
|
297 |
data_files = [] |
data_files = [] |
298 |
|
|
299 |
# bitmaps |
# Resources |
300 |
# ("Resources/Locale", "Resources/Locale/*/LC_MESSAGES/*.mo") |
for d, pattern in [("Resources/Bitmaps", "Resources/Bitmaps/*.xpm"), |
301 |
for d, pattern in [("Resources/Bitmaps", "Resources/Bitmaps/*.xpm")]: |
("Resources/Projections", "Resources/Projections/*.proj"), |
302 |
|
("Resources/XML", "Resources/XML/*.dtd")]: |
303 |
data_files.append((d, glob.glob(pattern))) |
data_files.append((d, glob.glob(pattern))) |
304 |
|
if os.path.isdir("Resources/Locale"): |
305 |
|
for d in os.listdir("Resources/Locale"): |
306 |
|
data_files.append(("Resources/Locale/" + d +"/LC_MESSAGES", |
307 |
|
["Resources/Locale/"+ d +"/LC_MESSAGES/thuban.mo"])) |
308 |
|
|
309 |
# |
# |
310 |
# Command definitions |
# Command definitions |
786 |
|
|
787 |
bdist_rpm_prep_script = ''' |
bdist_rpm_prep_script = ''' |
788 |
%setup |
%setup |
789 |
cp extensions/pyshapelib/{README,README.pyshapelib} |
cp libraries/pyshapelib/{README,README.pyshapelib} |
790 |
cp extensions/pyshapelib/{COPYING,COPYING.pyshapelib} |
cp libraries/pyshapelib/{COPYING,COPYING.pyshapelib} |
791 |
cp extensions/pyprojection/{LICENSE,LICENSE.pyprojection} |
cp libraries/pyprojection/{LICENSE,LICENSE.pyprojection} |
792 |
''' |
''' |
793 |
|
|
794 |
bdist_rpm_build_script = ''' |
bdist_rpm_build_script = ''' |
1100 |
""" |
""" |
1101 |
|
|
1102 |
setup(name = "Thuban", |
setup(name = "Thuban", |
1103 |
version = "0.8.0", |
version = "1.0rc1", |
1104 |
description = "Geographic data viewer", |
description = "Geographic data viewer", |
1105 |
long_description = long_description, |
long_description = long_description, |
1106 |
licence = "GPL", |
licence = "GPL", |
1107 |
author = "Intevation GmbH", |
author = "Intevation GmbH", |
1108 |
author_email = "[email protected]", |
author_email = "[email protected]", |
1109 |
url = "http://thuban.intevation.de/", |
url = "http://thuban.intevation.de/", |
1110 |
|
|
1111 |
scripts = ["thuban.py"], |
scripts = ["thuban.py"], |