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 = ''
|
2008-01-25 15:40:48 +01:00
|
|
|
libraries = ['mapnik','png','jpeg']
|
2008-12-05 00:20:44 +01:00
|
|
|
libraries.append('boost_python%s' % env['BOOST_APPEND'])
|
2007-03-16 11:11:37 +01:00
|
|
|
|
|
|
|
if env['PLATFORM'] == 'Darwin':
|
2008-02-18 22:40:34 +01:00
|
|
|
libraries.append('icuuc')
|
|
|
|
libraries.append('icudata')
|
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-02-25 02:02:43 +01:00
|
|
|
if env['FRAMEWORK_PYTHON']:
|
2009-06-29 16:04:44 +02:00
|
|
|
linkflags = '-F%s -framework Python' % env['FRAMEWORK_SEARCH_PATH']
|
2009-02-25 02:02:43 +01:00
|
|
|
else:
|
|
|
|
linkflags = '-lpython%s' % env['PYTHON_VERSION']
|
2007-03-16 11:11:37 +01:00
|
|
|
|
2009-02-04 00:00:03 +01:00
|
|
|
headers = [env['PYTHON_INCLUDES']] + env['CPPPATH']
|
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')
|
|
|
|
init_module = env.Install(env['PYTHON_INSTALL_LOCATION'] + '/mapnik', init_files)
|
|
|
|
env.Alias(target='install', source=init_module)
|
|
|
|
|
|
|
|
# install the ogcserver module code
|
|
|
|
ogcserver_files = glob.glob('mapnik/ogcserver/*.py')
|
|
|
|
ogcserver_module = env.Install(env['PYTHON_INSTALL_LOCATION'] + '/mapnik/ogcserver', ogcserver_files)
|
|
|
|
env.Alias(target='install', source=ogcserver_module)
|
|
|
|
|
|
|
|
|
|
|
|
# install the shared object beside the module directory
|
|
|
|
_mapnik = env.LoadableModule('_mapnik', glob.glob('*.cpp'), LIBS=libraries, LDMODULEPREFIX='', LDMODULESUFFIX='.so', CPPPATH=headers,LINKFLAGS=linkflags)
|
|
|
|
pymapniklib = env.Install(env['PYTHON_INSTALL_LOCATION'] + '/mapnik',_mapnik)
|
2009-06-29 16:04:44 +02:00
|
|
|
env.Alias(target='install',source=pymapniklib)
|