diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-01-26 11:33:35 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-01-26 11:33:35 +0000 |
commit | 5136f587928404e3ce069272784345cb5da56657 (patch) | |
tree | a9cf891a3dc12a4b5793d0aba915698a1b3b580f /sci-libs/superlu | |
parent | Remove old. (diff) | |
download | gentoo-2-5136f587928404e3ce069272784345cb5da56657.tar.gz gentoo-2-5136f587928404e3ce069272784345cb5da56657.tar.bz2 gentoo-2-5136f587928404e3ce069272784345cb5da56657.zip |
sci-libs/superlu: Drop old
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/superlu')
-rw-r--r-- | sci-libs/superlu/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/superlu/superlu-4.1-r1.ebuild | 74 |
2 files changed, 4 insertions, 75 deletions
diff --git a/sci-libs/superlu/ChangeLog b/sci-libs/superlu/ChangeLog index d9500ce2ab14..f27be4e9fb38 100644 --- a/sci-libs/superlu/ChangeLog +++ b/sci-libs/superlu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/superlu # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/ChangeLog,v 1.26 2015/01/26 10:33:10 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/ChangeLog,v 1.27 2015/01/26 11:33:35 jlec Exp $ + + 26 Jan 2015; Justin Lecher <jlec@gentoo.org> -superlu-4.1-r1.ebuild: + Drop old 26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> superlu-4.3.ebuild: Stable for x86, wrt bug #534634 diff --git a/sci-libs/superlu/superlu-4.1-r1.ebuild b/sci-libs/superlu/superlu-4.1-r1.ebuild deleted file mode 100644 index c1d0d7710630..000000000000 --- a/sci-libs/superlu/superlu-4.1-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/superlu-4.1-r1.ebuild,v 1.12 2013/02/21 21:23:07 jlec Exp $ - -EAPI="2" - -inherit autotools eutils fortran-2 toolchain-funcs multilib - -MY_PN=SuperLU - -DESCRIPTION="Sparse LU factorization library" -HOMEPAGE="http://crd.lbl.gov/~xiaoye/SuperLU/" -SRC_URI="${HOMEPAGE}/${PN}_${PV}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="doc examples static-libs test" - -RDEPEND=" - virtual/blas" -DEPEND="${RDEPEND} - virtual/pkgconfig - test? ( app-shells/tcsh )" - -S="${WORKDIR}/${MY_PN}_${PV}" - -src_prepare() { - unset VERBOSE - epatch "${FILESDIR}"/${P}-autotools.patch - sed \ - -e "s:= ar:= $(tc-getAR):g" \ - -e "s:= ranlib:= $(tc-getRANLIB):g" \ - -i make.inc || die - eautoreconf -} - -src_configure() { - econf \ - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ - $(use_enable static-libs static) -} - -src_test() { - cd TESTING - emake -j1 \ - CC="$(tc-getCC)" \ - AR="$(tc-getAR)" \ - RANLIB="$(tc-getRANLIB)" \ - FORTRAN="$(tc-getFC)" \ - LOADER="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - FFLAGS="${FFLAGS}" \ - LOADOPTS="${LDFLAGS}" \ - BLASLIB="$($(tc-getPKG_CONFIG) --libs blas)" \ - SUPERLULIB="${S}/SRC/.libs/libsuperlu$(get_libname)" \ - LD_LIBRARY_PATH="${S}/SRC/.libs" \ - DYLD_LIBRARY_PATH="${S}/SRC/.libs" \ - || die "emake matrix generation failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README - - if use doc; then - dodoc DOC/ug.pdf || die - dohtml DOC/html/* || die - fi - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r EXAMPLE FORTRAN || die - fi -} |