2005-06-17 14:40:51 +02: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
|
|
|
|
#
|
2005-06-17 14:40:51 +02:00
|
|
|
# $Id$
|
|
|
|
|
2006-03-31 12:32:02 +02:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
import glob
|
2008-01-03 13:16:27 +01:00
|
|
|
import os
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
Import('env')
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2009-02-17 21:32:46 +01:00
|
|
|
ABI_VERSION = env['ABI_VERSION']
|
2008-01-03 13:16:27 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
prefix = env['PREFIX']
|
2009-03-30 22:47:26 +02:00
|
|
|
|
2009-04-26 05:33:29 +02:00
|
|
|
lib_dir = os.path.normpath(prefix + '/' + env['LIBDIR_SCHEMA'])
|
|
|
|
|
2006-12-17 13:05:47 +01:00
|
|
|
install_prefix = env['DESTDIR'] + '/' + prefix
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2009-06-30 23:58:05 +02:00
|
|
|
filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
|
|
|
|
regex = 'boost_regex%s' % env['BOOST_APPEND']
|
2008-07-29 20:35:27 +02:00
|
|
|
|
2009-11-24 21:32:41 +01:00
|
|
|
libraries = ['freetype','ltdl','png','tiff','z','jpeg','proj',env['ICU_LIB_NAME'],filesystem,regex]
|
2009-06-30 23:58:05 +02:00
|
|
|
|
2010-07-14 06:40:33 +02:00
|
|
|
if env['HAS_CAIRO']:
|
2009-07-01 00:12:11 +02:00
|
|
|
# add cairo and cairomm-1.0 to libs
|
2010-07-15 00:47:34 +02:00
|
|
|
libraries.append('cairomm-1.0')
|
|
|
|
libraries.append('cairo')
|
2009-06-30 23:58:05 +02:00
|
|
|
|
|
|
|
if env['XMLPARSER'] == 'libxml2':
|
|
|
|
libraries.append('xml2')
|
|
|
|
|
|
|
|
if env['THREADING'] == 'multi':
|
|
|
|
libraries.append('boost_thread%s' % env['BOOST_APPEND'])
|
|
|
|
|
|
|
|
if env['PLATFORM'] == 'Darwin':
|
2010-02-21 02:00:09 +01:00
|
|
|
if env['HAS_BOOST_SYSTEM']:
|
2009-06-30 23:58:05 +02:00
|
|
|
libraries.append('boost_system%s' % env['BOOST_APPEND'])
|
|
|
|
|
2008-07-29 20:35:27 +02:00
|
|
|
if env['INTERNAL_LIBAGG']:
|
|
|
|
libraries.insert(0, 'agg')
|
2009-08-28 01:18:09 +02:00
|
|
|
else:
|
2009-08-28 17:44:06 +02:00
|
|
|
libraries.append([lib for lib in env['LIBS'] if lib.startswith('agg')])
|
2009-08-28 01:18:09 +02:00
|
|
|
|
2006-02-21 20:55:24 +01:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
if env['PLATFORM'] == 'Darwin':
|
2009-04-26 05:33:29 +02:00
|
|
|
if env['FULL_LIB_PATH']:
|
2010-03-17 22:03:02 +01:00
|
|
|
lib_path = '%s/libmapnik2.dylib' % lib_dir
|
2009-04-26 05:33:29 +02:00
|
|
|
else:
|
2010-03-17 22:03:02 +01:00
|
|
|
lib_path = 'libmapnik2.dylib'
|
2009-04-26 05:33:29 +02:00
|
|
|
linkflags = '-Wl,-install_name,%s' % lib_path
|
2010-01-11 19:53:50 +01:00
|
|
|
linkflags += ' -current_version 0.8.0 -compatibility_version 0.8.0'
|
2008-01-21 21:15:07 +01:00
|
|
|
elif env['PLATFORM'] == 'SunOS' and env['CXX'].startswith('CC'):
|
|
|
|
linkflags = '-R. -h libmapnik.so'
|
2007-03-16 11:11:37 +01:00
|
|
|
else: # Linux and others
|
2010-03-17 22:03:02 +01:00
|
|
|
linkflags = '-Wl,-rpath-link,. -Wl,-soname,libmapnik2.so.' + ("%d.%d" % (ABI_VERSION[0],ABI_VERSION[1]))
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
source = Split(
|
2005-09-08 15:05:39 +02:00
|
|
|
"""
|
2010-07-14 06:40:33 +02:00
|
|
|
color.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
datasource_cache.cpp
|
2009-12-16 21:02:06 +01:00
|
|
|
box2d.cpp
|
2010-06-18 17:39:32 +02:00
|
|
|
expression_node.cpp
|
2009-12-16 21:02:06 +01:00
|
|
|
expression_string.cpp
|
2006-10-04 13:22:18 +02:00
|
|
|
filter_factory.cpp
|
|
|
|
font_engine_freetype.cpp
|
2008-06-29 12:58:48 +02:00
|
|
|
font_set.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
graphics.cpp
|
2009-12-16 21:02:06 +01:00
|
|
|
image_cache.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
image_reader.cpp
|
|
|
|
image_util.cpp
|
|
|
|
layer.cpp
|
2006-10-04 13:22:18 +02:00
|
|
|
line_pattern_symbolizer.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
map.cpp
|
2007-09-25 20:47:12 +02:00
|
|
|
load_map.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
memory.cpp
|
|
|
|
params.cpp
|
2010-06-18 17:39:32 +02:00
|
|
|
parse_path.cpp
|
2006-10-17 16:12:53 +02:00
|
|
|
placement_finder.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
plugin.cpp
|
|
|
|
png_reader.cpp
|
2006-02-07 15:41:41 +01:00
|
|
|
point_symbolizer.cpp
|
2006-01-23 14:24:41 +01:00
|
|
|
polygon_pattern_symbolizer.cpp
|
2006-10-03 12:03:31 +02:00
|
|
|
save_map.cpp
|
2006-10-17 16:12:53 +02:00
|
|
|
shield_symbolizer.cpp
|
2006-10-04 13:22:18 +02:00
|
|
|
text_symbolizer.cpp
|
|
|
|
tiff_reader.cpp
|
|
|
|
wkb.cpp
|
2006-10-17 19:26:35 +02:00
|
|
|
projection.cpp
|
|
|
|
proj_transform.cpp
|
2006-10-19 00:44:37 +02:00
|
|
|
distance.cpp
|
|
|
|
scale_denominator.cpp
|
2006-12-06 21:26:59 +01:00
|
|
|
memory_datasource.cpp
|
2007-09-25 20:47:12 +02:00
|
|
|
stroke.cpp
|
|
|
|
symbolizer.cpp
|
2007-11-02 13:50:15 +01:00
|
|
|
arrow.cpp
|
2008-01-03 12:41:00 +01:00
|
|
|
unicode.cpp
|
2010-03-18 21:04:35 +01:00
|
|
|
glyph_symbolizer.cpp
|
2010-06-06 14:10:36 +02:00
|
|
|
markers_symbolizer.cpp
|
2010-07-06 02:37:05 +02:00
|
|
|
metawriter.cpp
|
2010-05-27 13:19:09 +02:00
|
|
|
"""
|
2005-06-14 17:06:59 +02:00
|
|
|
)
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2010-07-14 06:40:33 +02:00
|
|
|
|
2010-06-03 23:24:58 +02:00
|
|
|
if env['JPEG']:
|
|
|
|
source += Split(
|
|
|
|
"""
|
|
|
|
jpeg_reader.cpp
|
|
|
|
""")
|
|
|
|
|
2010-06-01 15:31:18 +02:00
|
|
|
if True : # agg backend
|
2010-05-27 13:19:09 +02:00
|
|
|
source += Split(
|
|
|
|
"""
|
2010-06-24 17:57:25 +02:00
|
|
|
agg/agg_renderer.cpp
|
|
|
|
agg/process_building_symbolizer.cpp
|
2010-06-19 22:52:44 +02:00
|
|
|
agg/process_glyph_symbolizer.cpp
|
|
|
|
agg/process_line_symbolizer.cpp
|
2010-06-24 17:57:25 +02:00
|
|
|
agg/process_line_pattern_symbolizer.cpp
|
2010-06-19 23:01:30 +02:00
|
|
|
agg/process_text_symbolizer.cpp
|
2010-06-01 15:31:18 +02:00
|
|
|
agg/process_point_symbolizer.cpp
|
2010-06-19 22:52:44 +02:00
|
|
|
agg/process_polygon_symbolizer.cpp
|
2010-06-20 05:56:03 +02:00
|
|
|
agg/process_polygon_pattern_symbolizer.cpp
|
2010-06-24 17:57:25 +02:00
|
|
|
agg/process_raster_symbolizer.cpp
|
2010-06-01 15:31:18 +02:00
|
|
|
agg/process_shield_symbolizer.cpp
|
|
|
|
agg/process_markers_symbolizer.cpp
|
2010-05-28 18:34:58 +02:00
|
|
|
svg_parser.cpp
|
2010-05-27 13:19:09 +02:00
|
|
|
svg_path_parser.cpp
|
|
|
|
svg_points_parser.cpp
|
|
|
|
svg_transform_parser.cpp
|
2010-05-27 13:41:02 +02:00
|
|
|
marker_cache.cpp
|
2010-05-27 13:19:09 +02:00
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2010-07-15 00:47:34 +02:00
|
|
|
if env['HAS_CAIRO']:
|
2010-07-14 06:40:33 +02:00
|
|
|
env2 = env.Clone()
|
|
|
|
env2.Append(CXXFLAGS = '-DHAVE_CAIRO')
|
2010-07-15 02:20:50 +02:00
|
|
|
env2.ParseConfig('pkg-config --libs --cflags cairomm-1.0')
|
2010-07-14 06:40:33 +02:00
|
|
|
fixup = ['cairo_renderer.cpp','graphics.cpp','image_util.cpp']
|
|
|
|
for cpp in fixup:
|
|
|
|
if cpp in source:
|
|
|
|
source.remove(cpp)
|
|
|
|
source.insert(0,env2.SharedObject(cpp))
|
2008-02-18 22:40:34 +01:00
|
|
|
|
2007-09-25 20:47:12 +02:00
|
|
|
if env['XMLPARSER'] == 'tinyxml':
|
|
|
|
source += Split(
|
|
|
|
"""
|
|
|
|
../tinyxml/tinystr.cpp
|
|
|
|
../tinyxml/tinyxml.cpp
|
|
|
|
../tinyxml/tinyxmlerror.cpp
|
|
|
|
../tinyxml/tinyxmlparser.cpp
|
|
|
|
""")
|
2010-07-15 02:20:50 +02:00
|
|
|
elif env['XMLPARSER'] == 'libxml2' and env['HAS_LIBXML2']:
|
2007-09-25 20:47:12 +02:00
|
|
|
source += Split(
|
|
|
|
"""
|
|
|
|
libxml2_loader.cpp
|
|
|
|
""")
|
2010-07-15 02:20:50 +02:00
|
|
|
env2 = env.Clone()
|
|
|
|
env2.Append(CXXFLAGS = '-DHAVE_LIBXML2')
|
|
|
|
fixup = ['load_map.cpp','libxml2_loader.cpp']
|
|
|
|
for cpp in fixup:
|
|
|
|
if cpp in source:
|
|
|
|
source.remove(cpp)
|
|
|
|
source.insert(0,env2.SharedObject(cpp))
|
2007-09-25 20:47:12 +02:00
|
|
|
|
2010-03-17 22:03:02 +01:00
|
|
|
mapnik = env.SharedLibrary('mapnik2', source, LIBS=libraries, LINKFLAGS=linkflags)
|
2008-01-03 13:16:27 +01: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 17:06:59 +02:00
|
|
|
|
2006-10-27 19:29:39 +02:00
|
|
|
includes = glob.glob('../include/mapnik/*.hpp')
|
2010-07-14 06:40:33 +02:00
|
|
|
|
2006-12-17 13:05:47 +01:00
|
|
|
env.Alias(target='install', source=env.Install(install_prefix+'/include/mapnik', includes))
|