From 004a7c5ac21475f760354371ae4f8fca5e556acb Mon Sep 17 00:00:00 2001 From: Brendan Fabeny Date: Tue, 22 Nov 2011 11:14:10 +0000 Subject: adjust linking and comments in dependent ports after the math/atlas update; math/atlas-devel will be updated to use the same constructs at a later date PR: 162706 Approved by: miwi (portmgr) Feature safe: yes --- math/octave/Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'math/octave') diff --git a/math/octave/Makefile b/math/octave/Makefile index 6e8114f453c1..9effb425c589 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -47,27 +47,27 @@ MAN1= octave.1 mkoctfile.1 octave-config.1 .include -USE_BLAS?= reference - .if exists(${LOCALBASE}/lib/libgoto2.so) -USE_BLAS= gotoblas -.elif exists(${LOCALBASE}/lib/libatlas_r.so) -USE_BLAS= atlas +WITH_BLAS?= gotoblas +.elif exists(${LOCALBASE}/lib/libatlas.so) +WITH_BLAS?= atlas +.else +WITH_BLAS?= reference .endif -. if ${USE_BLAS} == reference +. if ${WITH_BLAS} == reference LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack BLAS= -lblas LAPACK= -llapack -.elif ${USE_BLAS} == gotoblas +.elif ${WITH_BLAS} == gotoblas LIB_DEPENDS+= goto2:${PORTSDIR}/math/gotoblas BLAS= -lgoto2p LAPACK= -lgoto2p -.elif ${USE_BLAS} == atlas +.elif ${WITH_BLAS} == atlas LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas -BLAS= -lptf77blas -lptcblas -latlas_r -LAPACK= -lalapack_r +BLAS= -lptf77blas +LAPACK= -lalapack -lptcblas .endif USE_FORTRAN= yes -- cgit v1.2.3