| 90 | variant python25 conflicts python26 python27 description {Use python 2.5} { |
| 91 | depends_build-append port:python25 |
| 92 | configure.python ${prefix}/bin/python2.5 |
| 93 | } |
| 94 | |
| 95 | variant python26 conflicts python25 python27 description {Use python 2.6} { |
| 96 | depends_build-append port:python26 |
| 97 | configure.python ${prefix}/bin/python2.6 |
| 98 | } |
| 99 | |
| 100 | variant python27 conflicts python25 python26 description {Use python 2.7} { |
| 101 | depends_build-append port:python27 |
| 102 | configure.python ${prefix}/bin/python2.7 |
| 103 | } |
| 104 | |
| 105 | if {![variant_isset python25] && ![variant_isset python26]} { |
| 106 | default_variants +python27 |
| 107 | } |
| 108 | |