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)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2006-02-01 00:09:52 +01:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
import glob
|
2008-01-24 15:44:04 +01:00
|
|
|
import re
|
|
|
|
import os
|
2006-02-01 00:09:52 +01:00
|
|
|
|
|
|
|
Import('env')
|
2008-03-12 20:14:51 +01:00
|
|
|
|
2009-02-20 20:31:08 +01:00
|
|
|
prefix = env['PREFIX']
|
|
|
|
install_prefix = env['DESTDIR'] + '/' + prefix
|
|
|
|
|
2007-03-22 11:54:44 +01:00
|
|
|
linkflags = ''
|
2010-03-17 22:03:02 +01:00
|
|
|
libraries = ['mapnik2','png','jpeg']
|
2009-12-15 20:25:35 +01:00
|
|
|
headers = [env['PYTHON_INCLUDES']] + env['CPPPATH']
|
|
|
|
|
|
|
|
if env['BOOST_PYTHON_LIB']:
|
|
|
|
if os.path.sep in env['BOOST_PYTHON_LIB']:
|
|
|
|
pylib_dir = os.path.dirname(env['BOOST_PYTHON_LIB'])
|
|
|
|
env.Prepend(LIBPATH = pylib_dir)
|
|
|
|
pylib_name = os.path.splitext(os.path.basename(env['BOOST_PYTHON_LIB']))[0].replace('lib','',1)
|
|
|
|
libraries.append(pylib_name)
|
|
|
|
else:
|
|
|
|
libraries.append(env['BOOST_PYTHON_LIB'].replace('lib','',1))
|
|
|
|
else:
|
|
|
|
libraries.append('boost_python%s' % env['BOOST_APPEND'])
|
2007-03-16 11:11:37 +01:00
|
|
|
|
|
|
|
if env['PLATFORM'] == 'Darwin':
|
2009-11-24 21:32:41 +01:00
|
|
|
libraries.append(env['ICU_LIB_NAME'])
|
2008-12-05 00:20:44 +01:00
|
|
|
libraries.append('boost_regex%s' % env['BOOST_APPEND'])
|
2008-06-29 12:58:29 +02:00
|
|
|
if env['THREADING'] == 'multi':
|
2008-12-05 00:20:44 +01:00
|
|
|
libraries.append('boost_thread%s' % env['BOOST_APPEND'])
|
2009-07-24 09:20:27 +02:00
|
|
|
if '-DHAVE_CAIRO' in env['CXXFLAGS']:
|
2008-03-12 22:46:54 +01:00
|
|
|
libraries.append([lib for lib in env['LIBS'] if lib.startswith('cairo')])
|
2009-12-05 04:07:58 +01:00
|
|
|
|
|
|
|
##### Python linking on OS X is tricky ###
|
|
|
|
# Confounding problems are:
|
|
|
|
# 1) likelyhood of multiple python installs of the same major.minor version
|
|
|
|
# because apple supplies python built-in and many users may have installed
|
|
|
|
# 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
|
|
|
|
# python will Abort with a Verion Mismatch error.
|
|
|
|
# See http://trac.mapnik.org/ticket/453 for the seeds of a better approach
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# http://developer.apple.com/mac/library/DOCUMENTATION/Darwin/Reference/ManPages/man1/ld.1.html
|
|
|
|
|
2010-04-28 07:39:27 +02:00
|
|
|
if env['PYTHON_DYNAMIC_LOOKUP']:
|
|
|
|
linkflags = '-undefined dynamic_lookup'
|
|
|
|
elif env['FRAMEWORK_PYTHON']:
|
2009-12-05 04:07:58 +01:00
|
|
|
if env['FRAMEWORK_SEARCH_PATH']:
|
|
|
|
# if the user has supplied a custom root path to search for
|
|
|
|
# a given Python framework, then use that to direct the linker
|
|
|
|
linkflags = '-F%s -framework Python -Z' % env['FRAMEWORK_SEARCH_PATH']
|
|
|
|
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/
|
|
|
|
# See: http://trac.mapnik.org/ticket/380
|
2009-12-05 04:51:29 +01:00
|
|
|
link_prefix = env['PYTHON_SYS_PREFIX']
|
|
|
|
if '.framework' in link_prefix:
|
|
|
|
linkflags = '-F%s -framework Python -Z' % os.path.dirname(link_prefix.split('.')[0])
|
|
|
|
elif '/System' in link_prefix:
|
2009-12-05 04:07:58 +01:00
|
|
|
linkflags = '-F/System/Library/Frameworks/ -framework Python -Z'
|
|
|
|
else:
|
|
|
|
# should we fall back to -lpython here?
|
|
|
|
linkflags = '-F/ -framework Python'
|
|
|
|
|
|
|
|
# if we are not linking to a framework then use the *nix standard approach
|
2009-02-25 02:02:43 +01:00
|
|
|
else:
|
|
|
|
linkflags = '-lpython%s' % env['PYTHON_VERSION']
|
2007-03-16 11:11:37 +01:00
|
|
|
|
2009-12-15 20:25:35 +01:00
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2009-03-29 21:05:42 +02:00
|
|
|
paths = '''
|
|
|
|
"""Configuration paths of Mapnik fonts and input plugins (autogenerated by SCons)."""
|
|
|
|
|
2009-03-30 06:15:11 +02:00
|
|
|
import os
|
|
|
|
|
2006-03-28 03:07:01 +02:00
|
|
|
mapniklibpath = '%s'
|
2009-03-29 21:05:42 +02:00
|
|
|
'''
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2009-03-30 06:15:11 +02:00
|
|
|
paths += "inputpluginspath = os.path.normpath(mapniklibpath + '/input')\n"
|
2009-02-20 20:31:08 +01:00
|
|
|
|
|
|
|
if env['SYSTEM_FONTS']:
|
2009-03-30 06:15:11 +02:00
|
|
|
paths += "fontscollectionpath = os.path.normpath('%s')" % env['SYSTEM_FONTS']
|
2009-02-20 20:31:08 +01:00
|
|
|
else:
|
2009-03-30 06:15:11 +02:00
|
|
|
paths += "fontscollectionpath = os.path.normpath(mapniklibpath + '/fonts')"
|
2009-02-20 20:31:08 +01:00
|
|
|
|
|
|
|
|
2009-02-04 00:00:03 +01:00
|
|
|
# write out the location of the 'mapniklibpath' into a python file
|
2009-02-20 20:31:08 +01:00
|
|
|
# so that the python module can locate it at runtime
|
2008-01-24 15:44:04 +01:00
|
|
|
exp = r"%s{2,}" % os.sep
|
2009-03-30 06:15:11 +02:00
|
|
|
# Note: we use prefix rather than install_prefix here since install_prefix is for package building
|
2009-02-20 20:31:08 +01:00
|
|
|
# and we intend for python to look to the standard prefix location to find the fonts and plugins
|
2009-02-23 01:47:01 +01:00
|
|
|
mapnik_lib_path = re.sub(exp,os.sep, prefix + '/' + env['LIBDIR_SCHEMA'] + env['LIB_DIR_NAME'])
|
2009-02-20 20:31:08 +01:00
|
|
|
file('mapnik/paths.py','w').write(paths % (mapnik_lib_path))
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2009-02-27 00:35:09 +01:00
|
|
|
try:
|
|
|
|
os.chmod('mapnik/paths.py',0666)
|
|
|
|
except: pass
|
|
|
|
|
2009-02-04 00:00:03 +01:00
|
|
|
# install the core mapnik python files, including '__init__.py' and 'paths.py'
|
|
|
|
init_files = glob.glob('mapnik/*.py')
|
2010-03-08 12:54:44 +01:00
|
|
|
init_module = env.Install(env['PYTHON_INSTALL_LOCATION'] + '/mapnik2', init_files)
|
2009-02-04 00:00:03 +01:00
|
|
|
env.Alias(target='install', source=init_module)
|
|
|
|
|
|
|
|
# install the ogcserver module code
|
|
|
|
ogcserver_files = glob.glob('mapnik/ogcserver/*.py')
|
2010-03-08 12:54:44 +01:00
|
|
|
ogcserver_module = env.Install(env['PYTHON_INSTALL_LOCATION'] + '/mapnik2/ogcserver', ogcserver_files)
|
2009-02-04 00:00:03 +01:00
|
|
|
env.Alias(target='install', source=ogcserver_module)
|
|
|
|
|
|
|
|
|
|
|
|
# install the shared object beside the module directory
|
2010-07-14 01:53:30 +02:00
|
|
|
_mapnik = env.LoadableModule('mapnik/_mapnik2', glob.glob('*.cpp'), LIBS=libraries, LDMODULEPREFIX='', LDMODULESUFFIX='.so', CPPPATH=headers,LINKFLAGS=linkflags)
|
2010-03-08 12:54:44 +01:00
|
|
|
pymapniklib = env.Install(env['PYTHON_INSTALL_LOCATION'] + '/mapnik2',_mapnik)
|
2009-06-29 16:04:44 +02:00
|
|
|
env.Alias(target='install',source=pymapniklib)
|