diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-07 00:57:51 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-08-07 00:57:51 +0000 |
commit | 5ce65030474b3225f873193b405dfe9c4b27d918 (patch) | |
tree | 607a38d2155218afa59b25fd1375cde907236642 /sci-libs/klu/klu-1.1.2.ebuild | |
parent | Version bump (diff) | |
download | historical-5ce65030474b3225f873193b405dfe9c4b27d918.tar.gz historical-5ce65030474b3225f873193b405dfe9c4b27d918.tar.bz2 historical-5ce65030474b3225f873193b405dfe9c4b27d918.zip |
Version bump
Package-Manager: portage-2.1.10.10/cvs/Linux x86_64
Diffstat (limited to 'sci-libs/klu/klu-1.1.2.ebuild')
-rw-r--r-- | sci-libs/klu/klu-1.1.2.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sci-libs/klu/klu-1.1.2.ebuild b/sci-libs/klu/klu-1.1.2.ebuild new file mode 100644 index 000000000000..8a78fc69ceb1 --- /dev/null +++ b/sci-libs/klu/klu-1.1.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/klu-1.1.2.ebuild,v 1.1 2011/08/07 00:54:52 bicatali Exp $ + +EAPI=4 + +inherit autotools eutils + +MY_PN=KLU + +DESCRIPTION="Sparse LU factorization for circuit simulation" +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/klu/" +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 static-libs" + +DEPEND="sci-libs/amd + sci-libs/btf + sci-libs/colamd" +RDEPEND="${DEPEND}" + +DOCS="README.txt Doc/ChangeLog" + +S="${WORKDIR}/${MY_PN}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.0.1-autotools.patch + sed -i -e "s/1.0.1/${PV}/" configure.ac || die + eautoreconf +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + use doc && dodoc Doc/*.pdf +} |