diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-07-13 23:36:40 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-07-13 23:36:40 +0000 |
commit | 3fee91136667f7b3cca62afbc9d9f01d03a2ec89 (patch) | |
tree | caf481fc0fb12e9f5b4f7e105ea42f01f77c286a /math/blocksolve95 | |
parent | e6ffa1f425ea668e859fae97edfd25a239614331 (diff) | |
download | ports-3fee91136667f7b3cca62afbc9d9f01d03a2ec89.tar.gz ports-3fee91136667f7b3cca62afbc9d9f01d03a2ec89.zip |
Notes
Diffstat (limited to 'math/blocksolve95')
-rw-r--r-- | math/blocksolve95/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/math/blocksolve95/Makefile b/math/blocksolve95/Makefile index 7d147692a4c8..ba6a2c05b4f0 100644 --- a/math/blocksolve95/Makefile +++ b/math/blocksolve95/Makefile @@ -15,7 +15,7 @@ MAINTAINER= bf@FreeBSD.org COMMENT= Software for the efficient solution of large, sparse linear systems BUILD_DEPENDS= ${MPIDIR}/lib/libmpich.a:${PORTSDIR}/net/mpich2 -LIB_DEPENDS= f2c.2:${PORTSDIR}/lang/f2c +LIB_DEPENDS= libf2c.so:${PORTSDIR}/lang/f2c RUN_DEPENDS= ${MPIDIR}/bin/mpirun:${PORTSDIR}/net/mpich2 USES= fortran gmake @@ -39,12 +39,12 @@ NO_STAGE= yes WITH_ATLAS= yes .endif .if defined(WITH_ATLAS) -LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas BLAS_LIB= -lf77blas LAPACK_LIB= -L${LOCALBASE}/lib -lalapack -lcblas .else -LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack -LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas BLAS_LIB= -lblas LAPACK_LIB= -L${LOCALBASE}/lib -llapack .endif |