diff options
author | yuri <yuri@FreeBSD.org> | 2018-05-07 07:58:10 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-05-07 07:58:10 +0800 |
commit | 4544ec64ebf4f0936a9c187b8974a443cb779649 (patch) | |
tree | 02bb9c718ffae5191247c5d7025b5278d55406e2 /math/superlu | |
parent | 7522cda3b6df6e80d7c5e35396d710f89341e586 (diff) | |
download | freebsd-ports-gnome-4544ec64ebf4f0936a9c187b8974a443cb779649.tar.gz freebsd-ports-gnome-4544ec64ebf4f0936a9c187b8974a443cb779649.tar.zst freebsd-ports-gnome-4544ec64ebf4f0936a9c187b8974a443cb779649.zip |
math/superlu: robert.ayrapetyan@gmail.com takes maintainership
Also removed the dysfunctional TEST option and added the do-test target
that enables the 'make test'.
PR: 228009
Submitted by: robert.ayrapetyan@gmail.com
Diffstat (limited to 'math/superlu')
-rw-r--r-- | math/superlu/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/math/superlu/Makefile b/math/superlu/Makefile index 48286c6b70cc..c3b6c11cc6cb 100644 --- a/math/superlu/Makefile +++ b/math/superlu/Makefile @@ -10,7 +10,7 @@ MASTER_SITES= http://crd-legacy.lbl.gov/~xiaoye/SuperLU/ \ DISTNAME= ${PORTNAME}_${PORTVERSION} DIST_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= robert.ayrapetyan@gmail.com COMMENT= Library of routines for performing sparse factorization LICENSE= BSD3CLAUSE @@ -27,7 +27,7 @@ CMAKE_ARGS= -DUSE_XSDK_DEFAULTS:BOOL=ON \ PORTDOCS= * -OPTIONS_DEFINE= DOCS TEST +OPTIONS_DEFINE= DOCS OPTIONS_SINGLE= BLAS OPTIONS_SINGLE_BLAS= ATLAS GOTOBLAS OPENBLAS REFERENCE OPTIONS_DEFAULT= REFERENCE @@ -46,7 +46,6 @@ OPENBLAS_CMAKE_ARGS= -DBLA_VENDOR:STRING="OpenBLAS" REFERENCE_DESC= Reference blas implementation REFERENCE_USES= blaslapack REFERENCE_CMAKE_ARGS= -DBLA_VENDOR:STRING="Generic" -TEST_CMAKE_ARGS= -Denable_tests:BOOL=ON SLU_DOCS= SLU_general.ps.gz simax-29176.pdf @@ -63,4 +62,10 @@ post-install-DOCS-on: (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> |