diff --git a/dports/devel/coccinelle/Portfile b/dports/devel/coccinelle/Portfile
index a5c1140..1dc060c 100644
a
|
b
|
PortSystem 1.0 |
5 | 5 | |
6 | 6 | name coccinelle |
7 | 7 | version 1.0.0-rc21 |
| 8 | revision 1 |
8 | 9 | license GPL-2 |
9 | 10 | maintainers g5pw openmaintainer |
10 | 11 | |
… |
… |
configure.args-append \ |
45 | 46 | # Build optimized version only |
46 | 47 | # build.target opt-only |
47 | 48 | |
48 | | variant python26 conflicts python33 python32 python31 python27 description {Build with python 2.6 support} { |
49 | | set mypydir ${frameworks_dir}/Python.framework/Versions/2.6 |
50 | | configure.args-delete --disable-python |
51 | | configure.args-append --enable-python \ |
52 | | --with-python=${mypydir}/bin/python |
53 | | |
54 | | configure.env-append \ |
55 | | PKG_CONFIG_PATH=${mypydir}/lib/pkgconfig |
56 | | depends_lib-append port:python26 |
57 | | } |
| 49 | # TODO: Remove after 2015-12-26. |
| 50 | variant python26 requires python27 description {Legacy variant} {} |
| 51 | variant python31 requires python34 description {Legacy variant} {} |
| 52 | variant python32 requires python34 description {Legacy variant} {} |
| 53 | variant python33 requires python34 description {Legacy variant} {} |
58 | 54 | |
59 | | variant python27 conflicts python33 python32 python31 python26 description {Build with python 2.7 support} { |
| 55 | variant python27 conflicts python34 description {Build with python 2.7 support} { |
60 | 56 | set mypydir ${frameworks_dir}/Python.framework/Versions/2.7 |
61 | 57 | configure.args-delete --disable-python |
62 | 58 | configure.args-append --enable-python \ |
… |
… |
variant python27 conflicts python33 python32 python31 python26 description {Buil |
66 | 62 | depends_lib-append port:python27 |
67 | 63 | } |
68 | 64 | |
69 | | variant python31 conflicts python33 python32 python27 python26 description {Build with python 3.1 support} { |
70 | | set mypydir ${frameworks_dir}/Python.framework/Versions/3.1 |
71 | | configure.args-delete --disable-python |
72 | | configure.args-append --enable-python \ |
73 | | --with-python=${mypydir}/bin/python3 |
74 | | configure.env-append \ |
75 | | PKG_CONFIG_PATH=${mypydir}/lib/pkgconfig |
76 | | depends_lib-append port:python31 |
77 | | } |
78 | | |
79 | | variant python32 conflicts python33 python31 python27 python26 description {Build with python 3.2 support} { |
80 | | set mypydir ${frameworks_dir}/Python.framework/Versions/3.2 |
81 | | configure.args-delete --disable-python |
82 | | configure.args-append --enable-python \ |
83 | | --with-python=${mypydir}/bin/python3 |
84 | | configure.env-append \ |
85 | | PKG_CONFIG_PATH=${mypydir}/lib/pkgconfig |
86 | | depends_lib-append port:python32 |
87 | | } |
88 | | |
89 | | variant python33 conflicts python32 python31 python27 python26 description {Build with python 3.3 support} { |
90 | | set mypydir ${frameworks_dir}/Python.framework/Versions/3.3 |
| 65 | variant python34 conflicts python27 description {Build with python 3.4 support} { |
| 66 | set mypydir ${frameworks_dir}/Python.framework/Versions/3.4 |
91 | 67 | configure.args-delete --disable-python |
92 | 68 | configure.args-append --enable-python \ |
93 | 69 | --with-python=${mypydir}/bin/python3 |
94 | 70 | configure.env-append \ |
95 | 71 | PKG_CONFIG_PATH=${mypydir}/lib/pkgconfig |
96 | | depends_lib-append port:python33 |
| 72 | depends_lib-append port:python34 |
97 | 73 | } |
98 | 74 | |
99 | 75 | variant pcre description {Enable PCRE support} { |