2005-06-17 14:40:51 +02:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
# Copyright (C) 2005 Artem Pavlenko
|
|
|
|
#
|
|
|
|
# Mapnik is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or any later version.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
import glob
|
|
|
|
|
|
|
|
Import ('env')
|
|
|
|
|
|
|
|
prefix = env['PREFIX']
|
|
|
|
boost_root = env['BOOST_ROOT']
|
|
|
|
agg_root = env['AGG_ROOT']
|
|
|
|
agg_headers = agg_root + '/include'
|
|
|
|
|
|
|
|
freetype2_root = env['FREETYPE2_ROOT']
|
|
|
|
|
|
|
|
headers =[ '#include',boost_root,freetype2_root,agg_headers]
|
|
|
|
|
2005-12-23 13:31:54 +01:00
|
|
|
libraries=['rt','z','png','ltdl','jpeg','tiff','agg','boost-filesystem','boost-regex','boost-serialization','boost-thread']
|
2005-06-14 17:06:59 +02:00
|
|
|
libpaths = [prefix+'/lib','#agg']
|
|
|
|
linkflags = '-Wl,-rpath-link,. -Wl,-soname,libmapnik.so'
|
|
|
|
|
|
|
|
source = Split(
|
2005-09-08 15:05:39 +02:00
|
|
|
"""
|
2005-12-14 18:01:09 +01:00
|
|
|
mapnik.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
datasource_cache.cpp
|
|
|
|
envelope.cpp
|
|
|
|
graphics.cpp
|
|
|
|
image_reader.cpp
|
|
|
|
image_util.cpp
|
|
|
|
layer.cpp
|
|
|
|
map.cpp
|
|
|
|
memory.cpp
|
|
|
|
params.cpp
|
|
|
|
plugin.cpp
|
|
|
|
png_reader.cpp
|
|
|
|
render.cpp
|
2006-01-23 14:24:41 +01:00
|
|
|
named_style_cache.cpp
|
2005-06-14 17:06:59 +02:00
|
|
|
text.cpp
|
|
|
|
tiff_reader.cpp
|
2006-01-23 14:24:41 +01:00
|
|
|
wkb.cpp
|
|
|
|
line_symbolizer.cpp
|
|
|
|
line_pattern_symbolizer.cpp
|
|
|
|
polygon_symbolizer.cpp
|
|
|
|
polygon_pattern_symbolizer.cpp
|
|
|
|
image_symbolizer.cpp
|
|
|
|
"""
|
2005-06-14 17:06:59 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
lib_mapnik = env.SharedLibrary('libmapnik',source,CPPPATH=headers,LIBS=libraries,LIBPATH=libpaths,LINKFLAGS=linkflags)
|
|
|
|
|
|
|
|
env.Alias(target="install",source=env.Install(prefix+"/lib",lib_mapnik))
|
|
|
|
includes = glob.glob('../include' + '/*.hpp')
|
|
|
|
env.Alias(target="install",source=env.Install(prefix+"/include",includes))
|
|
|
|
|