Changeset 80839
- Timestamp:
- 07/18/11 14:24:30 (4 years ago)
- File:
-
- 1 edited
-
trunk/dports/sysutils/terminator/Portfile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/sysutils/terminator/Portfile
r72864 r80839 3 3 4 4 PortSystem 1.0 5 PortGroup python26 1.06 5 7 6 name terminator 8 7 version 0.95 9 revision 1 8 revision 2 9 10 if {![variant_isset python26] && ![variant_isset python27]} { 11 if {[file exists ${frameworks_dir}/Python.framework/Versions/2.6/lib/python2.6/site-packages/gtk-2.0/vtemodule.so]} { 12 default_variants +python26 13 } else { 14 default_variants +python27 15 variant_set python27 16 } 17 } 18 19 variant python26 conflicts python27 description {Use Python 2.6} {} 20 if {[variant_isset python26]} { 21 PortGroup python26 1.0 22 pre-configure { 23 if {![file exists ${python.pkgd}/gtk-2.0/vtemodule.so]} { 24 ui_error "To install ${name} with the +python26 variant, vte must be installed with the +python26 variant." 25 return -code error "incompatible vte installation" 26 } 27 } 28 } 29 30 variant python27 conflicts python26 description {Use Python 2.7} {} 31 if {[variant_isset python27]} { 32 PortGroup python27 1.0 33 pre-configure { 34 if {![file exists ${python.pkgd}/gtk-2.0/vtemodule.so]} { 35 ui_error "To install ${name} with the +python27 variant, vte must be installed with the +python27 variant." 36 return -code error "incompatible vte installation" 37 } 38 } 39 } 40 10 41 categories sysutils 11 42 platforms darwin
Note: See TracChangeset
for help on using the changeset viewer.

