diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-03-01 19:50:45 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-03-02 12:20:46 -0500 |
commit | d3ff37a807618fd1463a8e667d088a2ba818b3de (patch) | |
tree | 028ee471bbc49ec274f15d462c7727ae14182fcb /sci-libs/umfpack/umfpack-5.7.9.ebuild | |
parent | sci-libs/spqr: new version 2.0.9. (diff) | |
download | gentoo-d3ff37a807618fd1463a8e667d088a2ba818b3de.tar.gz gentoo-d3ff37a807618fd1463a8e667d088a2ba818b3de.tar.bz2 gentoo-d3ff37a807618fd1463a8e667d088a2ba818b3de.zip |
sci-libs/umfpack: new version 5.7.9.
Update to EAPI=7 and fix the HOMEPAGE, SRC_URI, and LICENSE. This is
part of a larger SuiteSparse v5.4.0 upgrade thanks to François Bissey
whose sage-on-gentoo ebuilds I'm using. There's a newer release
(v5.7.1) of SuiteSparse, but v5.4.0 has seen more testing.
The dependency on cholmod probably needs some USE flags, because the
previous version dependend on !minimal. I can't figure out which of
the modules implied by !minimal are necessary, though, now that the
flags have been separated out.
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-libs/umfpack/umfpack-5.7.9.ebuild')
-rw-r--r-- | sci-libs/umfpack/umfpack-5.7.9.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sci-libs/umfpack/umfpack-5.7.9.ebuild b/sci-libs/umfpack/umfpack-5.7.9.ebuild new file mode 100644 index 000000000000..d4c065afcadf --- /dev/null +++ b/sci-libs/umfpack/umfpack-5.7.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Unsymmetric multifrontal sparse LU factorization library" +HOMEPAGE="http://faculty.cse.tamu.edu/davis/suitesparse.html" +SRC_URI="http://202.36.178.9/sage/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="doc +cholmod static-libs" + +BDEPEND="virtual/pkgconfig + doc? ( virtual/latex-base )" +DEPEND="sci-libs/amd + >=sci-libs/suitesparseconfig-5.4.0 + virtual/blas + cholmod? ( sci-libs/cholmod )" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ + $(use_with doc) \ + $(use_enable static-libs static) \ + $(use_with cholmod) +} |