mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
58 lines
2.0 KiB
Makefile
58 lines
2.0 KiB
Makefile
PORTNAME= simint
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.8
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://www.bennyp.org/research/simint/download/
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Obara-Saika (OS) method of calculating electron repulsion integrals
|
|
WWW= https://www.bennyp.org/research/simint/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= cmake tar:bz2
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_SINGLE= VECTOR
|
|
OPTIONS_SINGLE_VECTOR= SCALAR ${ARCH:C/(amd64|i386)/SSE3 AVX AVXFMA MICAVX512/:C/^[a-z].*//}
|
|
OPTIONS_DEFAULT= ${ARCH:C/(amd64|i386)/SSE3/:C/^[a-z].*/SCALAR/}
|
|
VECTOR_DESC= Vector SIMD optimization
|
|
SCALAR_DESC= Unvectorized: no SIMD acceleration
|
|
SSE3_DESC= Intel CPUs with SSSE3 support
|
|
AVX_DESC= Intel CPUs with AVX support (Sandy/Ivy Bridge, Haswell)
|
|
AVXFMA_DESC= Intel CPUs with AVX and FMA support (Haswell)
|
|
MICAVX512_DESC= Intel KNL (experimental)
|
|
|
|
# Need https://reviews.freebsd.org/D13078 approved
|
|
#CMAKE_ARGS= -DSIMINT_VECTOR:STRING=${OPTIONS_SINGLE_VECTOR_SELECTED:S/3//:tl}
|
|
|
|
# Temporary replacement
|
|
SCALAR_CMAKE_ON= -DSIMINT_VECTOR:STRING=scalar
|
|
SSE3_CMAKE_ON= -DSIMINT_VECTOR:STRING=sse
|
|
AVX_CMAKE_ON= -DSIMINT_VECTOR:STRING=avx
|
|
AVXFMA_CMAKE_ON= -DSIMINT_VECTOR:STRING=avxfma
|
|
MICAVX512_CMAKE_ON= -DSIMINT_VECTOR:STRING=micavx512
|
|
|
|
CMAKE_ON= BUILD_SHARED_LIBS \
|
|
SIMINT_STANDALONE
|
|
CMAKE_OFF= ENABLE_TESTS
|
|
|
|
.for opt in ${OPTIONS_SINGLE_VECTOR}
|
|
${opt}_VARS= SIMINT_VECTOR=${opt}
|
|
.endfor
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/simint/cpp_restrict.hpp ${STAGEDIR}${PREFIX}/include/simint
|
|
|
|
do-test: # unfirtunately it rebuilds
|
|
@cd ${BUILD_WRKSRC} && \
|
|
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DENABLE_TESTS=ON ${CMAKE_SOURCE_PATH} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET}
|
|
.for tst in test_eri test_eri_deriv1 benchmark_eri screentest # from test/CMakeLists.txt
|
|
#@cd ${WRKSRC} && (${FIND} test/dat -name "*.mol" | ${XARGS} ${BUILD_WRKSRC}/test/${tst})
|
|
@cd ${WRKSRC} && (${FIND} test/dat -name "*.mol" | ${XARGS} printf "%s")
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|