Ticket #23020: ffcall-cvs.diff

File ffcall-cvs.diff, 1.5 KB (added by jmroot (Joshua Root), 13 years ago)
  • Portfile

     
    11# $Id$
    22
    33PortSystem 1.0
     4
    45name                            ffcall
    5 version                         1.10
    6 revision                        1
     6set snapshot            2010-11-08
     7version                         1.11-${snapshot}
    78categories                      devel
    89maintainers                     nomaintainer
    910description                     Foreign function call libraries
    1011long_description        ffcall is a collection of four libraries which can \
    1112                                        be used to build foreign function call interfaces \
    1213                                        in embedded interpreters.
    13 homepage                        http://www.haible.de/bruno/packages-ffcall.html
     14homepage                        http://www.gnu.org/software/libffcall/
    1415platforms                       darwin
    15 master_sites            ftp://ftp.santafe.edu/pub/gnu/ \
    16                                         http://www.haible.de/bruno/gnu/
    17 checksums                       md5 2db95007e901f3bc2ae7e5a9fe9ebea4
     16# no 1.11 release tarball yet
     17#master_sites           gnu:libffcall
     18
     19fetch.type          cvs
     20distname            $name
     21cvs.root            :pserver:anonymous@cvs.savannah.gnu.org:/sources/libffcall
     22cvs.date            $snapshot
     23
    1824test.run                        yes
    1925test.target                     check
    2026# configure accepts --infodir, although there is no info pages (yet?).
    2127configure.args          --mandir=${prefix}/share/man \
    2228                                        --infodir=${prefix}/share/info
     29platform darwin {
     30    configure.args-append --build=${build_arch}-apple-darwin${os.version}
     31}
    2332
    2433post-destroot {
    2534        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
    2635        eval move [glob ${destroot}${prefix}/share/html/*] \
    2736                ${destroot}${prefix}/share/doc/${name}
    2837}
    29