diff options
author | edwin <edwin@FreeBSD.org> | 2006-01-03 12:37:24 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2006-01-03 12:37:24 +0800 |
commit | 215e0a55eab1571d9f0f1a12fc4304642b94f7a1 (patch) | |
tree | 7909ea72c39b4cfab99b1d302b9b25ac5066c6d0 /math | |
parent | 1e85ba0e553b39ecb327ec25611cf9468aa5577b (diff) | |
download | freebsd-ports-gnome-215e0a55eab1571d9f0f1a12fc4304642b94f7a1.tar.gz freebsd-ports-gnome-215e0a55eab1571d9f0f1a12fc4304642b94f7a1.tar.zst freebsd-ports-gnome-215e0a55eab1571d9f0f1a12fc4304642b94f7a1.zip |
Make math/arpack depend less on math/atlas
Atlas is great in the platforms where it's available, however
it is not being packaged (for good reasons) anymore. arpack
originally used blas for testing and since we are not really
linking any version of blas in the package it doesn't make
any difference what we use. It seems better idea to use
blas for testing since it's faster to build and because
this also means we can package arpack without building
ATLAS, The resulting package will work with BLAs or ATLAS
just the same and in any case the BLAS_LIBS variable can
now be overridden to test with atlas if it's so desired.
This change doesn't change the package so I think we should
leave the PORTVERSION untouched.
PR: ports/91251
Submitted by: Pedro F. Giffuni <giffunip@asme.org>
Diffstat (limited to 'math')
-rw-r--r-- | math/arpack/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/arpack/Makefile b/math/arpack/Makefile index 1524c8d0a2f4..790a2bde5238 100644 --- a/math/arpack/Makefile +++ b/math/arpack/Makefile @@ -22,12 +22,12 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Argand Library: large eigenvalue subroutines (serial version) BUILD_DEPENDS= ${LOCALBASE}/bin/f2c:${PORTSDIR}/lang/f2c \ - ${LOCALBASE}/lib/libf77blas.a:${PORTSDIR}/math/atlas + ${LOCALBASE}/lib/libblas.a:${PORTSDIR}/math/blas WRKSRC= ${WRKDIR}/ARPACK ALL_TARGET= lib -BLAS_LIBS= ${LOCALBASE}/lib/libf77blas.a ${LOCALBASE}/lib/libatlas.a +BLAS_LIBS?= ${LOCALBASE}/lib/libblas.a INSTALLS_SHLIB= yes USE_REINPLACE= yes |