2006-02-01 00:09:52 +01:00
|
|
|
#
|
2006-03-31 12:32:02 +02:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
#
|
2014-11-24 09:53:17 +01:00
|
|
|
# Copyright (C) 2014 Artem Pavlenko
|
2006-03-31 12:32:02 +02:00
|
|
|
#
|
|
|
|
# Mapnik is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
#
|
2014-11-24 09:53:17 +01:00
|
|
|
#
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2015-02-02 19:31:16 +01:00
|
|
|
import glob
|
2010-09-26 14:15:16 +02:00
|
|
|
from subprocess import Popen, PIPE
|
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
|
|
|
|
Import('env')
|
2008-03-12 20:14:51 +01:00
|
|
|
|
2010-09-26 14:15:16 +02:00
|
|
|
def call(cmd, silent=True):
|
|
|
|
stdin, stderr = Popen(cmd, shell=True, stdout=PIPE, stderr=PIPE).communicate()
|
|
|
|
if not stderr:
|
|
|
|
return stdin.strip()
|
|
|
|
elif not silent:
|
|
|
|
print stderr
|
|
|
|
|
|
|
|
def run_2to3(*args,**kwargs):
|
|
|
|
call('2to3 -w %s' % os.path.dirname(kwargs['target'][0].path))
|
2010-09-27 00:49:14 +02:00
|
|
|
|
|
|
|
def is_py3():
|
|
|
|
return 'True' in os.popen('''%s -c "import sys as s;s.stdout.write(str(s.version_info[0] == 3))"''' % env['PYTHON']).read().strip()
|
|
|
|
|
|
|
|
|
2009-02-20 20:31:08 +01:00
|
|
|
prefix = env['PREFIX']
|
2014-06-09 22:55:56 +02:00
|
|
|
target_path = os.path.normpath(env['PYTHON_INSTALL_LOCATION'] + os.path.sep + env['MAPNIK_NAME'])
|
2011-12-13 20:17:44 +01:00
|
|
|
target_path_deprecated = os.path.normpath(env['PYTHON_INSTALL_LOCATION'] + os.path.sep + 'mapnik2')
|
2009-02-20 20:31:08 +01:00
|
|
|
|
2013-05-17 17:37:42 +02:00
|
|
|
py_env = env.Clone()
|
|
|
|
py_env.Append(CPPPATH = env['PYTHON_INCLUDES'])
|
|
|
|
|
2013-07-24 01:58:13 +02:00
|
|
|
py_env.Append(CPPDEFINES = env['LIBMAPNIK_DEFINES'])
|
|
|
|
|
2014-06-09 22:55:56 +02:00
|
|
|
py_env['LIBS'] = [env['MAPNIK_NAME'],env['BOOST_PYTHON_LIB']]
|
2007-03-16 11:11:37 +01:00
|
|
|
|
2013-06-03 22:17:45 +02:00
|
|
|
link_all_libs = env['LINKING'] == 'static' or env['RUNTIME_LINK'] == 'static' or (env['PLATFORM'] == 'Darwin' and not env['PYTHON_DYNAMIC_LOOKUP'])
|
|
|
|
|
2014-01-20 20:15:10 +01:00
|
|
|
# even though boost_thread is no longer used in mapnik core
|
|
|
|
# we need to link in for boost_python to avoid missing symbol: _ZN5boost6detail12get_tss_dataEPKv / boost::detail::get_tss_data
|
|
|
|
py_env.AppendUnique(LIBS = 'boost_thread%s' % env['BOOST_APPEND'])
|
|
|
|
|
2014-09-25 02:11:43 +02:00
|
|
|
if link_all_libs:
|
|
|
|
py_env.AppendUnique(LIBS=env['LIBMAPNIK_LIBS'])
|
|
|
|
|
2014-01-20 20:15:10 +01:00
|
|
|
# note: on linux -lrt must be linked after thread to avoid: undefined symbol: clock_gettime
|
2013-07-14 22:32:16 +02:00
|
|
|
if env['RUNTIME_LINK'] == 'static' and env['PLATFORM'] == 'Linux':
|
|
|
|
py_env.AppendUnique(LIBS='rt')
|
|
|
|
|
2011-12-14 20:18:31 +01:00
|
|
|
# TODO - do solaris/fedora need direct linking too?
|
2007-03-16 11:11:37 +01:00
|
|
|
if env['PLATFORM'] == 'Darwin':
|
2014-11-24 09:53:17 +01:00
|
|
|
##### Python linking on OS X is tricky ###
|
2009-12-05 04:07:58 +01:00
|
|
|
# Confounding problems are:
|
|
|
|
# 1) likelyhood of multiple python installs of the same major.minor version
|
2014-11-24 09:53:17 +01:00
|
|
|
# because apple supplies python built-in and many users may have installed
|
2009-12-05 04:07:58 +01:00
|
|
|
# further versions using macports
|
|
|
|
# 2) boost python directly links to a python version
|
|
|
|
# 3) the below will directly link _mapnik.so to a python version
|
|
|
|
# 4) _mapnik.so must link to the same python lib as boost_python.dylib otherwise
|
2010-10-12 06:40:00 +02:00
|
|
|
# python will Abort with a Version Mismatch error.
|
2012-08-16 21:27:58 +02:00
|
|
|
# See https://github.com/mapnik/mapnik/issues/453 for the seeds of a better approach
|
2009-12-05 04:07:58 +01:00
|
|
|
# for now we offer control over method of direct linking...
|
|
|
|
# The default below is to link against the python dylib in the form of
|
|
|
|
#/path/to/Python.framework/Python instead of -lpython
|
2014-11-24 09:53:17 +01:00
|
|
|
|
2009-12-05 04:07:58 +01:00
|
|
|
# http://developer.apple.com/mac/library/DOCUMENTATION/Darwin/Reference/ManPages/man1/ld.1.html
|
2014-11-24 09:53:17 +01:00
|
|
|
|
2010-04-28 07:39:27 +02:00
|
|
|
if env['PYTHON_DYNAMIC_LOOKUP']:
|
2010-09-18 20:02:15 +02:00
|
|
|
python_link_flag = '-undefined dynamic_lookup'
|
2010-04-28 07:39:27 +02:00
|
|
|
elif env['FRAMEWORK_PYTHON']:
|
2009-12-05 04:07:58 +01:00
|
|
|
if env['FRAMEWORK_SEARCH_PATH']:
|
2014-11-24 09:53:17 +01:00
|
|
|
# if the user has supplied a custom root path to search for
|
2009-12-05 04:07:58 +01:00
|
|
|
# a given Python framework, then use that to direct the linker
|
2010-09-18 20:02:15 +02:00
|
|
|
python_link_flag = '-F%s -framework Python -Z' % env['FRAMEWORK_SEARCH_PATH']
|
2009-12-05 04:07:58 +01:00
|
|
|
else:
|
|
|
|
# otherwise be as explicit as possible for linking to the same Framework
|
|
|
|
# as the executable we are building with (or is pointed to by the PYTHON variable)
|
|
|
|
# otherwise we may accidentally link against either:
|
|
|
|
# /System/Library/Frameworks/Python.framework/Python/Versions/
|
|
|
|
# or
|
|
|
|
# /Library/Frameworks/Python.framework/Python/Versions/
|
2012-08-16 21:27:58 +02:00
|
|
|
# See: https://github.com/mapnik/mapnik/issues/380
|
2009-12-05 04:51:29 +01:00
|
|
|
link_prefix = env['PYTHON_SYS_PREFIX']
|
|
|
|
if '.framework' in link_prefix:
|
2010-09-18 20:02:15 +02:00
|
|
|
python_link_flag = '-F%s -framework Python -Z' % os.path.dirname(link_prefix.split('.')[0])
|
2009-12-05 04:51:29 +01:00
|
|
|
elif '/System' in link_prefix:
|
2010-09-18 20:02:15 +02:00
|
|
|
python_link_flag = '-F/System/Library/Frameworks/ -framework Python -Z'
|
2009-12-05 04:07:58 +01:00
|
|
|
else:
|
|
|
|
# should we fall back to -lpython here?
|
2010-09-18 20:02:15 +02:00
|
|
|
python_link_flag = '-F/ -framework Python'
|
2009-12-05 04:07:58 +01:00
|
|
|
# if we are not linking to a framework then use the *nix standard approach
|
2009-02-25 02:02:43 +01:00
|
|
|
else:
|
2010-09-18 20:02:15 +02:00
|
|
|
# TODO - do we need to pass -L/?
|
|
|
|
python_link_flag = '-lpython%s' % env['PYTHON_VERSION']
|
2011-12-14 20:18:31 +01:00
|
|
|
|
2010-10-12 06:40:00 +02:00
|
|
|
elif env['PLATFORM'] == 'SunOS':
|
|
|
|
# make sure to explicitly link mapnik.so against
|
|
|
|
# libmapnik in its installed location
|
2011-08-12 23:43:43 +02:00
|
|
|
python_link_flag = '-R%s' % env['MAPNIK_LIB_BASE']
|
2010-09-19 20:10:41 +02:00
|
|
|
else:
|
|
|
|
# all other platforms we don't directly link python
|
|
|
|
python_link_flag = ''
|
2009-12-15 20:25:35 +01:00
|
|
|
|
2009-03-29 21:05:42 +02:00
|
|
|
paths = '''
|
2010-09-18 20:02:15 +02:00
|
|
|
"""Configuration paths of Mapnik fonts and input plugins (auto-generated by SCons)."""
|
2009-03-29 21:05:42 +02:00
|
|
|
|
2011-12-14 02:53:31 +01:00
|
|
|
from os.path import normpath,join,dirname
|
2009-03-30 06:15:11 +02:00
|
|
|
|
2006-03-28 03:07:01 +02:00
|
|
|
mapniklibpath = '%s'
|
2011-12-14 02:53:31 +01:00
|
|
|
mapniklibpath = normpath(join(dirname(__file__),mapniklibpath))
|
2009-03-29 21:05:42 +02:00
|
|
|
'''
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2011-12-14 02:53:31 +01:00
|
|
|
paths += "inputpluginspath = join(mapniklibpath,'input')\n"
|
2009-02-20 20:31:08 +01:00
|
|
|
|
|
|
|
if env['SYSTEM_FONTS']:
|
2011-12-14 02:53:31 +01:00
|
|
|
paths += "fontscollectionpath = normpath('%s')\n" % env['SYSTEM_FONTS']
|
2009-02-20 20:31:08 +01:00
|
|
|
else:
|
2011-12-14 02:53:31 +01:00
|
|
|
paths += "fontscollectionpath = join(mapniklibpath,'fonts')\n"
|
2009-02-20 20:31:08 +01:00
|
|
|
|
2011-12-14 02:53:31 +01:00
|
|
|
paths += "__all__ = [mapniklibpath,inputpluginspath,fontscollectionpath]\n"
|
2009-02-20 20:31:08 +01:00
|
|
|
|
2014-06-09 22:55:56 +02:00
|
|
|
if not os.path.exists(env['MAPNIK_NAME']):
|
|
|
|
os.mkdir(env['MAPNIK_NAME'])
|
2011-12-16 19:57:05 +01:00
|
|
|
|
2012-05-04 03:49:09 +02:00
|
|
|
file('mapnik/paths.py','w').write(paths % (env['MAPNIK_LIB_DIR']))
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2011-10-11 02:56:56 +02:00
|
|
|
# force open perms temporarily so that `sudo scons install`
|
|
|
|
# does not later break simple non-install non-sudo rebuild
|
2009-02-27 00:35:09 +01:00
|
|
|
try:
|
|
|
|
os.chmod('mapnik/paths.py',0666)
|
|
|
|
except: pass
|
|
|
|
|
2012-08-16 19:00:05 +02:00
|
|
|
# install the shared object beside the module directory
|
|
|
|
sources = glob.glob('*.cpp')
|
|
|
|
|
2010-11-29 21:21:02 +01:00
|
|
|
if 'install' in COMMAND_LINE_TARGETS:
|
2012-08-16 19:00:05 +02:00
|
|
|
# install the core mapnik python files, including '__init__.py'
|
2010-11-29 21:21:02 +01:00
|
|
|
init_files = glob.glob('mapnik/*.py')
|
2011-10-11 02:56:56 +02:00
|
|
|
if 'mapnik/paths.py' in init_files:
|
2014-11-24 09:53:17 +01:00
|
|
|
init_files.remove('mapnik/paths.py')
|
2010-11-29 21:21:02 +01:00
|
|
|
init_module = env.Install(target_path, init_files)
|
|
|
|
env.Alias(target='install', source=init_module)
|
2011-11-23 12:33:58 +01:00
|
|
|
# install mapnik2 module which redirects to mapnik and issues DeprecatedWarning
|
2011-12-13 20:17:44 +01:00
|
|
|
init_mapnik2 = env.Install(target_path_deprecated, 'mapnik2/__init__.py')
|
2011-11-23 12:33:58 +01:00
|
|
|
env.Alias(target='install', source=init_mapnik2)
|
2014-11-24 09:53:17 +01:00
|
|
|
|
2012-08-16 19:00:05 +02:00
|
|
|
# fix perms and install the custom generated 'paths.py'
|
2011-10-11 02:56:56 +02:00
|
|
|
targetp = os.path.join(target_path,'paths.py')
|
|
|
|
env.Alias("install", targetp)
|
|
|
|
# use env.Command rather than env.Install
|
|
|
|
# to enable setting proper perms on `paths.py`
|
|
|
|
env.Command( targetp, 'mapnik/paths.py',
|
|
|
|
[
|
|
|
|
Copy("$TARGET","$SOURCE"),
|
|
|
|
Chmod("$TARGET", 0644),
|
|
|
|
])
|
2009-02-04 00:00:03 +01:00
|
|
|
|
2012-08-16 19:00:05 +02:00
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
|
|
|
if env['HAS_CAIRO']:
|
2013-01-09 21:49:39 +01:00
|
|
|
py_env.Append(CPPPATH = env['CAIRO_CPPPATHS'])
|
2013-03-14 03:49:59 +01:00
|
|
|
py_env.Append(CPPDEFINES = '-DHAVE_CAIRO')
|
2013-06-03 22:17:45 +02:00
|
|
|
if link_all_libs:
|
2013-05-16 20:33:23 +02:00
|
|
|
py_env.Append(LIBS=env['CAIRO_ALL_LIBS'])
|
2014-11-24 09:53:17 +01:00
|
|
|
|
2012-08-16 19:00:05 +02:00
|
|
|
if env['HAS_PYCAIRO']:
|
|
|
|
py_env.ParseConfig('pkg-config --cflags pycairo')
|
2013-03-14 03:49:59 +01:00
|
|
|
py_env.Append(CPPDEFINES = '-DHAVE_PYCAIRO')
|
2011-08-30 00:17:13 +02:00
|
|
|
|
2013-10-22 22:35:46 +02:00
|
|
|
py_env.Append(LINKFLAGS=python_link_flag)
|
2014-10-22 09:09:22 +02:00
|
|
|
py_env.AppendUnique(LIBS='mapnik-json')
|
|
|
|
py_env.AppendUnique(LIBS='mapnik-wkt')
|
2014-10-13 10:17:57 +02:00
|
|
|
|
2013-10-22 22:35:46 +02:00
|
|
|
_mapnik = py_env.LoadableModule('mapnik/_mapnik', sources, LDMODULEPREFIX='', LDMODULESUFFIX='.so')
|
2010-07-15 02:20:50 +02:00
|
|
|
|
2011-08-12 23:43:43 +02:00
|
|
|
Depends(_mapnik, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
2014-10-22 09:09:22 +02:00
|
|
|
Depends(_mapnik, env.subst('../../src/json/libmapnik-json${LIBSUFFIX}'))
|
|
|
|
Depends(_mapnik, env.subst('../../src/wkt/libmapnik-wkt${LIBSUFFIX}'))
|
2011-08-12 23:43:43 +02:00
|
|
|
|
2010-12-01 03:01:12 +01:00
|
|
|
if env['PLATFORM'] == 'SunOS' and env['PYTHON_IS_64BIT']:
|
|
|
|
# http://mail.python.org/pipermail/python-dev/2006-August/068528.html
|
|
|
|
cxx_module_path = os.path.join(target_path,'64')
|
|
|
|
else:
|
|
|
|
cxx_module_path = target_path
|
2012-08-16 19:00:05 +02:00
|
|
|
|
2010-07-18 22:39:05 +02:00
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
2010-12-01 03:01:12 +01:00
|
|
|
pymapniklib = env.Install(cxx_module_path,_mapnik)
|
2010-07-18 22:39:05 +02:00
|
|
|
py_env.Alias(target='install',source=pymapniklib)
|
2010-09-27 01:28:29 +02:00
|
|
|
if 'install' in COMMAND_LINE_TARGETS:
|
2010-09-27 00:49:14 +02:00
|
|
|
if is_py3():
|
|
|
|
env.AddPostAction(pymapniklib, run_2to3)
|
2010-09-26 14:15:16 +02:00
|
|
|
|
2010-07-18 22:39:05 +02:00
|
|
|
|
2010-09-26 14:15:16 +02:00
|
|
|
env['create_uninstall_target'](env, target_path)
|
2011-12-13 20:17:44 +01:00
|
|
|
env['create_uninstall_target'](env, target_path_deprecated)
|