diff options
author | 2008-01-17 14:08:07 +0000 | |
---|---|---|
committer | 2008-01-17 14:08:07 +0000 | |
commit | d44fed44f8b5a405ad5200a3a53e9b42bc495bdf (patch) | |
tree | 015b266085bb0e764e3133320957b8c016af240a /dev-python/IcePy | |
parent | Upstream source no longer available for these beta versions (Bug #206210) (diff) | |
download | gentoo-2-d44fed44f8b5a405ad5200a3a53e9b42bc495bdf.tar.gz gentoo-2-d44fed44f8b5a405ad5200a3a53e9b42bc495bdf.tar.bz2 gentoo-2-d44fed44f8b5a405ad5200a3a53e9b42bc495bdf.zip |
set the PYTHON_VERSION environment variable so we pick the right version, from bug #206199
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'dev-python/IcePy')
-rw-r--r-- | dev-python/IcePy/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/IcePy/IcePy-3.2.1.ebuild | 13 |
2 files changed, 14 insertions, 7 deletions
diff --git a/dev-python/IcePy/ChangeLog b/dev-python/IcePy/ChangeLog index 6bb07ab992c8..798efb7636ec 100644 --- a/dev-python/IcePy/ChangeLog +++ b/dev-python/IcePy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/IcePy -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/IcePy/ChangeLog,v 1.10 2007/09/25 19:41:37 angelos Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/IcePy/ChangeLog,v 1.11 2008/01/17 14:08:07 caleb Exp $ + + 17 Jan 2008; Caleb Tennis <caleb@gentoo.org> IcePy-3.2.1.ebuild: + set the PYTHON_VERSION environment variable so we pick the right version, + from bug #206199 25 Sep 2007; Christoph Mende <angelos@gentoo.org> IcePy-3.2.1.ebuild: Stable on amd64 wrt bug #192139 diff --git a/dev-python/IcePy/IcePy-3.2.1.ebuild b/dev-python/IcePy/IcePy-3.2.1.ebuild index 8342c0e05aac..dde07ea366b1 100644 --- a/dev-python/IcePy/IcePy-3.2.1.ebuild +++ b/dev-python/IcePy/IcePy-3.2.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/IcePy/IcePy-3.2.1.ebuild,v 1.4 2007/09/25 19:41:37 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/IcePy/IcePy-3.2.1.ebuild,v 1.5 2008/01/17 14:08:07 caleb Exp $ inherit eutils python multilib @@ -19,9 +19,13 @@ src_unpack() { unpack ${A} cd "${S}" - MAKE_RULES="${S}/config/Make.rules" + python_version + + # Store the PYTHON_VERSION in a variable so the Makefile knows which one to use + PYTHON_VERSION="python${PYVER}" - epatch ${FILESDIR}/icepy-${PV}-makefile.patch + MAKE_RULES="${S}/config/Make.rules" + epatch "${FILESDIR}/icepy-${PV}-makefile.patch" if use amd64; then sed -i -e "s:^#LP64:LP64:g" "${MAKE_RULES}" || die "Failed to set lib64 directory" @@ -39,7 +43,6 @@ src_unpack() { } src_compile() { - cd "${S}" emake || die "Died during make" } |