New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80083


Ignore:
Timestamp:
07/03/11 17:02:05 (4 years ago)
Author:
jeremyhu@…
Message:

gnome-desktop-suite: Add variants to choose between python versions (2.5, 2.6, and 2.7)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/gnome/gnome-desktop-suite/Portfile

    r73975 r80083  
    66name            gnome-desktop-suite 
    77version         2.30.2 
    8 revision        1 
     8revision        2 
    99categories      gnome 
    1010maintainers     devans openmaintainer 
     
    117117                port:metacity \ 
    118118                port:nautilus \ 
    119                 port:py26-pygtksourceview \ 
    120119                port:seahorse \ 
    121120                port:seahorse-plugins \ 
     
    164163} 
    165164 
     165variant python25 conflicts python26 python27 description {Use python 2.5} { 
     166    depends_lib-append        port:py25-pygtksourceview 
     167} 
     168 
     169variant python26 conflicts python25 python27 description {Use python 2.6} { 
     170    depends_lib-append        port:py26-pygtksourceview 
     171} 
     172 
     173variant python27 conflicts python25 python26 description {Use python 2.7} { 
     174    depends_lib-append        port:py27-pygtksourceview 
     175} 
     176 
     177if {![variant_isset python25] && ![variant_isset python26]} { 
     178    default_variants +python27 
     179} 
     180 
    166181destroot        { 
    167182    file mkdir ${destroot}${prefix}/share/doc/gnome 
Note: See TracChangeset for help on using the changeset viewer.