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 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name xrmc |
---|
6 | version 6.4.1 |
---|
7 | revision 0 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | license GPLv3 |
---|
11 | maintainers me.com:Tom.Schoonjans |
---|
12 | |
---|
13 | description A Monte Carlo program for the accurate simulation of X-ray imaging and spectroscopy experiments in heterogeneous samples |
---|
14 | |
---|
15 | long_description XRMC is a Monte Carlo program for the accurate simulation \ |
---|
16 | of X-ray imaging and spectroscopy experiments in heterogeneous \ |
---|
17 | samples. The use of the Monte Carlo method makes the code \ |
---|
18 | suitable for the detailed simulation of complex experiments \ |
---|
19 | on generic samples. Variance reduction techniques are used \ |
---|
20 | to reduce the computational time considerably compared to \ |
---|
21 | general purpose Monte Carlo programs. The program is written in \ |
---|
22 | C++ and has been tested on Linux, Mac OS X and MS Windows platforms. |
---|
23 | |
---|
24 | homepage http://github.com/golosio/xrmc |
---|
25 | master_sites http://lvserver.ugent.be/xrmc/files |
---|
26 | |
---|
27 | checksums rmd160 0e8ed9825f99a3bec3ac683a7399dd485d360347 \ |
---|
28 | sha256 6e662d7b71d6db51dd1ece73cdd9fb6251d2c78afef79c44a1eb860bce2ffb08 |
---|
29 | |
---|
30 | |
---|
31 | use_parallel_build yes |
---|
32 | depends_lib port:xraylib |
---|
33 | |
---|
34 | configure.args --disable-xmi-msim |
---|
35 | |
---|
36 | variant gcc45 conflicts gcc46 gcc47 gcc48 description {Compile with gcc 4.5} { |
---|
37 | configure.compiler macports-gcc-4.5 |
---|
38 | depends_lib-append port:gcc45 |
---|
39 | } |
---|
40 | |
---|
41 | variant gcc46 conflicts gcc45 gcc47 gcc48 description {Compile with gcc 4.6} { |
---|
42 | configure.compiler macports-gcc-4.6 |
---|
43 | depends_lib-append port:gcc46 |
---|
44 | } |
---|
45 | |
---|
46 | variant gcc47 conflicts gcc45 gcc46 gcc48 description {Compile with gcc 4.7} { |
---|
47 | configure.compiler macports-gcc-4.7 |
---|
48 | depends_lib-append port:gcc47 |
---|
49 | } |
---|
50 | |
---|
51 | variant gcc48 conflicts gcc45 gcc46 gcc47 description {Compile with gcc 4.8} { |
---|
52 | configure.compiler macports-gcc-4.8 |
---|
53 | depends_lib-append port:gcc48 |
---|
54 | } |
---|
55 | |
---|
56 | if {![variant_isset gcc45] && ![variant_isset gcc46] && ![variant_isset gcc48] |
---|
57 | } then { |
---|
58 | default_variants +gcc47 |
---|
59 | } |
---|