summaryrefslogtreecommitdiff
path: root/math/sdpara
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-07-14 18:42:04 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-07-14 18:42:04 +0000
commitffb7170399b77f34a48875ad6468eb796f00aed3 (patch)
tree3a1e4c5d813ec945366f43d48f94fa325ba0ead9 /math/sdpara
parent- USES=libtool pathfix (diff)
Modernize LIB_DEPENDS
With hat: portmgr
Notes
Notes: svn path=/head/; revision=361812
Diffstat (limited to 'math/sdpara')
-rw-r--r--math/sdpara/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/math/sdpara/Makefile b/math/sdpara/Makefile
index 012c6e7d0ef3..03102d5b854d 100644
--- a/math/sdpara/Makefile
+++ b/math/sdpara/Makefile
@@ -13,9 +13,9 @@ EXTRACT_ONLY= ${SRCFILE}
MAINTAINER= maho@FreeBSD.org
COMMENT= SDPARA parallel version of SDPA (math/sdpa)
-LIB_DEPENDS= scalapack:${PORTSDIR}/math/scalapack \
- blacs:${PORTSDIR}/math/blacs \
- mpich:${PORTSDIR}/net/mpich2
+LIB_DEPENDS= libscalapack.so:${PORTSDIR}/math/scalapack \
+ libblacs.so:${PORTSDIR}/math/blacs \
+ libmpich.so:${PORTSDIR}/net/mpich2
SRCDATE= 20090109
MANDATE= 20080618
@@ -34,16 +34,16 @@ WITH_BLAS?= reference
.endif
. if ${WITH_BLAS} == reference
-LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas
-LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack
+LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas
+LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack
BLAS= -lblas
LAPACK= -llapack
.elif ${WITH_BLAS} == gotoblas
-LIB_DEPENDS+= goto2:${PORTSDIR}/math/gotoblas
+LIB_DEPENDS+= libgoto2.so:${PORTSDIR}/math/gotoblas
BLAS= -lgoto2p
LAPACK= -lgoto2p
.elif ${WITH_BLAS} == atlas
-LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas
+LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas
BLAS= -lptf77blas
LAPACK= -lalapack -lptcblas
.endif