diff options
author | 2012-04-26 16:17:02 +0000 | |
---|---|---|
committer | 2012-04-26 16:17:02 +0000 | |
commit | fc68ee80ca81a6d922a512fabf71cad5467cc77c (patch) | |
tree | 0eda4097ae715154de767071b127592fb76f9dd1 /sci-biology/mcl/mcl-08.312.ebuild | |
parent | unmask useflags depending on tcl (diff) | |
download | historical-fc68ee80ca81a6d922a512fabf71cad5467cc77c.tar.gz historical-fc68ee80ca81a6d922a512fabf71cad5467cc77c.tar.bz2 historical-fc68ee80ca81a6d922a512fabf71cad5467cc77c.zip |
sci-biology/mcl: Move to EAPI=4
Package-Manager: portage-2.2.0_alpha101/cvs/Linux x86_64
Diffstat (limited to 'sci-biology/mcl/mcl-08.312.ebuild')
-rw-r--r-- | sci-biology/mcl/mcl-08.312.ebuild | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/sci-biology/mcl/mcl-08.312.ebuild b/sci-biology/mcl/mcl-08.312.ebuild index 18639d98013e..894768dd474a 100644 --- a/sci-biology/mcl/mcl-08.312.ebuild +++ b/sci-biology/mcl/mcl-08.312.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/mcl/mcl-08.312.ebuild,v 1.1 2009/04/05 00:27:43 weaver Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/mcl/mcl-08.312.ebuild,v 1.2 2012/04/26 16:17:02 jlec Exp $ -EAPI="1" +EAPI=4 MY_P="${PN}-${PV/./-}" @@ -12,19 +12,11 @@ SRC_URI="http://micans.org/mcl/src/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -IUSE="+blast" KEYWORDS="~amd64 ~x86" - -DEPEND="" -RDEPEND="" +IUSE="+blast" S="${WORKDIR}/${MY_P}" -src_compile() { - econf $(use_enable blast) || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die +src_configure() { + econf $(use_enable blast) } |