Ticket #11192: patch-Portfile.diff

File patch-Portfile.diff, 649 bytes (added by cssdev, 17 years ago)

Bump the revision and add dependencies on gettext, libiconv, and ncurses. The latest was discovered during another trace build, and I verified the linking with otool.

  • Portfile

     
    22PortSystem 1.0
    33name            texinfo
    44version         4.8
    5 revision        1
     5revision        2
    66categories      textproc
    77maintainers     persquare@mac.com
    88description     Texinfo is the official documentation format of the GNU project
     
    2020configure.args  --mandir=${prefix}/share/man \
    2121                                --infodir=${prefix}/share/info
    2222
     23depends_lib     port:gettext \
     24                port:libiconv \
     25                port:ncurses
     26
    2327post-destroot {
    2428        file delete -force ${destroot}${prefix}/lib/charset.alias
    2529}