diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-12-25 18:51:56 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-12-25 18:51:56 +0000 |
commit | 82bd9c89d74cd109c623e50b72934613742e9ec5 (patch) | |
tree | c02aa1470b994826c314ff2e802996a7d5351ae3 /sci-libs/klu | |
parent | Improve output phase of src_test block for new stables. (diff) | |
download | historical-82bd9c89d74cd109c623e50b72934613742e9ec5.tar.gz historical-82bd9c89d74cd109c623e50b72934613742e9ec5.tar.bz2 historical-82bd9c89d74cd109c623e50b72934613742e9ec5.zip |
added static-libs flag
Package-Manager: portage-2.1.9.26/cvs/Linux x86_64
Diffstat (limited to 'sci-libs/klu')
-rw-r--r-- | sci-libs/klu/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/klu/klu-1.1.0.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/sci-libs/klu/ChangeLog b/sci-libs/klu/ChangeLog index 9928dce84e54..3762e4b7adfe 100644 --- a/sci-libs/klu/ChangeLog +++ b/sci-libs/klu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/klu -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/ChangeLog,v 1.2 2009/11/21 07:25:56 bicatali Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/ChangeLog,v 1.3 2010/12/25 18:51:17 bicatali Exp $ + + 25 Dec 2010; SĂ©bastien Fabbro <bicatali@gentoo.org> klu-1.1.0.ebuild: + Added static-libs flag *klu-1.1.0 (21 Nov 2009) diff --git a/sci-libs/klu/klu-1.1.0.ebuild b/sci-libs/klu/klu-1.1.0.ebuild index 3f899e1570cb..9710f7c138c9 100644 --- a/sci-libs/klu/klu-1.1.0.ebuild +++ b/sci-libs/klu/klu-1.1.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/klu-1.1.0.ebuild,v 1.1 2009/11/21 07:25:56 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/klu-1.1.0.ebuild,v 1.2 2010/12/25 18:51:17 bicatali Exp $ EAPI=2 inherit autotools eutils @@ -13,7 +13,7 @@ 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="doc" +IUSE="doc static-libs" DEPEND="sci-libs/amd sci-libs/btf sci-libs/colamd" @@ -26,6 +26,10 @@ src_prepare() { eautoreconf } +src_configure() { + econf $(use_enable static-libs static) +} + src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc README.txt Doc/ChangeLog || die "dodoc failed" |