ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
71 lines
2.1 KiB
Makefile
71 lines
2.1 KiB
Makefile
# Created by: Pedro Giffuni <giffunip@asme.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= superlu
|
|
PORTVERSION= 5.2.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://crd-legacy.lbl.gov/~xiaoye/SuperLU/ \
|
|
http://crd-legacy.lbl.gov/~xiaoye/:doc
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= robert.ayrapetyan@gmail.com
|
|
COMMENT= Library of routines for performing sparse factorization
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/License.txt
|
|
|
|
USES= cmake fortran
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/SuperLU_${PORTVERSION}
|
|
PLIST_SUB= P_VERSION="${PORTVERSION}" P_VER="${PORTVERSION:R:R}"
|
|
|
|
CMAKE_ON= USE_XSDK_DEFAULTS
|
|
CMAKE_OFF= enable_tests enable_examples
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SINGLE= BLAS
|
|
OPTIONS_SINGLE_BLAS= ATLAS GOTOBLAS OPENBLAS REFERENCE
|
|
OPTIONS_DEFAULT= REFERENCE
|
|
|
|
ATLAS_USES= blaslapack:atlas
|
|
ATLAS_CMAKE_ARGS= -DBLA_VENDOR:STRING="ATLAS"
|
|
DOCS_DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
${SLU_DOCS:S/$/:doc/}
|
|
DOCS_EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
GOTOBLAS_DESC= GotoBLAS blas implementation
|
|
GOTOBLAS_USES= blaslapack:gotoblas
|
|
GOTOBLAS_CMAKE_ARGS= -DBLA_VENDOR:STRING="Goto"
|
|
OPENBLAS_DESC= OpenBLAS blas implementation
|
|
OPENBLAS_USES= blaslapack:openblas
|
|
OPENBLAS_CMAKE_ARGS= -DBLA_VENDOR:STRING="OpenBLAS"
|
|
REFERENCE_DESC= Reference blas implementation
|
|
REFERENCE_USES= blaslapack
|
|
REFERENCE_CMAKE_ARGS= -DBLA_VENDOR:STRING="Generic"
|
|
|
|
SLU_DOCS= SLU_general.ps.gz simax-29176.pdf
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/CMAKE_C_FLAGS_RELEASE/s|^|#|' ${WRKSRC}/CMakeLists.txt
|
|
@${REINPLACE_CMD} -e \
|
|
'/FFLAGS/s|FATAL_ERROR|WARNING|' ${WRKSRC}/cmake/XSDKDefaults.cmake
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${DISTDIR}/${DIST_SUBDIR} && ${INSTALL_DATA} ${SLU_DOCS} \
|
|
${STAGEDIR}${DOCSDIR})
|
|
(cd ${WRKSRC}/DOC && ${COPYTREE_SHARE} "html ug.pdf" \
|
|
${STAGEDIR}${DOCSDIR})
|
|
|
|
do-test:
|
|
@cd ${BUILD_WRKSRC} && \
|
|
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Denable_tests:BOOL=ON ${CMAKE_SOURCE_PATH} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test
|
|
|
|
.include <bsd.port.mk>
|