blob: 5947738240463b26e8a03c9e809b97d1c4432a03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $FreeBSD$
PORTNAME= CheMPS2
DISTVERSIONPREFIX= v
DISTVERSION= 1.8.5
CATEGORIES= science
MAINTAINER= yuri@FreeBSD.org
COMMENT= Spin-adapted implementation of DMRG for ab initio quantum chemistry
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libhdf5.so:science/hdf5 \
libsz.so:science/szip
USES= blaslapack:openblas cmake:outsource fortran
USE_GITHUB= yes
GH_ACCOUNT= SebWouters
CMAKE_ARGS+= -DSHARED_ONLY:BOOL=ON
CMAKE_ARGS+= -DENABLE_TESTS:BOOL=OFF
CMAKE_ARGS+= -DENABLE_XHOST:BOOL=OFF # shouldn't optimize the port in case of central build
CMAKE_ARGS+= -DENABLE_OPENMP:BOOL=OFF # find_package(OpenMP) is broken since the merge into cmake: bug#223678
CMAKE_ARGS+= -DLAPACK_LIBRARIES="-lopenblas" # can't find it using find_package for some reason
.include <bsd.port.mk>
|