diff --git a/dports/www/redland-bindings/Portfile b/dports/www/redland-bindings/Portfile
index c7c4088..12b2964 100644
a
|
b
|
PortSystem 1.0 |
4 | 4 | |
5 | 5 | name redland-bindings |
6 | 6 | version 1.0.16.1 |
| 7 | revision 1 |
7 | 8 | description Redland RDF Language Bindings |
8 | 9 | long_description Redland is a set of free software libraries that provide \ |
9 | 10 | support for the Resource Description Framework (RDF). \ |
… |
… |
variant php5 { |
47 | 48 | depends_lib-append path:bin/php:php5 |
48 | 49 | } |
49 | 50 | |
50 | | variant python24 conflicts python25 python26 python27 { |
51 | | configure.args-append --with-python --with-python-ldflags="-Wl,-F. -Wl,-F. -bundle ${prefix}/Library/Frameworks/Python.framework/Versions/2.4/Python" |
52 | | depends_lib-append port:python24 |
53 | | } |
54 | | |
55 | | variant python25 conflicts python24 python26 python27 { |
56 | | configure.args-append --with-python --with-python-ldflags="-Wl,-F. -Wl,-F. -bundle ${prefix}/Library/Frameworks/Python.framework/Versions/2.5/Python" |
57 | | depends_lib-append port:python25 |
58 | | } |
| 51 | # TODO: Remove after 2016-01-04. |
| 52 | variant python24 requires python27 description {Legacy variant} {} |
| 53 | variant python25 requires python27 description {Legacy variant} {} |
59 | 54 | |
60 | | variant python26 conflicts python24 python25 python27 { |
| 55 | variant python26 conflicts python27 { |
61 | 56 | configure.args-append --with-python --with-python-ldflags="-Wl,-F. -Wl,-F. -bundle ${prefix}/Library/Frameworks/Python.framework/Versions/2.6/Python" |
62 | 57 | depends_lib-append port:python26 |
63 | 58 | } |
64 | 59 | |
65 | | variant python27 conflicts python24 python25 python26 { |
| 60 | variant python27 conflicts python26 { |
66 | 61 | configure.args-append --with-python --with-python-ldflags="-Wl,-F. -Wl,-F. -bundle ${prefix}/Library/Frameworks/Python.framework/Versions/2.7/Python" |
67 | 62 | depends_lib-append port:python27 |
68 | 63 | } |