2005-06-17 12:40:51 +00:00
|
|
|
#
|
2006-03-31 10:32:02 +00: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
|
|
|
|
#
|
2005-06-17 12:40:51 +00:00
|
|
|
# $Id$
|
|
|
|
|
2006-03-31 10:32:02 +00:00
|
|
|
|
2005-06-14 15:06:59 +00:00
|
|
|
import glob
|
2008-01-03 12:16:27 +00:00
|
|
|
import os
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2006-01-31 23:09:52 +00:00
|
|
|
Import('env')
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2009-02-17 20:32:46 +00:00
|
|
|
ABI_VERSION = env['ABI_VERSION']
|
2008-01-03 12:16:27 +00:00
|
|
|
|
2005-06-14 15:06:59 +00:00
|
|
|
prefix = env['PREFIX']
|
2009-03-30 20:47:26 +00:00
|
|
|
|
2009-04-26 03:33:29 +00:00
|
|
|
lib_dir = os.path.normpath(prefix + '/' + env['LIBDIR_SCHEMA'])
|
|
|
|
|
2006-12-17 12:05:47 +00:00
|
|
|
install_prefix = env['DESTDIR'] + '/' + prefix
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2009-06-30 21:58:05 +00:00
|
|
|
filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
|
|
|
|
regex = 'boost_regex%s' % env['BOOST_APPEND']
|
2008-07-29 18:35:27 +00:00
|
|
|
|
2009-06-30 21:58:05 +00:00
|
|
|
libraries = ['freetype','ltdl','png','tiff','z','jpeg','proj','icuuc',filesystem,regex]
|
|
|
|
|
|
|
|
if env['CAIRO']:
|
|
|
|
libraries.append('cairo')
|
|
|
|
libraries.append('cairomm-1.0')
|
|
|
|
|
|
|
|
if env['XMLPARSER'] == 'libxml2':
|
|
|
|
libraries.append('xml2')
|
|
|
|
|
|
|
|
if env['THREADING'] == 'multi':
|
|
|
|
libraries.append('boost_thread%s' % env['BOOST_APPEND'])
|
|
|
|
|
|
|
|
if env['PLATFORM'] == 'Darwin':
|
|
|
|
#libraries.append('icudata')
|
|
|
|
if env['BOOST_SYSTEM_REQUIRED']:
|
|
|
|
libraries.append('boost_system%s' % env['BOOST_APPEND'])
|
|
|
|
|
2008-07-29 18:35:27 +00:00
|
|
|
if env['INTERNAL_LIBAGG']:
|
|
|
|
libraries.insert(0, 'agg')
|
2006-02-21 19:55:24 +00:00
|
|
|
|
2007-03-16 10:11:37 +00:00
|
|
|
if env['PLATFORM'] == 'Darwin':
|
2009-04-26 03:33:29 +00:00
|
|
|
if env['FULL_LIB_PATH']:
|
|
|
|
lib_path = '%s/libmapnik.dylib' % lib_dir
|
|
|
|
else:
|
|
|
|
lib_path = 'libmapnik.dylib'
|
|
|
|
linkflags = '-Wl,-install_name,%s' % lib_path
|
2009-04-26 04:28:00 +00:00
|
|
|
linkflags += ' -current_version 0.6.0 -compatibility_version 0.6.0'
|
2008-01-21 20:15:07 +00:00
|
|
|
elif env['PLATFORM'] == 'SunOS' and env['CXX'].startswith('CC'):
|
|
|
|
linkflags = '-R. -h libmapnik.so'
|
2007-03-16 10:11:37 +00:00
|
|
|
else: # Linux and others
|
2009-04-26 03:33:29 +00:00
|
|
|
linkflags = '-Wl,-rpath-link,. -Wl,-soname,libmapnik.so.' + ("%d.%d" % (ABI_VERSION[0],ABI_VERSION[1]))
|
2005-06-14 15:06:59 +00:00
|
|
|
|
|
|
|
source = Split(
|
2005-09-08 13:05:39 +00:00
|
|
|
"""
|
2006-10-04 11:22:18 +00:00
|
|
|
agg_renderer.cpp
|
2005-06-14 15:06:59 +00:00
|
|
|
datasource_cache.cpp
|
2009-01-14 12:10:24 +00:00
|
|
|
color.cpp
|
2005-06-14 15:06:59 +00:00
|
|
|
envelope.cpp
|
2006-10-04 11:22:18 +00:00
|
|
|
filter_factory.cpp
|
|
|
|
font_engine_freetype.cpp
|
2008-06-29 10:58:48 +00:00
|
|
|
font_set.cpp
|
2005-06-14 15:06:59 +00:00
|
|
|
graphics.cpp
|
|
|
|
image_reader.cpp
|
|
|
|
image_util.cpp
|
|
|
|
layer.cpp
|
2006-10-04 11:22:18 +00:00
|
|
|
line_pattern_symbolizer.cpp
|
2005-06-14 15:06:59 +00:00
|
|
|
map.cpp
|
2007-09-25 18:47:12 +00:00
|
|
|
load_map.cpp
|
2005-06-14 15:06:59 +00:00
|
|
|
memory.cpp
|
|
|
|
params.cpp
|
2006-10-17 14:12:53 +00:00
|
|
|
placement_finder.cpp
|
2005-06-14 15:06:59 +00:00
|
|
|
plugin.cpp
|
|
|
|
png_reader.cpp
|
2006-02-07 14:41:41 +00:00
|
|
|
point_symbolizer.cpp
|
2006-01-23 13:24:41 +00:00
|
|
|
polygon_pattern_symbolizer.cpp
|
2006-10-03 10:03:31 +00:00
|
|
|
save_map.cpp
|
2006-10-17 14:12:53 +00:00
|
|
|
shield_symbolizer.cpp
|
2006-10-04 11:22:18 +00:00
|
|
|
text_symbolizer.cpp
|
|
|
|
tiff_reader.cpp
|
|
|
|
wkb.cpp
|
2006-10-17 17:26:35 +00:00
|
|
|
projection.cpp
|
|
|
|
proj_transform.cpp
|
2006-10-18 22:44:37 +00:00
|
|
|
distance.cpp
|
|
|
|
scale_denominator.cpp
|
2006-12-06 20:26:59 +00:00
|
|
|
memory_datasource.cpp
|
2007-09-25 18:47:12 +00:00
|
|
|
stroke.cpp
|
|
|
|
symbolizer.cpp
|
2007-11-02 12:50:15 +00:00
|
|
|
arrow.cpp
|
2008-01-03 11:41:00 +00:00
|
|
|
unicode.cpp
|
2006-01-23 13:24:41 +00:00
|
|
|
"""
|
2005-06-14 15:06:59 +00:00
|
|
|
)
|
2007-09-25 18:47:12 +00:00
|
|
|
|
2008-03-12 19:14:51 +00:00
|
|
|
if 'cairo' in env['LIBS']:
|
|
|
|
source += Split(
|
|
|
|
"""
|
|
|
|
cairo_renderer.cpp
|
|
|
|
""")
|
2008-02-18 21:40:34 +00:00
|
|
|
|
2007-09-25 18:47:12 +00:00
|
|
|
if env['XMLPARSER'] == 'tinyxml':
|
|
|
|
source += Split(
|
|
|
|
"""
|
|
|
|
../tinyxml/tinystr.cpp
|
|
|
|
../tinyxml/tinyxml.cpp
|
|
|
|
../tinyxml/tinyxmlerror.cpp
|
|
|
|
../tinyxml/tinyxmlparser.cpp
|
|
|
|
""")
|
|
|
|
elif env['XMLPARSER'] == 'libxml2':
|
|
|
|
source += Split(
|
|
|
|
"""
|
|
|
|
libxml2_loader.cpp
|
|
|
|
""")
|
|
|
|
|
2006-03-10 12:08:55 +00:00
|
|
|
|
2006-01-31 23:09:52 +00:00
|
|
|
mapnik = env.SharedLibrary('mapnik', source, LIBS=libraries, LINKFLAGS=linkflags)
|
2008-01-03 12:16:27 +00:00
|
|
|
if env['PLATFORM'] != 'Darwin':
|
|
|
|
# Symlink command, only works if both files are in same directory
|
|
|
|
def symlink(env, target, source):
|
|
|
|
trgt = str(target[0])
|
|
|
|
src = str(source[0])
|
|
|
|
|
|
|
|
if os.path.islink(trgt) or os.path.exists(trgt):
|
|
|
|
os.remove(trgt)
|
|
|
|
os.symlink(os.path.basename(src), trgt)
|
|
|
|
|
|
|
|
major, minor, micro = ABI_VERSION
|
|
|
|
|
|
|
|
soFile = "%s.%d.%d.%d" % (os.path.basename(str(mapnik[0])), major, minor, micro)
|
|
|
|
libDir = install_prefix + '/' + env['LIBDIR_SCHEMA']
|
|
|
|
env.Alias(target='install', source=env.InstallAs(target=os.path.join(libDir, soFile), source=mapnik))
|
|
|
|
# Install symlinks
|
|
|
|
link1 = env.Command(os.path.join(libDir, "%s.%d.%d" % (os.path.basename(str(mapnik[0])),major, minor)),
|
|
|
|
os.path.join(libDir, soFile), symlink)
|
|
|
|
env.Alias(target='install', source=link1)
|
|
|
|
link2 = env.Command(os.path.join(libDir, os.path.basename(str(mapnik[0]))),
|
|
|
|
os.path.join(libDir, "%s.%d.%d" % (os.path.basename(str(mapnik[0])),major, minor)), symlink)
|
|
|
|
env.Alias(target='install', source=link2)
|
|
|
|
else:
|
|
|
|
env.Alias(target='install', source=env.Install(install_prefix + '/' + env['LIBDIR_SCHEMA'], mapnik))
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2006-10-27 17:29:39 +00:00
|
|
|
includes = glob.glob('../include/mapnik/*.hpp')
|
2006-12-17 12:05:47 +00:00
|
|
|
env.Alias(target='install', source=env.Install(install_prefix+'/include/mapnik', includes))
|