diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2009-09-20 12:52:43 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2009-09-20 12:52:43 +0000 |
commit | 2a0a47b14bf16fb75ac97246c6737758a66ddad4 (patch) | |
tree | 73a25c27e5e31e5c8e159285a32ed4038fa9a9ff /sci-mathematics | |
parent | Add a minimum version on media-libs/speex so we can drop the built_with_use c... (diff) | |
download | gentoo-2-2a0a47b14bf16fb75ac97246c6737758a66ddad4.tar.gz gentoo-2-2a0a47b14bf16fb75ac97246c6737758a66ddad4.tar.bz2 gentoo-2-2a0a47b14bf16fb75ac97246c6737758a66ddad4.zip |
Migrate to EAPI 2 in order to nuke built_with_use.
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/drgeo/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/drgeo/drgeo-1.1.0.ebuild | 23 |
2 files changed, 15 insertions, 15 deletions
diff --git a/sci-mathematics/drgeo/ChangeLog b/sci-mathematics/drgeo/ChangeLog index eb9e71aaf3bd..2be0dc3e57dd 100644 --- a/sci-mathematics/drgeo/ChangeLog +++ b/sci-mathematics/drgeo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/drgeo -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/drgeo/ChangeLog,v 1.17 2008/01/08 00:37:47 bicatali Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/drgeo/ChangeLog,v 1.18 2009/09/20 12:52:43 betelgeuse Exp $ + + 20 Sep 2009; Petteri Räty <betelgeuse@gentoo.org> drgeo-1.1.0.ebuild: + Migrate to EAPI 2 in order to nuke built_with_use. 08 Jan 2008; Sébastien Fabbro <bicatali@gentoo.org> metadata.xml, drgeo-1.1.0.ebuild: diff --git a/sci-mathematics/drgeo/drgeo-1.1.0.ebuild b/sci-mathematics/drgeo/drgeo-1.1.0.ebuild index 3b7df92e9faf..e2aa560c273f 100644 --- a/sci-mathematics/drgeo/drgeo-1.1.0.ebuild +++ b/sci-mathematics/drgeo/drgeo-1.1.0.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/drgeo/drgeo-1.1.0.ebuild,v 1.5 2008/01/08 00:37:47 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/drgeo/drgeo-1.1.0.ebuild,v 1.6 2009/09/20 12:52:43 betelgeuse Exp $ + +EAPI="2" inherit eutils @@ -21,21 +23,16 @@ IUSE="nls" RDEPEND=">=x11-libs/gtk+-2 >=gnome-base/libglade-2 >=dev-libs/libxml2-2 - >=dev-scheme/guile-1.4" + || ( + >=dev-scheme/guile-1.8[deprecated] + =dev-scheme/guile-1.6* + )" DEPEND="${RDEPEND} dev-util/pkgconfig" -pkg_setup() { - if has_version =dev-scheme/guile-1.8*; then - built_with_use dev-scheme/guile deprecated \ - || die "guile must be built with deprecated use flag" - fi -} - -src_compile() { - econf || die "econf failed." - emake || die "emake failed." +src_configure() { + default # Can't make the documentation as it depends on Hyperlatex which isn't # yet in portage. Fortunately HTML is already compiled for us in the # tarball and so can be installed. Just create the make install target. |