2005-09-21 22:27:37 +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-09-21 22:27:37 +02:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
Import ('env')
|
|
|
|
|
|
|
|
prefix = env['PREFIX']
|
2006-12-17 13:05:47 +01:00
|
|
|
install_prefix = env['DESTDIR'] + '/' + prefix
|
2005-09-21 22:27:37 +02:00
|
|
|
|
|
|
|
raster_src = Split(
|
|
|
|
"""
|
|
|
|
raster_datasource.cpp
|
|
|
|
raster_featureset.cpp
|
|
|
|
raster_info.cpp
|
|
|
|
"""
|
|
|
|
)
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
libraries = []
|
|
|
|
if env['PLATFORM'] == 'Darwin':
|
|
|
|
libraries.append('mapnik')
|
2008-06-29 12:58:29 +02:00
|
|
|
libraries.append('icuuc')
|
|
|
|
libraries.append('icudata')
|
2007-03-16 11:11:37 +01:00
|
|
|
|
|
|
|
raster_inputdriver = env.SharedLibrary('raster', source=raster_src, SHLIBPREFIX='', SHLIBSUFFIX='.input', LIBS=libraries)
|
2006-02-01 00:09:52 +01:00
|
|
|
|
2006-12-17 13:05:47 +01:00
|
|
|
env.Install(install_prefix + '/' + env['LIBDIR_SCHEMA'] + '/mapnik/input', raster_inputdriver)
|
|
|
|
env.Alias('install', install_prefix + '/' + env['LIBDIR_SCHEMA'] + '/mapnik/input')
|