blob: 5115e015d15d5f69740b5e3a99645e7482b133e8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/blas-reference/blas-reference-20070226.ebuild,v 1.5 2007/08/23 15:36:32 bicatali Exp $
inherit eutils autotools fortran multilib flag-o-matic
LAPACKPV="3.1.1"
LAPACKPN="lapack-lite"
DESCRIPTION="Basic Linear Algebra Subprograms F77 reference implementations"
LICENSE="public-domain"
HOMEPAGE="http://www.netlib.org/blas/"
SRC_URI="http://www.netlib.org/lapack/${LAPACKPN}-${LAPACKPV}.tgz"
SLOT="0"
IUSE="doc"
KEYWORDS="~amd64 hppa sparc ~x86"
DEPEND="app-admin/eselect-blas
doc? ( app-doc/blas-docs )"
RDEPEND="${DEPEND}
dev-util/pkgconfig"
PROVIDE="virtual/blas"
S="${WORKDIR}/${LAPACKPN}-${LAPACKPV}"
pkg_setup() {
FORTRAN="g77 gfortran ifc"
fortran_pkg_setup
if [[ ${FORTRANC:0:2} == "if" ]]; then
ewarn "Using Intel Fortran at your own risk"
LDFLAGS="$(raw-ldflags)"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-autotool.patch
eautoreconf
}
src_compile() {
econf \
--libdir=/usr/$(get_libdir)/blas/reference \
|| die "econf failed"
emake LDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
eselect blas add $(get_libdir) "${FILESDIR}"/eselect.blas.reference reference
}
pkg_postinst() {
[[ -z "$(eselect blas show)" ]] && eselect blas set reference
elog "To use BLAS reference implementation, you have to issue (as root):"
elog "\t eselect blas set reference"
}
|