diff --git a/ports/python/py-obspy/Portfile b/ports/python/py-obspy/Portfile
index c9bc917..544adc3 100644
a
|
b
|
if {${subport} != ${name}} { |
53 | 53 | foreach ver ${gcc_versions} { |
54 | 54 | set ver_no_dot [join [split ${ver} "."] ""] |
55 | 55 | |
56 | | variant gcc${ver_no_dot} description {build with gfortran from gcc${ver_no_dot}} {} |
| 56 | set variant_line {variant gcc${ver_no_dot} description "build with gfortran from gcc${ver_no_dot}" } |
57 | 57 | |
58 | 58 | foreach over ${gcc_versions} { |
59 | 59 | if {${ver} == ${over}} { |
… |
… |
if {${subport} != ${name}} { |
61 | 61 | } |
62 | 62 | |
63 | 63 | set over_no_dot [join [split ${over} "."] ""] |
64 | | variant gcc${ver_no_dot} conflicts gcc${over_no_dot} {} |
| 64 | append variant_line " conflicts gcc${over_no_dot}" |
65 | 65 | } |
| 66 | append variant_line { {}} |
| 67 | |
| 68 | eval $variant_line |
66 | 69 | |
67 | 70 | if {[variant_isset gcc${ver_no_dot}]} { |
68 | 71 | if {${default_fortran_variant} != "+gcc${ver_no_dot}"} { |
… |
… |
if {${subport} != ${name}} { |
79 | 82 | set ver_no_dot [join [split ${ver} "."] ""] |
80 | 83 | |
81 | 84 | if {[variant_isset gcc${ver_no_dot}]} { |
82 | | depends_lib-append port:libgcc |
| 85 | depends_lib-append path:lib/libgcc/libgcc_s.1.dylib:libgcc |
83 | 86 | depends_build-append port:gcc${ver_no_dot} |
84 | 87 | |
85 | 88 | configure.fc ${prefix}/bin/gfortran-mp-${ver} |