diff options
Diffstat (limited to 'science/libcint/Makefile')
-rw-r--r-- | science/libcint/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/science/libcint/Makefile b/science/libcint/Makefile index 0aed7709ff55..dc0ef8cb00a8 100644 --- a/science/libcint/Makefile +++ b/science/libcint/Makefile @@ -1,6 +1,6 @@ PORTNAME= libcint DISTVERSIONPREFIX= v -DISTVERSION= 4.1.2 +DISTVERSION= 4.1.3 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org @@ -12,9 +12,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libopenblas.so:math/openblas USES= cmake blaslapack:openblas +USE_LDCONFIG= yes + USE_GITHUB= yes GH_ACCOUNT= sunqm -USE_LDCONFIG= yes PLIST_FILES= include/cint.h \ include/cint_funcs.h \ @@ -22,4 +23,10 @@ PLIST_FILES= include/cint.h \ lib/libcint.so.${PORTVERSION:R:R} \ lib/libcint.so.${PORTVERSION} +do-test: # tests fail: https://github.com/sunqm/libcint/issues/54 + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DENABLE_TEST: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> |