Ticket #11120: patch-Portfile.diff

File patch-Portfile.diff, 1.7 KB (added by cssdev, 17 years ago)

Bump the version and checksum while also explicitly specifying dependencies.

  • Portfile

     
    33PortSystem 1.0
    44
    55name            streamripper
    6 version         1.61.26
     6version         1.61.27
    77categories      audio net
    88platforms       darwin
    99maintainers     css@macports.org
    1010description     separate tracks via Shoutcasts title-streaming
    11 long_description        Streamripper started as a way to separate tracks via \
    12                         Shoutcasts title-streaming feature. This has now been \
    13                         expanded into a much more generic feature, where part \
    14                         of the program only tries to hint at where one track \
    15                         starts and another ends, thus allowing a mp3 decoding \
    16                         engine to scan for a silent mark, which is used to \
    17                         find an exact track separation.
     11long_description        Streamripper started as a way to separate \
     12        tracks via Shoutcasts title-streaming feature. This has  \
     13        now been expanded into a much more generic feature, where \
     14        part of the program only tries to hint at where one track \
     15        starts and another ends, thus allowing a mp3 decoding    \
     16        engine to scan for a silent mark, which is used to find  \
     17        an exact track separation.
    1818
    1919homepage        http://streamripper.sourceforge.net/
    2020master_sites    ${homepage}/files/ sourceforge:${name}
    21 checksums       md5 435ae5886a47919732553925436f66df
     21checksums       md5 d92a37bf23ee3f1bd5a9498d72c0562a \
     22                sha1 bdbf0e301c3c783e1f13c2977508afd5076328ad
    2223
    23 configure.args  --mandir=${prefix}/share/man
     24depends_lib     port:libiconv \
     25                port:libogg \
     26                port:libvorbis
    2427
     28configure.args  --with-ogg=${prefix} --with-vorbis=${prefix} \
     29                --with-libiconv-prefix=${prefix} \
     30                --mandir=${prefix}/share/man
     31
    2532pre-destroot {
    2633        file attributes ${worksrcpath}/install-sh -permissions +rx
    2734}