blob: 7446b122987fedf82067c25d64e12bd6e9bcacb4 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="C++ wrapper for LAPACK"
HOMEPAGE="http://lapackpp.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="virtual/blas
virtual/lapack"
DEPEND="${DEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )"
src_compile() {
econf \
--disable-atlas \
--with-blas="$(pkg-config --libs blas)" \
--with-lapack="$(pkg-config --libs lapack)" \
|| die "econf failed"
emake || die "emake failed"
if use doc; then
emake srcdoc || die "emake srcdoc failed"
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc NEWS README ChangeLog AUTHORS || die "dodoc failed"
if use doc; then
dohtml api-doc/html || die "dohtml failed"
fi
}
|