Index: Mk/Uses/blaslapack.mk =================================================================== --- Mk/Uses/blaslapack.mk +++ Mk/Uses/blaslapack.mk @@ -0,0 +1,48 @@ +# $FreeBSD$ +# +# Handle dependencies on Blas / Lapack +# +# Feature: blaslapack +# Usage: USES=blaslapack or USES=blaslapack:ARGS +# Valid ARGS: atlas reference goto openblas (default) +# +# Provides: BLASLIB and LAPACKLIB +# +# Maintainer: thierry@FreeBSD.org + +.if !defined(_INCLUDE_USES_BLASLAPACK_MK) +_INCLUDE_USES_BLASLAPACK_MK= yes + +_valid_ARGS= atlas reference goto openblas + +_DEFAULT_BLASLAPACK= openblas + +.if empty(blaslapack_ARGS) +blaslapack_ARGS= ${_DEFAULT_BLASLAPACK} +.endif + +LDFLAGS+= -L${LOCALBASE}/lib + +.if ${blaslapack_ARGS} == openblas +LIB_DEPENDS+= libopenblas.so:${PORTSDIR}/math/openblas +BLASLIB= -lopenblasp +LAPACKLIB= -lopenblasp +.elif ${blaslapack_ARGS} == atlas +LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas +BLASLIB= -lptf77blas +LAPACKLIB= -lalapack -lptcblas +.elif ${blaslapack_ARGS} == reference +LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack +BLASLIB= -lblas +LAPACKLIB= -llapack +.elif ${blaslapack_ARGS} == goto +LIB_DEPENDS+= libgoto2.so:${PORTSDIR}/math/gotoblas +LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack +BLASLIB= -lgoto2p +LAPACKLIB= -lgoto2p +.else +IGNORE= USES=blaslapack: invalid arguments: ${blaslapack_ARGS} +.endif + +.endif Index: math/suitesparse/Makefile =================================================================== --- math/suitesparse/Makefile +++ math/suitesparse/Makefile @@ -16,6 +16,22 @@ USES= fortran gmake +OPTIONS_RADIO= BLAS +OPTIONS_RADIO_BLAS= OPENBLAS REFERENCE ATLAS GOTO +OPTIONS_DEFAULT= OPENBLAS + +OPENBLAS_DESC= Openblas +OPENBLAS_USES= blaslapack + +REFERENCE_DESC= Blas / Lapack +REFERENCE_USES= blaslapack:reference + +ATLAS_DESC= ATLAS +ATLAS_USES= blaslapack:atlas + +GOTO_DESC= GOTO +GOTO_USES= blaslapack:goto + .if defined (WITH_METIS) LIB_DEPENDS= libmetis.so:${PORTSDIR}/math/metis4 @@ -24,40 +40,10 @@ CONFLICTS= umfpack-* -.include - -.if exists(${LOCALBASE}/lib/libopenblas.so) -WITH_BLAS?= openblas -.elif exists(${LOCALBASE}/lib/libgoto2.so) -WITH_BLAS?= gotoblas -.elif exists(${LOCALBASE}/lib/libatlas.so) -WITH_BLAS?= atlas -.else -WITH_BLAS?= reference -.endif - CFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS+= -L${LOCALBASE}/lib -.if ${WITH_BLAS} == reference -LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas -LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack -BLAS= -lblas -LAPACK= -llapack -.elif ${WITH_BLAS} == openblas -LIB_DEPENDS+= libopenblas.so:${PORTSDIR}/math/openblas -BLAS= -lopenblasp -LAPACK= -lopenblasp -.elif ${WITH_BLAS} == gotoblas -LIB_DEPENDS+= libgoto2.so:${PORTSDIR}/math/gotoblas -LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack -BLAS= -lgoto2p -LAPACK= -lgoto2p -.elif ${WITH_BLAS} == atlas -LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas -BLAS= -lptf77blas -LAPACK= -lalapack -lptcblas -.endif +.include .if ${ARCH} == "sparc64" PICFLAG?= -fPIC @@ -73,7 +59,7 @@ .if defined (WITH_METIS) METIS=${LOCALBASE}/lib/libmetis.a METIS_PATH=${LOCALBASE}/include/metis -CHOLMOD_CONFIG= +CHOLMOD_CONFIG= .else CHOLMOD_CONFIG= -DNPARTITION .endif @@ -81,7 +67,7 @@ post-patch: @${FIND} -X ${WRKSRC} -type f -name 'Makefile' -or -name '*.mk' | ${XARGS} \ ${REINPLACE_CMD} -e '\|^AR =|s|ar|${AR}|' \ - -e '\|^BLAS =|s|=.*|= ${LDFLAGS} ${BLAS}|' \ + -e '\|^BLAS =|s|=.*|= ${LDFLAGS} ${BLASLIB}|' \ -e '\|^CC =|d' \ -e '\|^CFLAGS =|{s|-O[1-9]\{0,1\}||g;s|=|= ${CFLAGS} $${PICFLAG} |;}' \ -e '\|^CHOLMOD_CONFIG =|s|=.*|= ${CHOLMOD_CONFIG}|' \ @@ -88,7 +74,7 @@ -e '\|^CPLUSPLUS =|s|=.*|= ${CXX}|' \ -e '\|^F77 =|d' \ -e '\|^F77FLAGS =|s|=.*|= ${FFLAGS} $${PICFLAG}|' \ - -e '\|^LAPACK =|s|=.*|= ${LDFLAGS} ${LAPACK}|' \ + -e '\|^LAPACK =|s|=.*|= ${LDFLAGS} ${LAPACKLIB}|' \ -e '\|^METIS =|s|=.*|= ${METIS}|' \ -e '\|^METIS_PATH =|s|=.*|= ${METIS_PATH}|' \ -e 's|-I\$$(METIS_PATH)/Lib|-I${METIS_PATH}|' \ @@ -127,4 +113,4 @@ j=$${i##*/} ; ${LN} -sf $${j%.a}.so.${SVERSION} ${STAGEDIR}${PREFIX}/lib/$${j%.a}.so ; \ done -.include +.include