blob: 8652d5d858daf7ce75ad9715dce778044e63bd3c (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/cblas-reference/cblas-reference-20030223-r3.ebuild,v 1.2 2007/06/07 19:26:08 lavajoe Exp $
inherit autotools eutils fortran multilib
MyPN="${PN/-reference/}"
DESCRIPTION="C interface to the BLAS"
LICENSE="public-domain"
HOMEPAGE="http://www.netlib.org/blas/"
SRC_URI="http://www.netlib.org/blas/blast-forum/${MyPN}.tgz"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
RDEPEND="virtual/blas
app-admin/eselect-cblas"
DEPEND="${RDEPEND}"
FORTRAN="gfortran g77 ifc"
S="${WORKDIR}/CBLAS"
src_unpack() {
unpack ${A}
# Must patch before changing to S. Patches that create new files
# will happily apply anywhere.
epatch "${FILESDIR}"/${P}-autotool.patch
cd "${S}"
eautoreconf
}
src_install() {
TOP_PATH="${DESTTREE}/$(get_libdir)/blas"
RPATH="${TOP_PATH}/reference"
make DESTDIR="${D}" install || die "install failed"
# Fix for switching
dodir ${RPATH}
mv ${D}/usr/$(get_libdir)/libcblas* ${D}/${RPATH}
dodoc "${S}"/README || die "failed to install docs"
eselect cblas add $(get_libdir) ${FILESDIR}/eselect-reference reference
}
pkg_postinst() {
if [[ -z "$(eselect cblas show)" ]]; then
eselect cblas set reference
fi
elog "Configuration now uses eselect rather than blas-config."
}
|