diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2011-02-23 19:52:03 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2011-02-23 19:52:03 +0000 |
commit | aa7b8e20b2a128d7c2cda6e25a79dd8413d51297 (patch) | |
tree | bbf511a5468d58d868c7c1b34dd0f5224fdced93 /sci-libs | |
parent | Bump (diff) | |
download | gentoo-2-aa7b8e20b2a128d7c2cda6e25a79dd8413d51297.tar.gz gentoo-2-aa7b8e20b2a128d7c2cda6e25a79dd8413d51297.tar.bz2 gentoo-2-aa7b8e20b2a128d7c2cda6e25a79dd8413d51297.zip |
Bump
(Portage version: 2.1.9.40/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/cxsparse/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/cxsparse/cxsparse-2.2.5.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/sci-libs/cxsparse/ChangeLog b/sci-libs/cxsparse/ChangeLog index 24cd4152c544..0c5ffb9d6907 100644 --- a/sci-libs/cxsparse/ChangeLog +++ b/sci-libs/cxsparse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/cxsparse -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cxsparse/ChangeLog,v 1.18 2010/12/25 18:50:56 bicatali Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cxsparse/ChangeLog,v 1.19 2011/02/23 19:52:03 bicatali Exp $ + +*cxsparse-2.2.5 (23 Feb 2011) + + 23 Feb 2011; Sébastien Fabbro <bicatali@gentoo.org> +cxsparse-2.2.5.ebuild: + Bump 22 Dec 2010; Sébastien Fabbro <bicatali@gentoo.org> cxsparse-2.2.3.ebuild: Added static-libs flag diff --git a/sci-libs/cxsparse/cxsparse-2.2.5.ebuild b/sci-libs/cxsparse/cxsparse-2.2.5.ebuild new file mode 100644 index 000000000000..c48c0c75dc69 --- /dev/null +++ b/sci-libs/cxsparse/cxsparse-2.2.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cxsparse/cxsparse-2.2.5.ebuild,v 1.1 2011/02/23 19:52:03 bicatali Exp $ + +EAPI=2 +inherit autotools eutils + +MY_PN=CXSparse +DESCRIPTION="Extended sparse matrix package." +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/CXSparse/" +SRC_URI="http://www.cise.ufl.edu/research/sparse/${MY_PN}/versions/${MY_PN}-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="static-libs" +DEPEND="sci-libs/ufconfig" +RDEPEND="" + +S="${WORKDIR}/${MY_PN}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.2.2-autotools.patch + 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" +} |