1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name gpp4 |
---|
6 | version 1.3.1 |
---|
7 | categories science |
---|
8 | maintainers nomaintainer |
---|
9 | license LGPL3 |
---|
10 | |
---|
11 | description macromolecular crystallography library |
---|
12 | long_description The goal of this project -- named gpp4 to \ |
---|
13 | distinguish it from CCP4 -- is to provide a \ |
---|
14 | drop-in replacement for the CCP4 libraries, that \ |
---|
15 | as carefully as possible implements the current \ |
---|
16 | CCP4 library interface, while not requiring the \ |
---|
17 | whole CCP4 package to be installed. |
---|
18 | |
---|
19 | homepage https://launchpad.net/gpp4 |
---|
20 | platforms darwin |
---|
21 | |
---|
22 | distname ${name}-${version} |
---|
23 | master_sites http://launchpad.net/gpp4/1.3/${version}/+download/ |
---|
24 | #configure.args --without-fortran-api |
---|
25 | |
---|
26 | checksums rmd160 d50f252ea382a2bb0445abcac74477a3b969b9e2 \ |
---|
27 | md5 e608519594f430c78be3c53e8e26a260 |
---|
28 | |
---|
29 | depends_lib port:mmdb port:pkgconfig |
---|
30 | depends_build port:gawk port:gsed |
---|
31 | |
---|
32 | variant gcc43 conflicts gcc44 gcc45 gcc46 description {Compile with gcc 4.3} { |
---|
33 | configure.compiler macports-gcc-4.3 |
---|
34 | depends_lib-append port:gcc43 |
---|
35 | } |
---|
36 | |
---|
37 | variant gcc44 conflicts gcc43 gcc45 gcc46 description {Compile with gcc 4.4} { |
---|
38 | configure.compiler macports-gcc-4.4 |
---|
39 | depends_lib-append port:gcc44 |
---|
40 | } |
---|
41 | |
---|
42 | variant gcc45 conflicts gcc43 gcc44 gcc46 description {Compile with gcc 4.5} { |
---|
43 | configure.compiler macports-gcc-4.5 |
---|
44 | depends_lib-append port:gcc45 |
---|
45 | } |
---|
46 | |
---|
47 | variant gcc46 conflicts gcc43 gcc44 gcc45 description {Compile with gcc 4.5} { |
---|
48 | configure.compiler macports-gcc-4.6 |
---|
49 | depends_lib-append port:gcc46 |
---|
50 | } |
---|
51 | |
---|
52 | if {![variant_isset gcc43] && ![variant_isset gcc44] && ![variant_isset gcc45] && ![variant_isset gcc46]} { |
---|
53 | default_variants +gcc46 |
---|
54 | } |
---|