diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-06-02 10:30:39 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-06-02 10:30:39 +0000 |
commit | ba851febcfb328ced3039e5a2ef352897fcc7856 (patch) | |
tree | f6673a8ec18426bf8777c5bc7edb1afff181472b /sci-visualization/hippodraw | |
parent | fix several critical bugs in the NEEDED conversion code, requiring all NEEDED... (diff) | |
download | gentoo-2-ba851febcfb328ced3039e5a2ef352897fcc7856.tar.gz gentoo-2-ba851febcfb328ced3039e5a2ef352897fcc7856.tar.bz2 gentoo-2-ba851febcfb328ced3039e5a2ef352897fcc7856.zip |
Added check for python's USE=threads (see bug #224269).
(Portage version: 2.1.5.2)
Diffstat (limited to 'sci-visualization/hippodraw')
-rw-r--r-- | sci-visualization/hippodraw/ChangeLog | 6 | ||||
-rw-r--r-- | sci-visualization/hippodraw/hippodraw-1.19.1.ebuild | 10 | ||||
-rw-r--r-- | sci-visualization/hippodraw/hippodraw-1.21.3.ebuild | 9 |
3 files changed, 22 insertions, 3 deletions
diff --git a/sci-visualization/hippodraw/ChangeLog b/sci-visualization/hippodraw/ChangeLog index c3c7a601c0dc..1134957b0b19 100644 --- a/sci-visualization/hippodraw/ChangeLog +++ b/sci-visualization/hippodraw/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-visualization/hippodraw # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/ChangeLog,v 1.2 2008/06/01 20:14:33 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/ChangeLog,v 1.3 2008/06/02 10:30:39 markusle Exp $ + + 02 Jun 2008; Markus Dittrich <markusle@gentoo.org> + hippodraw-1.19.1.ebuild, hippodraw-1.21.3.ebuild: + Added check for python's USE="threads" (see bug #224269). *hippodraw-1.21.3 (01 Jun 2008) diff --git a/sci-visualization/hippodraw/hippodraw-1.19.1.ebuild b/sci-visualization/hippodraw/hippodraw-1.19.1.ebuild index eb73c39e15c4..c1b9cedbfe19 100644 --- a/sci-visualization/hippodraw/hippodraw-1.19.1.ebuild +++ b/sci-visualization/hippodraw/hippodraw-1.19.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-visualization/hippodraw/hippodraw-1.19.1.ebuild,v 1.2 2008/06/01 20:14:33 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.19.1.ebuild,v 1.3 2008/06/02 10:30:39 markusle Exp $ inherit eutils qt3 @@ -36,6 +36,14 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_PN}-${PV} + +pkg_setup() { + # need python threads (see bug #224269) + if ! built_with_use dev-lang/python threads; then + die "hippodraw needs dev-lang/python with USE=\"threads\"" + fi +} + src_unpack() { unpack ${A} cd "${S}" diff --git a/sci-visualization/hippodraw/hippodraw-1.21.3.ebuild b/sci-visualization/hippodraw/hippodraw-1.21.3.ebuild index a967078443c3..01220e0f3974 100644 --- a/sci-visualization/hippodraw/hippodraw-1.21.3.ebuild +++ b/sci-visualization/hippodraw/hippodraw-1.21.3.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-visualization/hippodraw/hippodraw-1.21.3.ebuild,v 1.1 2008/06/01 20:14:33 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/hippodraw/hippodraw-1.21.3.ebuild,v 1.2 2008/06/02 10:30:39 markusle Exp $ inherit eutils qt3 @@ -36,6 +36,13 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_PN}-${PV} +pkg_setup() { + # need python threads (see bug #224269) + if ! built_with_use dev-lang/python threads; then + die "hippodraw needs dev-lang/python with USE=\"threads\"" + fi +} + src_unpack() { unpack ${A} cd "${S}" |