2011-01-26 02:19:01 +01:00
|
|
|
#
|
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
#
|
2015-06-16 12:49:16 +02:00
|
|
|
# Copyright (C) 2015 Artem Pavlenko
|
2011-01-26 02:19:01 +01:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
2015-06-16 12:49:16 +02:00
|
|
|
#
|
2011-01-26 02:19:01 +01:00
|
|
|
|
2011-08-12 23:32:16 +02:00
|
|
|
import os
|
2011-01-26 02:19:01 +01:00
|
|
|
import glob
|
2011-08-12 21:58:49 +02:00
|
|
|
from copy import copy
|
2011-01-26 02:19:01 +01:00
|
|
|
|
|
|
|
Import ('env')
|
|
|
|
|
|
|
|
program_env = env.Clone()
|
|
|
|
|
|
|
|
source = Split(
|
|
|
|
"""
|
|
|
|
svg2png.cpp
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
|
2012-04-23 21:22:04 +02:00
|
|
|
program_env['CXXFLAGS'] = copy(env['LIBMAPNIK_CXXFLAGS'])
|
2013-07-24 02:03:00 +02:00
|
|
|
program_env.Append(CPPDEFINES = env['LIBMAPNIK_DEFINES'])
|
2012-04-23 21:22:04 +02:00
|
|
|
|
|
|
|
if env['HAS_CAIRO']:
|
2013-01-09 21:49:39 +01:00
|
|
|
program_env.PrependUnique(CPPPATH=env['CAIRO_CPPPATHS'])
|
2013-03-14 03:49:59 +01:00
|
|
|
program_env.Append(CPPDEFINES = '-DHAVE_CAIRO')
|
2011-01-26 02:19:01 +01:00
|
|
|
|
2013-07-14 21:28:22 +02:00
|
|
|
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
|
2014-06-09 22:55:56 +02:00
|
|
|
libraries = [env['MAPNIK_NAME'],boost_program_options]
|
2013-07-14 21:26:24 +02:00
|
|
|
libraries.extend(copy(env['LIBMAPNIK_LIBS']))
|
|
|
|
if env['RUNTIME_LINK'] == 'static' and env['PLATFORM'] == 'Linux':
|
|
|
|
libraries.append('dl')
|
2011-01-26 02:19:01 +01:00
|
|
|
|
2013-10-22 22:35:46 +02:00
|
|
|
svg2png = program_env.Program('svg2png', source, LIBS=libraries)
|
2011-01-26 02:19:01 +01:00
|
|
|
|
2011-08-11 23:11:11 +02:00
|
|
|
Depends(svg2png, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
|
|
|
|
2011-01-26 02:19:01 +01:00
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
2011-08-12 23:32:16 +02:00
|
|
|
env.Install(os.path.join(env['INSTALL_PREFIX'],'bin'), svg2png)
|
|
|
|
env.Alias('install', os.path.join(env['INSTALL_PREFIX'],'bin'))
|
2011-01-26 02:19:01 +01:00
|
|
|
|
2011-08-12 23:32:16 +02:00
|
|
|
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','svg2png'))
|