diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2006-05-29 20:34:20 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2006-05-29 20:34:20 +0000 |
commit | 066ac7b976031d84ce56e3b658848ae9604e210b (patch) | |
tree | b82f3b15859eab83b240c1beba71a51696dae244 /math | |
parent | 51830da6279328ef2298079dc909e4679c6dfa1f (diff) | |
download | ports-066ac7b976031d84ce56e3b658848ae9604e210b.tar.gz ports-066ac7b976031d84ce56e3b658848ae9604e210b.zip |
Notes
Diffstat (limited to 'math')
-rw-r--r-- | math/umfpack/Makefile | 12 | ||||
-rw-r--r-- | math/umfpack/files/patch-Make+Make.freebsd | 12 |
2 files changed, 16 insertions, 8 deletions
diff --git a/math/umfpack/Makefile b/math/umfpack/Makefile index acdf22721d74..d8a36eb017e5 100644 --- a/math/umfpack/Makefile +++ b/math/umfpack/Makefile @@ -14,14 +14,22 @@ DISTNAME= UMFPACKv${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Unsymmetric-pattern MultiFrontal Package +.ifdef WITH_ATLAS LIB_DEPENDS= atlas.1:${PORTSDIR}/math/atlas +.else +LIB_DEPENDS= blas.1:${PORTSDIR}/math/blas +.endif CONFLICTS= elmer-umfpack-4* WRKSRC= ${WRKDIR}/${DISTNAME}/UMFPACK ALL_TARGET= lib -CBLAS_LIBS?= -L${LOCALBASE}/lib -lcblas -latlas +.ifdef WITH_ATLAS +BLAS_LIBS= -lf77blas -latlas +.else +BLAS_LIBS?= -lblas +.endif post-extract: ${CP} ${WRKDIR}/${DISTNAME}/AMD/Make/Make.linux \ @@ -31,7 +39,7 @@ pre-build: @${REINPLACE_CMD} -e 's+%%CC%%+${CC}+g ; \ s+%%CFLAGS%%+${CFLAGS}+ ; \ s+%%LOCALBASE%%+${LOCALBASE}+ ; \ - s+%%CBLAS_LIBS%%+${CBLAS_LIBS}+ ;' \ + s+%%BLAS_LIBS%%+${BLAS_LIBS}+ ;' \ ${WRKDIR}/${DISTNAME}/AMD/Make/Make.freebsd do-install: diff --git a/math/umfpack/files/patch-Make+Make.freebsd b/math/umfpack/files/patch-Make+Make.freebsd index fbddae80a542..c516d0404138 100644 --- a/math/umfpack/files/patch-Make+Make.freebsd +++ b/math/umfpack/files/patch-Make+Make.freebsd @@ -1,5 +1,5 @@ ---- Make/Make.freebsd.orig Sun Feb 19 15:26:42 2006 -+++ Make/Make.freebsd Sun Feb 19 15:29:05 2006 +--- Make/Make.freebsd.orig Sun May 28 22:27:24 2006 ++++ Make/Make.freebsd Sun May 28 22:35:56 2006 @@ -6,8 +6,8 @@ # if you use the Intel compiler and the Fortran BLAS. @@ -17,14 +17,14 @@ # 2: with the ATLAS C-BLAS (http://www.netlib.org/atlas). -# CONFIG = -DCBLAS -I../ATLAS/include -# LIB = -lcblas -latlas -lm -+CONFIG = -DGETRUSAGE -DCBLAS -I../ATLAS/include -I%%LOCALBASE%%/include -+LIB = %%CBLAS_LIBS%% -lm ++# CONFIG = -DGETRUSAGE -DCBLAS -I../ATLAS/include -I%%LOCALBASE%%/include ++# LIB = %%CBLAS_LIBS%% -lm # 3: with Fortran interface to the ATLAS BLAS -# CONFIG = -# LIB = -lf77blas -latlas -lfrtbegin -lg2c -lm -+# CONFIG = -I%%LOCALBASE%%/include -+# LIB = -L%%LOCALBASE%%/lib -lf77blas -latlas -lfrtbegin -lg2c -lm ++CONFIG = -DGETRUSAGE ++LIB = -L%%LOCALBASE%%/lib %%BLAS_LIBS%% -lg2c -lm # 4: with Fortran interface to the BLAS, and Goto's BLAS - CONFIG = |