diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-11-21 07:47:21 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-11-21 07:47:21 +0000 |
commit | aa10f90b02a83bb44d028135dec84213c84d1015 (patch) | |
tree | 250784be8e1266a980816b709304108799f9b200 /sci-libs/umfpack | |
parent | Fixed encoding in ChangeLog (diff) | |
download | gentoo-2-aa10f90b02a83bb44d028135dec84213c84d1015.tar.gz gentoo-2-aa10f90b02a83bb44d028135dec84213c84d1015.tar.bz2 gentoo-2-aa10f90b02a83bb44d028135dec84213c84d1015.zip |
Version bump
(Portage version: 2.2_rc50/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/umfpack')
-rw-r--r-- | sci-libs/umfpack/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/umfpack/umfpack-5.4.0.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/sci-libs/umfpack/ChangeLog b/sci-libs/umfpack/ChangeLog index 1e08c6677003..08286189bdf6 100644 --- a/sci-libs/umfpack/ChangeLog +++ b/sci-libs/umfpack/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/umfpack # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/umfpack/ChangeLog,v 1.15 2009/10/12 20:00:41 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/umfpack/ChangeLog,v 1.16 2009/11/21 07:47:21 bicatali Exp $ + +*umfpack-5.4.0 (21 Nov 2009) + + 21 Nov 2009; Sébastien Fabbro <bicatali@gentoo.org> + +umfpack-5.4.0.ebuild: + Version bump 12 Oct 2009; Jeroen Roovers <jer@gentoo.org> umfpack-5.2.0.ebuild: Stable for HPPA (bug #245707). diff --git a/sci-libs/umfpack/umfpack-5.4.0.ebuild b/sci-libs/umfpack/umfpack-5.4.0.ebuild new file mode 100644 index 000000000000..08e1c4abb96b --- /dev/null +++ b/sci-libs/umfpack/umfpack-5.4.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/umfpack/umfpack-5.4.0.ebuild,v 1.1 2009/11/21 07:47:21 bicatali Exp $ + +EAPI=2 +inherit autotools eutils + +MY_PN=UMFPACK + +DESCRIPTION="Unsymmetric multifrontal sparse LU factorization library" +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/umfpack" +SRC_URI="http://www.cise.ufl.edu/research/sparse/${PN}/${MY_PN}-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc" +RDEPEND="virtual/blas + sci-libs/amd" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_PN}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-5.2.0-autotools.patch + eautoreconf +} + +src_configure() { + econf --with-blas="$(pkg-config --libs blas)" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README.txt Doc/ChangeLog || die "dodoc failed" + if use doc; then + insinto /usr/share/doc/${PF} + doins Doc/*.pdf || die "doins failed" + fi +} |