Ticket #37763: Portfile-mod_wsgi.2.diff
File Portfile-mod_wsgi.2.diff, 3.0 KB (added by bryan@…, 12 years ago) |
---|
-
(a) Portfile.txt vs. (b) /Users/bkeller/src/ports/www/mod_wsgi/Portfile
a b 3 3 PortSystem 1.0 4 4 5 5 name mod_wsgi 6 version 3. 36 version 3.4 7 7 categories www python 8 8 platforms darwin 9 9 license Apache … … 17 17 18 18 homepage http://www.modwsgi.org/ 19 19 master_sites googlecode:modwsgi 20 checksums md5 6172bb2bbabcd0c25867c2bc06f99dbb \ 21 sha1 f32d38e5d3ed5de1efd5abefb52678f833dc9166 \ 22 rmd160 759cf57d691924271fbc45af10596c033c063c89 20 checksums md5 f42d69190ea0c337ef259cbe8d94d985 \ 21 sha1 92ebc48e60ab658a984f97fd40cb71e0ae895469 23 22 24 23 depends_lib port:apache2 25 24 … … 44 43 && ![variant_isset python25] 45 44 && ![variant_isset python26] 46 45 && ![variant_isset python27] 47 && ![variant_isset python31]} { 46 && ![variant_isset python31] 47 && ![variant_isset python32] 48 && ![variant_isset python33]} { 48 49 default_variants +python26 49 50 } 50 51 51 variant python24 conflicts python25 python26 python27 python31 description {Use Python 2.4} {52 variant python24 conflicts python25 python26 python27 python31 python32 python33 description {Use Python 2.4} { 52 53 depends_lib-append port:python24 53 54 configure.args-append --with-python=${prefix}/bin/python2.4 54 55 } 55 56 56 variant python25 conflicts python24 python26 python27 python31 description {Use Python 2.5} {57 variant python25 conflicts python24 python26 python27 python31 python32 python33 description {Use Python 2.5} { 57 58 depends_lib-append port:python25 58 59 configure.args-append --with-python=${prefix}/bin/python2.5 59 60 } 60 61 61 variant python26 conflicts python24 python25 python27 python31 description {Use Python 2.6} {62 variant python26 conflicts python24 python25 python27 python31 python32 python33 description {Use Python 2.6} { 62 63 depends_lib-append port:python26 63 64 configure.args-append --with-python=${prefix}/bin/python2.6 64 65 } 65 66 66 variant python27 conflicts python24 python25 python26 python31 description {Use Python 2.7} {67 variant python27 conflicts python24 python25 python26 python31 python32 python33 description {Use Python 2.7} { 67 68 depends_lib-append port:python27 68 69 configure.args-append --with-python=${prefix}/bin/python2.7 69 70 } 70 71 71 variant python31 conflicts python24 python25 python26 python27 description {Use Python 3.1} {72 variant python31 conflicts python24 python25 python26 python27 python32 python33 description {Use Python 3.1} { 72 73 depends_lib-append port:python31 73 74 configure.args-append --with-python=${prefix}/bin/python3.1 74 75 } 75 76 77 variant python32 conflicts python24 python25 python26 python27 python31 python33 description {Use Python 3.2} { 78 depends_lib-append port:python32 79 configure.args-append --with-python=${prefix}/bin/python3.2 80 } 81 82 variant python33 conflicts python24 python25 python26 python27 python31 python32 description {Use Python 3.3} { 83 depends_lib-append port:python33 84 configure.args-append --with-python=${prefix}/bin/python3.3 85 } 86