2006-03-03 01:18:08 +01:00
|
|
|
#
|
2013-11-06 01:54:13 +01:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
#
|
2015-06-16 12:49:16 +02:00
|
|
|
# Copyright (C) 2015 Artem Pavlenko
|
2013-11-06 01:54:13 +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
|
|
|
#
|
2006-03-03 01:18:08 +01:00
|
|
|
|
2011-08-12 23:31:28 +02:00
|
|
|
import os
|
2006-03-03 01:18:08 +01:00
|
|
|
import glob
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
2012-09-13 22:40:15 +02:00
|
|
|
if not env['SYSTEM_FONTS']:
|
|
|
|
# grab all the deja vu fonts
|
|
|
|
includes = glob.glob('*/*/*.ttf')
|
|
|
|
# grab single unifont ttf (available at http://unifoundry.com/unifont.html)
|
|
|
|
includes.extend(glob.glob('unifont*.ttf'))
|
|
|
|
target_path = env['MAPNIK_FONTS_DEST']
|
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
|
|
|
env.Alias(target='install', source=env.Install(target_path, includes))
|
2015-06-16 12:49:16 +02:00
|
|
|
env['create_uninstall_target'](env, target_path)
|