blob: 2e9f7255e65452d28daf464e815e6ad821574a9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/superlu/superlu-4.0-r1.ebuild,v 1.1 2010/06/09 08:18:58 jlec Exp $
EAPI="2"
inherit autotools eutils toolchain-funcs
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 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples static-libs test"
RDEPEND="virtual/blas"
DEPEND="${RDEPEND}
dev-util/pkgconfig
test? ( app-shells/tcsh )"
S="${WORKDIR}/${MY_PN}_${PV}"
src_prepare() {
epatch "${FILESDIR}"/${P}-autotools.patch
epatch "${FILESDIR}"/${PN}-examples.patch
epatch "${FILESDIR}"/${PV}-test.patch
eautoreconf
}
src_configure() {
econf \
--with-blas="$(pkg-config --libs blas)" \
$(use_enable static-libs static)
}
src_test() {
cd TESTING/MATGEN
emake -j1 \
FORTRAN="$(tc-getFC)" \
LOADER="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
FFLAGS="${FFLAGS}" \
LOADOPTS="${LDFLAGS}" \
SUPERLULIB="../SRC/.libs/libsuperlu.a" \
BLASLIB="$(pkg-config --libs blas)" \
CC="$(tc-getCC)" \
|| die "emake matrix generation failed"
cd ..
emake -j1 \
CC="$(tc-getCC)" \
FORTRAN="$(tc-getFC)" \
LOADER="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
FFLAGS="${FFLAGS}" \
LOADOPTS="${LDFLAGS}" \
SUPERLULIB="../SRC/.libs/libsuperlu.so" \
BLASLIB="$(pkg-config --libs blas)" \
|| die "emake test failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto /usr/include/${PN}
doins SRC/*.h || die
dodoc README
use doc && newdoc INSTALL/ug.ps userguide.ps
if use examples; then
insinto /usr/share/doc/${PF}
newins -r EXAMPLE examples
fi
}
|