1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup cmake 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup ALPSCore ALPSCore 0.5.1 v |
---|
9 | categories science |
---|
10 | platforms darwin |
---|
11 | license GPL-2 |
---|
12 | maintainers umich.edu:galexv |
---|
13 | |
---|
14 | description A package for the simulation of condensed matter physics problems: Core Libraries |
---|
15 | long_description ALPSCore contains the core libraries of the applications and libraries \ |
---|
16 | for physics simulations, ALPS. The package is maintained by the UMich group, \ |
---|
17 | for more information see alpscore.org |
---|
18 | |
---|
19 | homepage http://alpscore.org |
---|
20 | |
---|
21 | checksums rmd160 34d25679d4cc3f3aea1b3685e3b133d788e3168d \ |
---|
22 | sha256 a10b64f8fdfbdafe510508d408319755f082979665a9d83f23799da77ad4b89b |
---|
23 | |
---|
24 | compiler.blacklist gcc-4.2 |
---|
25 | |
---|
26 | depends_lib port:boost \ |
---|
27 | port:hdf5 |
---|
28 | |
---|
29 | # BOOST_ROOT - location for boost distribution |
---|
30 | # GTEST_ROOT - location for gtest sources/binaries |
---|
31 | # HDF5_ROOT - location for the HDF5 distribution |
---|
32 | # EXTRA_CMAKE_FLAGS - extra options for CMake invocation (can be empty) |
---|
33 | # EXTRA_MAKE_FLAGS - extra options for the first `make` invocation (can be empty) |
---|
34 | # FAST_BUILD |
---|
35 | configure.args -DTesting=ON \ |
---|
36 | -DExtensiveTesting=OFF \ |
---|
37 | -DBOOST_ROOT=${prefix} \ |
---|
38 | -DENABLE_MPI=FALSE \ |
---|
39 | -DBuildPython=OFF \ |
---|
40 | -DTestXMLOutput=TRUE \ |
---|
41 | -DDocumentation=OFF |
---|
42 | |
---|
43 | cmake.out_of_source yes |
---|