diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2008-11-08 03:16:43 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2008-11-08 03:16:43 +0000 |
commit | 7d14cb7a51682e508c87f2815b2f1766355ba8cc (patch) | |
tree | 3f84a86cc1e5fb610a623c94df0e8d1b76dd900d /sci-geosciences | |
parent | Work around a failing testsuite that is a circular dependancy by adding RESTR... (diff) | |
download | gentoo-2-7d14cb7a51682e508c87f2815b2f1766355ba8cc.tar.gz gentoo-2-7d14cb7a51682e508c87f2815b2f1766355ba8cc.tar.bz2 gentoo-2-7d14cb7a51682e508c87f2815b2f1766355ba8cc.zip |
Fixed the sed line that modifies the fontpath in mapnik python lib.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.5 x86_64)
Diffstat (limited to 'sci-geosciences')
-rw-r--r-- | sci-geosciences/mapnik/ChangeLog | 6 | ||||
-rw-r--r-- | sci-geosciences/mapnik/mapnik-0.5.1.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sci-geosciences/mapnik/ChangeLog b/sci-geosciences/mapnik/ChangeLog index 35ef98ee64f6..308ec05eac79 100644 --- a/sci-geosciences/mapnik/ChangeLog +++ b/sci-geosciences/mapnik/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-geosciences/mapnik # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mapnik/ChangeLog,v 1.4 2008/11/02 02:33:49 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mapnik/ChangeLog,v 1.5 2008/11/08 03:16:43 nerdboy Exp $ + + 08 Nov 2008; Steve Arnold <nerdboy@gentoo.org> mapnik-0.5.1.ebuild: + Fixed the sed that modifies the fontpath in mapnik python lib. The + rendering problem reported in bug #239402 has been verified as fixed. 02 Nov 2008; Steve Arnold <nerdboy@gentoo.org> mapnik-0.5.1.ebuild: Fixed PGSQL linkage issues and other whacked build stuff; added diff --git a/sci-geosciences/mapnik/mapnik-0.5.1.ebuild b/sci-geosciences/mapnik/mapnik-0.5.1.ebuild index 7f7dc87f610c..54b3bbd17e2f 100644 --- a/sci-geosciences/mapnik/mapnik-0.5.1.ebuild +++ b/sci-geosciences/mapnik/mapnik-0.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mapnik/mapnik-0.5.1.ebuild,v 1.4 2008/11/02 02:33:49 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mapnik/mapnik-0.5.1.ebuild,v 1.5 2008/11/08 03:16:43 nerdboy Exp $ inherit eutils toolchain-funcs @@ -37,7 +37,7 @@ src_unpack() { epatch "${FILESDIR}"/${P}-include-fix.patch - sed -i -e "s:mapniklibpath + '/fonts':/usr/share/fonts/dejavu/:g" \ + sed -i -e "s:mapniklibpath + '/fonts':'/usr/share/fonts/dejavu/':g" \ bindings/python/SConscript || die "sed 1 failed" sed -i -e "s:/usr/local:/usr:g" SConstruct \ || die "sed 2 failed" |