Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 37373 for trunk/base/src

Show
Ignore:
Timestamp:
06/04/08 17:08:35 (6 months ago)
Author:
raimue@…
Message:

port/port.tcl:
Add new option --depends to port info,
which is a shorthand for --depends_bin --depends_lib --depends_build

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/base/src/port/port.tcl

    r37349 r37373  
    13481348            variants        1 
    13491349        " 
     1350 
     1351        if {[info exists options(ports_info_depends)] && $options(ports_info_depends) == "yes"} { 
     1352            array unset options ports_info_depends 
     1353            set options(ports_info_depends_build) yes 
     1354            set options(ports_info_depends_lib) yes 
     1355            set options(ports_info_depends_run) yes 
     1356        } 
    13501357                 
    13511358        # Set up our field separators 
     
    26142621array set cmd_args_array { 
    26152622    info        {{category 0} {categories 0} {depends_build 0} {depends_lib 0} 
    2616                 {depends_run 0} {description 0} {epoch 0} {homepage 0} 
    2617                 {index 0} {line 0} {long_description 0} {maintainer 0} 
    2618                 {maintainers 0} {name 0} {platform 0} {platforms 0} {portdir 0} 
    2619                 {revision 0} {variant 0} {variants 0} {version 0}} 
     2623                {depends_run 0} {depends 0} {description 0} {epoch 0} 
     2624                {homepage 0} {index 0} {line 0} {long_description 0} 
     2625                {maintainer 0} {maintainers 0} {name 0} {platform 0} 
     2626                {platforms 0} {portdir 0} {revision 0} {variant 0} {variants 0} 
     2627                {version 0}} 
    26202628    search      {{line 0}} 
    26212629    selfupdate  {{nosync 0} {pretend 0}}