2009-03-01 08:07:47 +01:00
|
|
|
#
|
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Artem Pavlenko, Dane Springmeyer
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
2011-08-12 23:31:28 +02:00
|
|
|
import os
|
2011-08-12 21:58:49 +02:00
|
|
|
from copy import copy
|
|
|
|
|
2009-03-01 08:07:47 +01:00
|
|
|
Import ('env')
|
|
|
|
|
|
|
|
prefix = env['PREFIX']
|
|
|
|
|
2010-09-18 20:02:15 +02:00
|
|
|
program_env = env.Clone()
|
|
|
|
|
2009-03-01 08:07:47 +01:00
|
|
|
source = Split(
|
|
|
|
"""
|
|
|
|
main.cpp
|
|
|
|
sqlite.cpp
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
|
|
|
headers = ['#plugins/input/postgis'] + env['CPPPATH']
|
|
|
|
|
|
|
|
|
2011-09-13 13:54:27 +02:00
|
|
|
libraries = []
|
2011-08-11 23:11:11 +02:00
|
|
|
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
|
2012-01-23 09:40:16 +01:00
|
|
|
libraries.extend([boost_program_options,'sqlite3','pq','mapnik','icuuc'])
|
2009-03-01 08:07:47 +01:00
|
|
|
|
2011-11-15 21:07:46 +01:00
|
|
|
linkflags = env['CUSTOM_LDFLAGS']
|
|
|
|
if env['SQLITE_LINKFLAGS']:
|
|
|
|
linkflags.append(env['SQLITE_LINKFLAGS'])
|
|
|
|
|
2011-12-21 21:58:10 +01:00
|
|
|
if env['RUNTIME_LINK'] == 'static':
|
|
|
|
libraries.extend(['ldap','pam','ssl','crypto','krb5'])
|
|
|
|
|
2011-11-15 21:07:46 +01:00
|
|
|
pgsql2sqlite = program_env.Program('pgsql2sqlite', source, CPPPATH=headers, LIBS=libraries, LINKFLAGS=linkflags)
|
2011-08-29 23:12:22 +02:00
|
|
|
Depends(pgsql2sqlite, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
|
|
|
|
2010-07-18 22:39:05 +02:00
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
2011-08-12 23:31:28 +02:00
|
|
|
env.Install(os.path.join(env['INSTALL_PREFIX'],'bin'), pgsql2sqlite)
|
|
|
|
env.Alias('install', os.path.join(env['INSTALL_PREFIX'],'bin'))
|
2010-07-18 22:39:05 +02:00
|
|
|
|
2011-08-12 23:31:28 +02:00
|
|
|
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','pgsql2sqlite'))
|