1 | --- Portfile.txt 2011-04-17 14:25:24.000000000 -0700 |
---|
2 | +++ /Users/bkeller/src/ports/www/mod_wsgi/Portfile 2013-01-23 17:28:19.000000000 -0800 |
---|
3 | @@ -3,7 +3,7 @@ |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name mod_wsgi |
---|
7 | -version 3.3 |
---|
8 | +version 3.4 |
---|
9 | categories www python |
---|
10 | platforms darwin |
---|
11 | license Apache |
---|
12 | @@ -17,9 +17,8 @@ |
---|
13 | |
---|
14 | homepage http://www.modwsgi.org/ |
---|
15 | master_sites googlecode:modwsgi |
---|
16 | -checksums md5 6172bb2bbabcd0c25867c2bc06f99dbb \ |
---|
17 | - sha1 f32d38e5d3ed5de1efd5abefb52678f833dc9166 \ |
---|
18 | - rmd160 759cf57d691924271fbc45af10596c033c063c89 |
---|
19 | +checksums md5 f42d69190ea0c337ef259cbe8d94d985 \ |
---|
20 | + sha1 92ebc48e60ab658a984f97fd40cb71e0ae895469 |
---|
21 | |
---|
22 | depends_lib port:apache2 |
---|
23 | |
---|
24 | @@ -44,32 +43,44 @@ |
---|
25 | && ![variant_isset python25] |
---|
26 | && ![variant_isset python26] |
---|
27 | && ![variant_isset python27] |
---|
28 | - && ![variant_isset python31]} { |
---|
29 | + && ![variant_isset python31] |
---|
30 | + && ![variant_isset python32] |
---|
31 | + && ![variant_isset python33]} { |
---|
32 | default_variants +python26 |
---|
33 | } |
---|
34 | |
---|
35 | -variant python24 conflicts python25 python26 python27 python31 description {Use Python 2.4} { |
---|
36 | +variant python24 conflicts python25 python26 python27 python31 python32 python33 description {Use Python 2.4} { |
---|
37 | depends_lib-append port:python24 |
---|
38 | configure.args-append --with-python=${prefix}/bin/python2.4 |
---|
39 | } |
---|
40 | |
---|
41 | -variant python25 conflicts python24 python26 python27 python31 description {Use Python 2.5} { |
---|
42 | +variant python25 conflicts python24 python26 python27 python31 python32 python33 description {Use Python 2.5} { |
---|
43 | depends_lib-append port:python25 |
---|
44 | configure.args-append --with-python=${prefix}/bin/python2.5 |
---|
45 | } |
---|
46 | |
---|
47 | -variant python26 conflicts python24 python25 python27 python31 description {Use Python 2.6} { |
---|
48 | +variant python26 conflicts python24 python25 python27 python31 python32 python33 description {Use Python 2.6} { |
---|
49 | depends_lib-append port:python26 |
---|
50 | configure.args-append --with-python=${prefix}/bin/python2.6 |
---|
51 | } |
---|
52 | |
---|
53 | -variant python27 conflicts python24 python25 python26 python31 description {Use Python 2.7} { |
---|
54 | +variant python27 conflicts python24 python25 python26 python31 python32 python33 description {Use Python 2.7} { |
---|
55 | depends_lib-append port:python27 |
---|
56 | configure.args-append --with-python=${prefix}/bin/python2.7 |
---|
57 | } |
---|
58 | |
---|
59 | -variant python31 conflicts python24 python25 python26 python27 description {Use Python 3.1} { |
---|
60 | +variant python31 conflicts python24 python25 python26 python27 python32 python33 description {Use Python 3.1} { |
---|
61 | depends_lib-append port:python31 |
---|
62 | configure.args-append --with-python=${prefix}/bin/python3.1 |
---|
63 | } |
---|
64 | |
---|
65 | +variant python32 conflicts python24 python25 python26 python27 python31 python33 description {Use Python 3.2} { |
---|
66 | + depends_lib-append port:python32 |
---|
67 | + configure.args-append --with-python=${prefix}/bin/python3.2 |
---|
68 | +} |
---|
69 | + |
---|
70 | +variant python33 conflicts python24 python25 python26 python27 python31 python32 description {Use Python 3.3} { |
---|
71 | + depends_lib-append port:python33 |
---|
72 | + configure.args-append --with-python=${prefix}/bin/python3.3 |
---|
73 | +} |
---|
74 | + |
---|