blob: 47486ba84a27ea1d38a3030c9ace7d551d73fdd3 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/lapack/lapack-3.0-r1.ebuild,v 1.4 2006/08/25 07:30:14 corsair Exp $
DESCRIPTION="Linear Algebra PACKage for scientists, engineers, and mathematicians. This contains the libraries for creating programs that use LAPACK."
HOMEPAGE="http://www.netlib.org/lapack/"
SRC_URI="http://www.netlib.org/lapack/lapack.tgz"
LICENSE="lapack"
SLOT="0"
IUSE=""
KEYWORDS="-* amd64 ppc64"
DEPEND="virtual/libc
sci-libs/blas"
S=${WORKDIR}/LAPACK
src_compile() {
cp ${FILESDIR}/Makefile SRC/Makefile
cd SRC
# ncessary to be able to link against liblapack.a on amd64
use amd64 && CFLAGS="${CFLAGS} -fPIC"
FC="g77" FFLAGS="${CFLAGS}" make static || die "make failed"
}
src_install() {
dolib.a SRC/liblapack.a || die "dolib failed"
}
|