diff --git a/ports/science/miriad/Portfile b/ports/science/miriad/Portfile
index db58961..7c9d937 100644
a
|
b
|
PortGroup xcodeversion 1.0 |
11 | 11 | name miriad |
12 | 12 | conflicts pgplot |
13 | 13 | set relver 4.3.8 |
14 | | set tardate 20140718 |
| 14 | set tardate 20141105 |
15 | 15 | version ${relver}.${tardate} |
16 | 16 | platforms darwin |
17 | 17 | categories science |
… |
… |
license GPL-2+ |
28 | 28 | # Files |
29 | 29 | |
30 | 30 | master_sites ${homepage} |
31 | | checksums rmd160 a63a6a3ff74bf97fd9ffc42c8d437591f24e6b65 \ |
32 | | sha256 9e3b79e8992d78669e39acec53aa6323644b45dc368f22cbd021b00b82696324 |
| 31 | checksums rmd160 8dac0c2878349235a463d74b66ad10a067881eb1 \ |
| 32 | sha256 8afa0df99b89280a0427845f53b847f83c7aa960a7e6c5a7f6e1387740556a8d |
33 | 33 | |
34 | 34 | # Telescope/buffer size selection. |
35 | 35 | |
… |
… |
if {[variant_isset ata]} { |
54 | 54 | # to build with better-optimizing proprietary compilers, which we allow |
55 | 55 | # via the gcc_select mechanism. |
56 | 56 | |
57 | | variant gcc45 conflicts gcc46 gcc47 gcc_select description {Build with gcc/gfortran 4.5} { |
58 | | configure.compiler macports-gcc-4.5 |
59 | | } |
60 | | |
61 | | variant gcc46 conflicts gcc45 gcc47 gcc_select description {Build with gcc/gfortran 4.6} { |
| 57 | variant gcc46 conflicts gcc47 gcc48 gcc49 gcc_select description {Build with gcc/gfortran 4.6} { |
62 | 58 | configure.compiler macports-gcc-4.6 |
63 | 59 | } |
64 | 60 | |
65 | | variant gcc47 conflicts gcc45 gcc46 gcc_select description {Build with gcc/gfortran 4.7} { |
| 61 | variant gcc47 conflicts gcc46 gcc48 gcc49 gcc_select description {Build with gcc/gfortran 4.7} { |
66 | 62 | configure.compiler macports-gcc-4.7 |
67 | 63 | } |
68 | 64 | |
69 | | variant gcc_select conflicts gcc45 gcc46 gcc47 description {Build with compilers chosen via gcc_select -- experts only} { |
| 65 | variant gcc48 conflicts gcc46 gcc47 gcc49 gcc_select description {Build with gcc/gfortran 4.8} { |
| 66 | configure.compiler macports-gcc-4.8 |
| 67 | } |
| 68 | |
| 69 | variant gcc49 conflicts gcc46 gcc47 gcc48 gcc_select description {Build with gcc/gfortran 4.9} { |
| 70 | configure.compiler macports-gcc-4.9 |
| 71 | } |
| 72 | |
| 73 | variant gcc_select conflicts gcc46 gcc47 gcc48 gcc49 description {Build with compilers chosen via gcc_select -- experts only} { |
70 | 74 | configure.compiler macports-gcc |
71 | 75 | } |
72 | 76 | |
73 | | if {![variant_isset gcc45] && ![variant_isset gcc46] && ![variant_isset gcc47] && ![variant_isset gcc_select]} { |
74 | | default_variants +gcc47 |
| 77 | if {![variant_isset gcc46] && ![variant_isset gcc47] && ![variant_isset gcc48] && ![variant_isset gcc49] && ![variant_isset gcc_select]} { |
| 78 | default_variants +gcc48 |
75 | 79 | } |
76 | 80 | |
77 | 81 | universal_variant no |