diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-01-12 20:09:21 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-01-12 20:09:21 +0000 |
commit | 24d8d51928837b6e76ecc5869d970c75a51d91f6 (patch) | |
tree | b454caa448f331f99dfc5705e396b163f670e788 /sci-libs | |
parent | modify the order of preserve_libs call so that a user that follows the instru... (diff) | |
download | gentoo-2-24d8d51928837b6e76ecc5869d970c75a51d91f6.tar.gz gentoo-2-24d8d51928837b6e76ecc5869d970c75a51d91f6.tar.bz2 gentoo-2-24d8d51928837b6e76ecc5869d970c75a51d91f6.zip |
Fixed for strict amd64
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/geos/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/geos/geos-3.2.0.ebuild | 10 |
2 files changed, 13 insertions, 2 deletions
diff --git a/sci-libs/geos/ChangeLog b/sci-libs/geos/ChangeLog index be66b47d352c..685adf6b8099 100644 --- a/sci-libs/geos/ChangeLog +++ b/sci-libs/geos/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/geos # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.41 2010/01/07 02:50:56 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/ChangeLog,v 1.42 2010/01/12 20:09:21 bicatali Exp $ + + 12 Jan 2010; Sébastien Fabbro <bicatali@gentoo.org> geos-3.2.0.ebuild: + Fixed for strict amd64 *geos-3.2.0 (07 Jan 2010) diff --git a/sci-libs/geos/geos-3.2.0.ebuild b/sci-libs/geos/geos-3.2.0.ebuild index 2f98e49cff40..833545c41f68 100644 --- a/sci-libs/geos/geos-3.2.0.ebuild +++ b/sci-libs/geos/geos-3.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.0.ebuild,v 1.1 2010/01/07 02:50:56 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-3.2.0.ebuild,v 1.2 2010/01/12 20:09:21 bicatali Exp $ EAPI=2 @@ -20,6 +20,14 @@ DEPEND="${RDEPEND} ruby? ( dev-lang/swig ) python? ( dev-lang/swig )" +src_prepare() { + # quick fix not worth for eautoreconf + sed -i \ + -e 's|\/lib\/python|$libdir\/python|g' \ + -e 's|.get_python_lib(0|.get_python_lib(1|g' \ + configure || die +} + src_configure() { econf $(use_enable python) $(use_enable ruby) } |