Revision: 115501 https://trac.macports.org/changeset/115501 Author: devans@macports.org Date: 2014-01-03 09:19:50 -0800 (Fri, 03 Jan 2014) Log Message: ----------- gimp2: remove unnecessary +no_python variant. Modified Paths: -------------- trunk/dports/graphics/gimp2/Portfile Modified: trunk/dports/graphics/gimp2/Portfile =================================================================== --- trunk/dports/graphics/gimp2/Portfile 2014-01-03 17:07:50 UTC (rev 115500) +++ trunk/dports/graphics/gimp2/Portfile 2014-01-03 17:19:50 UTC (rev 115501) @@ -1,7 +1,7 @@ # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 # $Id$ -PortSystem 1.0 +PortSystem 1.0 PortGroup compiler_blacklist_versions 1.0 name gimp2 @@ -136,7 +136,7 @@ use_autoreconf yes autoreconf.args -fvi -variant python26 conflicts no_python python27 description {Use python 2.6} { +variant python26 conflicts python27 description {Use python 2.6} { configure.python ${prefix}/bin/python2.6 depends_lib-append port:py26-pygtk set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 @@ -144,7 +144,7 @@ configure.env PATH=${python_framework}/bin:$env(PATH) } -variant python27 conflicts no_python python26 description {Use python 2.7} { +variant python27 conflicts python26 description {Use python 2.7} { configure.python ${prefix}/bin/python2.7 depends_lib-append port:py27-pygtk set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 @@ -152,11 +152,7 @@ configure.env PATH=${python_framework}/bin:$env(PATH) } -variant no_python description {Disable Python scripts and filters} { - configure.args-append --disable-python -} - -if {![variant_isset no_python] && ![variant_isset python26]} { +if {![variant_isset python26]} { default_variants +python27 }
participants (1)
-
devans@macports.org