diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/mapnik | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/mapnik')
-rw-r--r-- | community/mapnik/PKGBUILD | 46 | ||||
-rw-r--r-- | community/mapnik/mapnik-2.1.0-compile-fix-for-boost-1.53.patch | 36 | ||||
-rw-r--r-- | community/mapnik/mapnik.install | 11 |
3 files changed, 0 insertions, 93 deletions
diff --git a/community/mapnik/PKGBUILD b/community/mapnik/PKGBUILD deleted file mode 100644 index 8d572e131..000000000 --- a/community/mapnik/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: PKGBUILD 94032 2013-07-13 12:33:54Z svenstaro $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: David Dent <thewinch@gmail.com> -# Contributor: orbisvicis <orbisvicis@gmail.com> - -pkgname=mapnik -pkgver=2.2.0 -pkgrel=3 -pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is about rendering beautiful maps" -arch=('i686' 'x86_64') -url="http://mapnik.org/" -license=('LGPL') -depends=('boost-libs' 'icu' 'libpng' 'libjpeg' 'libtiff' 'freetype2' - 'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'pycairo' - 'postgresql-libs' 'postgis' 'gdal' 'curl' 'libltdl') -optdepends=('libxslt: Web Map Service' - 'python2-lxml: Web Map Service' - 'python-imaging: Web Map Service' - 'python-nose: Web Map Service' - 'apache: Web Map Service' - 'mod_fastcgi: Web Map Service - or:' - 'mod_fcgid: Web Map Service - or:' - 'mod_wsgi2: Web Map Service') -makedepends=('scons' 'boost') -install="mapnik.install" -source=("https://github.com/mapnik/mapnik/archive/v$pkgver.tar.gz") -md5sums=('b837931c7f1a4dc630d8550d3e635036') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - sed -i 's|lib64|lib|g' SConstruct - sed -i 's|python|python2|' \ - utils/performance/mapnik-speed-check \ - utils/upgrade_map_xml/*.py - scons configure \ - PREFIX="/usr" \ - INPUT_PLUGINS=all \ - DESTDIR="$pkgdir" - scons $MAKEFLAGS -} - -package(){ - cd "$srcdir/$pkgname-$pkgver" - scons install -} diff --git a/community/mapnik/mapnik-2.1.0-compile-fix-for-boost-1.53.patch b/community/mapnik/mapnik-2.1.0-compile-fix-for-boost-1.53.patch deleted file mode 100644 index 00b37c08f..000000000 --- a/community/mapnik/mapnik-2.1.0-compile-fix-for-boost-1.53.patch +++ /dev/null @@ -1,36 +0,0 @@ -From cf70b9959a45b9ab6af4a34824a5e4e80ce1d05c Mon Sep 17 00:00:00 2001 -From: Dane Springmeyer <dane@dbsgeo.com> -Date: Sun, 10 Feb 2013 07:24:35 -0800 -Subject: [PATCH] fix compile of json feature_collection grammar when building - against >= boost 1.52 - refs #1658 and #1716 - ---- - src/json/feature_collection_parser.cpp | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/src/json/feature_collection_parser.cpp b/src/json/feature_collection_parser.cpp -index 3faeda7..51ad824 100644 ---- a/src/json/feature_collection_parser.cpp -+++ b/src/json/feature_collection_parser.cpp -@@ -20,12 +20,17 @@ - * - *****************************************************************************/ - -+// TODO https://github.com/mapnik/mapnik/issues/1658 -+#include <boost/version.hpp> -+#if BOOST_VERSION >= 105200 -+#define BOOST_SPIRIT_USE_PHOENIX_V3 -+#endif -+ - // mapnik - #include <mapnik/json/feature_collection_parser.hpp> - #include <mapnik/json/feature_collection_grammar.hpp> - - // boost --#include <boost/version.hpp> - #include <boost/spirit/include/qi.hpp> - #include <boost/spirit/include/support_multi_pass.hpp> - --- -1.8.1.5 - diff --git a/community/mapnik/mapnik.install b/community/mapnik/mapnik.install deleted file mode 100644 index 46f265d5b..000000000 --- a/community/mapnik/mapnik.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - /sbin/ldconfig -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} |