From 2c6a3135268f227c2f016b08155f35b56c7fbd99 Mon Sep 17 00:00:00 2001 From: bapt Date: Mon, 14 Jul 2014 18:42:04 +0000 Subject: Modernize LIB_DEPENDS With hat: portmgr --- math/sdpa/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'math/sdpa') diff --git a/math/sdpa/Makefile b/math/sdpa/Makefile index 5151dd98201e..17577e934e1c 100644 --- a/math/sdpa/Makefile +++ b/math/sdpa/Makefile @@ -31,17 +31,17 @@ 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+= lapack.4:${PORTSDIR}/math/lapack +LIB_DEPENDS+= libgoto2.so:${PORTSDIR}/math/gotoblas +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack BLAS= -lgoto2p LAPACK= .elif ${WITH_BLAS} == atlas -LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas BLAS= -lptf77blas LAPACK= -lalapack -lptcblas .endif -- cgit