2006-03-03 01:18:08 +01:00
|
|
|
# This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
# Copyright (C) 2005 Artem Pavlenko, Jean-Francois Doyon
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2012-08-28 01:43:40 +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')
|
|
|
|
|
2009-09-30 20:59:05 +02:00
|
|
|
# grab all the deja vu fonts
|
2009-02-20 20:24:48 +01:00
|
|
|
includes = glob.glob('*/*/*.ttf')
|
|
|
|
|
2009-09-30 20:59:05 +02:00
|
|
|
# grab single unifont ttf (available at http://unifoundry.com/unifont.html)
|
2009-09-30 21:42:52 +02:00
|
|
|
includes.extend(glob.glob('unifont*.ttf'))
|
2009-09-30 20:59:05 +02:00
|
|
|
|
2012-08-16 19:05:34 +02:00
|
|
|
target_path = env['MAPNIK_FONTS_DEST']
|
|
|
|
|
2010-07-29 16:37:16 +02:00
|
|
|
if 'uninstall' not in COMMAND_LINE_TARGETS and not env['SYSTEM_FONTS']:
|
2012-08-16 19:05:34 +02:00
|
|
|
env.Alias(target='install', source=env.Install(target_path, includes))
|
|
|
|
|
|
|
|
env['create_uninstall_target'](env, target_path)
|