diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-11-12 02:00:21 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-11-12 02:00:21 +0000 |
commit | db8a80c4bf176aa26bc358a008841446315b00d0 (patch) | |
tree | adbe0392b3258db6ebb2ae48a24c0fbd69bcbe37 /sci-libs/klu | |
parent | Version bump (diff) | |
download | gentoo-2-db8a80c4bf176aa26bc358a008841446315b00d0.tar.gz gentoo-2-db8a80c4bf176aa26bc358a008841446315b00d0.tar.bz2 gentoo-2-db8a80c4bf176aa26bc358a008841446315b00d0.zip |
Version bump
(Portage version: 2.2.01.21313-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-libs/klu')
-rw-r--r-- | sci-libs/klu/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/klu/klu-1.2.1.ebuild | 31 |
2 files changed, 37 insertions, 2 deletions
diff --git a/sci-libs/klu/ChangeLog b/sci-libs/klu/ChangeLog index f12dbc9e988a..9c6e12cd5d0e 100644 --- a/sci-libs/klu/ChangeLog +++ b/sci-libs/klu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/klu # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/ChangeLog,v 1.7 2012/01/20 05:52:52 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/ChangeLog,v 1.8 2012/11/12 02:00:21 bicatali Exp $ + +*klu-1.2.1 (12 Nov 2012) + + 12 Nov 2012; Sébastien Fabbro <bicatali@gentoo.org> +klu-1.2.1.ebuild: + Version bump *klu-1.1.3 (20 Jan 2012) @@ -35,4 +40,3 @@ 05 Feb 2008; Sébastien Fabbro <bicatali@gentoo.org> +files/klu-1.0.1-autotools.patch, +metadata.xml, +klu-1.0.1.ebuild: Initial import, part of the suitesparse - diff --git a/sci-libs/klu/klu-1.2.1.ebuild b/sci-libs/klu/klu-1.2.1.ebuild new file mode 100644 index 000000000000..0c903cd5b53b --- /dev/null +++ b/sci-libs/klu/klu-1.2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/klu/klu-1.2.1.ebuild,v 1.1 2012/11/12 02:00:21 bicatali Exp $ + +EAPI=4 + +inherit autotools-utils + +DESCRIPTION="Sparse LU factorization for circuit simulation" +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/klu/" +SRC_URI="http://dev.gentoo.org/~bicatali/distfiles/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc static-libs" + +RDEPEND=" + >=sci-libs/amd-1.3 + >=sci-libs/btf-1.2 + >=sci-libs/colamd-1.3" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( virtual/latex-base )" + +src_configure() { + local myeconfargs=( + $(use_with doc) + ) + autotools-utils_src_configure +} |