Ticket #35003: Portfile-pv.diff

File Portfile-pv.diff, 2.9 KB (added by nonstop.server@…, 12 years ago)

proposed patch

  • Portfile

    old new  
     1# -*- 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
    12# $Id: Portfile 94714 2012-06-27 10:07:30Z ryandesign@macports.org $
    23
    3 PortSystem 1.0
    4 PortGroup  muniversal 1.0
     4PortSystem       1.0
     5PortGroup        muniversal 1.0
    56
    6 name            pv
    7 version         1.2.0
    8 categories      sysutils
    9 platforms       darwin
    10 maintainers     gmail.com:meissnem
    11 license         Apache-2.0
    12 
    13 description     monitor the progress of data through a pipe
    14 long_description        \
    15         pv - Pipe Viewer - is a terminal-based tool for monitoring      \
    16         the progress of data through a pipeline. It can be inserted     \
    17         into any normal pipeline between two processes to give a        \
    18         visual indication of how quickly data is passing through,       \
    19         how long it has taken, how near to completion it is, and an     \
    20         estimate of how long it will be until completion.
    21 homepage        http://www.ivarch.com/programs/pv.shtml
    22 master_sites    googlecode:pipeviewer
    23 use_bzip2       yes
    24 checksums           md5     67aedf6dbcd068d5feeaa76156153f4f \
    25                     sha1    bb921bca55347a1b7c6f74ce6b70cff0325499d7 \
    26                     rmd160  3dfb7dc65c2d8032d3db1dcce27b42cc9cc14540
    27 configure.args  --mandir=${prefix}/share/man --infodir=${prefix}/share/info
    28 depends_lib     port:gettext
     7name             pv
     8version          1.3.1
     9categories       sysutils
     10platforms        darwin
     11license          Apache-2.0
     12maintainers      gmail.com:meissnem
     13description      monitor the progress of data through a pipe
     14
     15long_description pv - Pipe Viewer - is a terminal-based tool for monitoring \
     16                 the progress of data through a pipeline. It can be inserted \
     17                 into any normal pipeline between two processes to give a \
     18                 visual indication of how quickly data is passing through, \
     19                 how long it has taken, how near to completion it is, and an \
     20                 estimate of how long it will be until completion.
     21
     22homepage         http://www.ivarch.com/programs/pv.shtml
     23master_sites     http://www.ivarch.com/programs/sources \
     24                 googlecode:pipeviewer
     25
     26checksums        md5     4ca3b00c92e4c79045ca2d056fb77f40 \
     27                 sha1    3f12ec2da17ab4021271038d72a45a6a680056d2 \
     28                 rmd160  34bdf6dc2b180c3764af89fdb25b14f7c2d32055
     29
     30use_bzip2        yes
     31
     32configure.args   --mandir=${prefix}/share/man \
     33                 --infodir=${prefix}/share/info
     34
     35depends_lib      port:gettext
    2936
    3037if {${os.platform} == "darwin" && ${os.major} != 9} {
    3138    # Leopard is the only release where stat64 exists and is not deprecated
    3239    patchfiles-append stat64.diff
    3340}
    3441
    35 livecheck.type      regex
    36 livecheck.regex     >${name}-(\[0-9.\]+)${extract.suffix}<
     42livecheck.type   regex
     43livecheck.regex  >${name}-(\[0-9.\]+)${extract.suffix}<