New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79463


Ignore:
Timestamp:
06/14/11 07:13:34 (4 years ago)
Author:
and.damore@…
Message:

port mc: whitespace-only changes, detabbed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/sysutils/mc/Portfile

    r79462 r79463  
    44PortSystem 1.0 
    55 
    6 name            mc 
    7 version         4.7.5.2 
    8 categories      sysutils 
    9 maintainers     waqar openmaintainer 
    10 license         GPLv2 
    11 description     GNU Midnight Commander 
    12 long_description   \ 
    13         GNU Midnight Commander is a user-friendly yet powerful file \ 
    14         manager and visual shell, useful to novice and guru alike. \ 
    15         It provides a clear, user-friendly, and somewhat protected \ 
    16         interface to a Unix system while making many frequent file \ 
    17         operations more efficient and preserving the full power of \ 
    18         the command prompt. After some practice, you will wonder how \ 
    19         you could ever live without it. 
    20 homepage        http://www.midnight-commander.org/ 
    21 platforms       darwin 
    22 master_sites    ${homepage}downloads 
     6name                mc 
     7version             4.7.5.2 
     8categories          sysutils 
     9maintainers         waqar openmaintainer 
     10license             GPLv2 
     11description         GNU Midnight Commander 
     12long_description    \ 
     13                    GNU Midnight Commander is a user-friendly yet powerful file \ 
     14                    manager and visual shell, useful to novice and guru alike. \ 
     15                    It provides a clear, user-friendly, and somewhat protected \ 
     16                    interface to a Unix system while making many frequent file \ 
     17                    operations more efficient and preserving the full power of \ 
     18                    the command prompt. After some practice, you will wonder how \ 
     19                    you could ever live without it. 
     20homepage            http://www.midnight-commander.org/ 
     21platforms           darwin 
     22master_sites        ${homepage}downloads 
    2323 
    24 use_xz          yes 
    25 extract.suffix  .tar.lzma 
     24use_xz              yes 
     25extract.suffix      .tar.lzma 
    2626 
    2727checksums           md5     9fede28ed63ced53f1beeba2f95473da \ 
     
    2929                    rmd160  8477450d0f2cddc356d93c5006fcfd278966f863 
    3030 
    31 depends_build   path:bin/pkg-config:pkgconfig 
    32 depends_lib     path:lib/pkgconfig/glib-2.0.pc:glib2 
     31depends_build       path:bin/pkg-config:pkgconfig 
     32depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2 
    3333 
    34 configure.args  --without-x 
     34configure.args      --without-x 
    3535 
    3636post-destroot { 
    37         set docdir ${destroot}${prefix}/share/doc/${name} 
    38         xinstall -d ${docdir} 
    39         xinstall -m 644 -W ${worksrcpath} \ 
    40                 AUTHORS \ 
    41                 COPYING \ 
    42                 NEWS \ 
    43                 README \ 
    44                 ${docdir} 
     37    set docdir ${destroot}${prefix}/share/doc/${name} 
     38    xinstall -d ${docdir} 
     39    xinstall -m 644 -W ${worksrcpath} \ 
     40        AUTHORS \ 
     41        COPYING \ 
     42        NEWS \ 
     43        README \ 
     44        ${docdir} 
    4545} 
    4646 
    4747variant slang2 conflicts ncurses description {use slang2 screen library} { 
    48         depends_lib-append      port:slang2 
    49         configure.args-append   --with-screen=slang \ 
    50                                 --with-slang-includes=${prefix} \ 
    51                                 --with-slang-libs=${prefix} 
     48    depends_lib-append      port:slang2 
     49    configure.args-append   --with-screen=slang \ 
     50                            --with-slang-includes=${prefix} \ 
     51                            --with-slang-libs=${prefix} 
    5252} 
    5353 
    5454variant ncurses conflicts slang2 description {use ncurses screen library} { 
    55         depends_lib-append      port:ncursesw 
    56         configure.args-append   --with-screen=ncurses 
     55    depends_lib-append      port:ncursesw 
     56    configure.args-append   --with-screen=ncurses 
    5757} 
    5858 
    5959if { ![variant_isset ncurses] } { 
    60         default_variants +slang2 
     60    default_variants        +slang2 
    6161} 
    6262 
    63 livecheck.type  regex 
    64 livecheck.url   [lindex ${master_sites} 0] 
    65 livecheck.regex ${name}-(\[0-9.\]+)\\.tar 
     63livecheck.type  regex 
     64livecheck.url   [lindex ${master_sites} 0] 
     65livecheck.regex ${name}-(\[0-9.\]+)\\.tar 
Note: See TracChangeset for help on using the changeset viewer.