diff options
Diffstat (limited to 'math/libflame')
-rw-r--r-- | math/libflame/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/math/libflame/Makefile b/math/libflame/Makefile index 122126d..6645ef7 100644 --- a/math/libflame/Makefile +++ b/math/libflame/Makefile @@ -15,7 +15,7 @@ COMMENT= FLAME dense linear algebra library LICENSE= LGPL21 -BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash +BUILD_DEPENDS= bash:shells/bash GNU_CONFIGURE= yes USE_CSTD= c99 @@ -124,19 +124,19 @@ WITH_BLAS?= reference .if ! ${PORT_OPTIONS:MBUILTIN_BLAS} .if ${WITH_BLAS} == atlas -RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:${PORTSDIR}/math/atlas +RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:math/atlas BLAS= -lptf77blas .elif ${WITH_BLAS} == atlas_c -RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:${PORTSDIR}/math/atlas +RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:math/atlas BLAS= -lptcblas .elif ${WITH_BLAS} == gotoblas -RUN_DEPENDS += ${LOCALBASE}/lib/libgoto2p.so:${PORTSDIR}/math/gotoblas +RUN_DEPENDS += ${LOCALBASE}/lib/libgoto2p.so:math/gotoblas BLAS= -lgoto2p .elif ${WITH_BLAS} == reference -RUN_DEPENDS += ${LOCALBASE}/lib/libblas.so:${PORTSDIR}/math/blas +RUN_DEPENDS += ${LOCALBASE}/lib/libblas.so:math/blas BLAS= -lblas .elif ${WITH_BLAS} == reference_c -RUN_DEPENDS += ${LOCALBASE}/lib/libgslcblas.so:${PORTSDIR}/math/gsl +RUN_DEPENDS += ${LOCALBASE}/lib/libgslcblas.so:math/gsl BLAS= -lgslcblas .endif #WITH_BLAS .endif #WITH_BUILTIN_BLAS @@ -144,19 +144,19 @@ BLAS= -lgslcblas .if ${PORT_OPTIONS:MEXTERNAL_LAPACK} .if !empty(WITH_BLAS:Matlas*) .if ${PORT_OPTIONS:MBUILTIN_BLAS} -RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:${PORTSDIR}/math/atlas +RUN_DEPENDS += ${LOCALBASE}/lib/libatlas.so:math/atlas .endif LAPACK= -lalapack -lptcblas -lptf77blas .elif ${WITH_BLAS} == gotoblas .if ${PORT_OPTIONS:MBUILTIN_BLAS} -RUN_DEPENDS += ${LOCALBASE}/lib/libgoto2p.so:${PORTSDIR}/math/gotoblas +RUN_DEPENDS += ${LOCALBASE}/lib/libgoto2p.so:math/gotoblas .endif LAPACK= -lgoto2p .elif !empty(WITH_BLAS:Mreference*) -RUN_DEPENDS += ${LOCALBASE}/lib/liblapack.so:${PORTSDIR}/math/lapack +RUN_DEPENDS += ${LOCALBASE}/lib/liblapack.so:math/lapack LAPACK= -llapack .if ${PORT_OPTIONS:MBUILTIN_BLAS} || ${PORT_OPTIONS:MCBLAS} -RUN_DEPENDS += ${LOCALBASE}/lib/libblas.so:${PORTSDIR}/math/blas +RUN_DEPENDS += ${LOCALBASE}/lib/libblas.so:math/blas LAPACK+= -lblas .endif .endif #WITH_BLAS |