diff options
author | 2011-06-26 09:20:15 +0000 | |
---|---|---|
committer | 2011-06-26 09:20:15 +0000 | |
commit | c333c94c9fb01501b0e2646177cd326d77f5cd7d (patch) | |
tree | 64405a48a1a4c9e0a34b70a4688180267cc94c8f /sci-libs/btf/btf-1.1.0.ebuild | |
parent | Straight out QA issues (diff) | |
download | gentoo-2-c333c94c9fb01501b0e2646177cd326d77f5cd7d.tar.gz gentoo-2-c333c94c9fb01501b0e2646177cd326d77f5cd7d.tar.bz2 gentoo-2-c333c94c9fb01501b0e2646177cd326d77f5cd7d.zip |
Straight out QA issues
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/btf/btf-1.1.0.ebuild')
-rw-r--r-- | sci-libs/btf/btf-1.1.0.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/sci-libs/btf/btf-1.1.0.ebuild b/sci-libs/btf/btf-1.1.0.ebuild index 39054a6f6c93..3ac68ff3cced 100644 --- a/sci-libs/btf/btf-1.1.0.ebuild +++ b/sci-libs/btf/btf-1.1.0.ebuild @@ -1,22 +1,26 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/btf/btf-1.1.0.ebuild,v 1.2 2010/12/25 18:48:52 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/btf/btf-1.1.0.ebuild,v 1.3 2011/06/26 09:20:15 jlec Exp $ + +EAPI=4 -EAPI=2 inherit autotools eutils MY_PN=BTF DESCRIPTION="Algorithm for matrix permutation into block triangular form" -HOMEPAGE="http://www.cise.ufl.edu/research/sparse/btf" +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/btf/" SRC_URI="http://www.cise.ufl.edu/research/sparse/${PN}/${MY_PN}-${PV}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs" + DEPEND="sci-libs/ufconfig" RDEPEND="" +DOCS="README.txt Doc/ChangeLog" + S="${WORKDIR}/${MY_PN}" src_prepare() { @@ -27,8 +31,3 @@ src_prepare() { src_configure() { econf $(use_enable static-libs static) } - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README.txt Doc/ChangeLog -} |