Ticket #23020: ffcall-cvs.diff
File ffcall-cvs.diff, 1.5 KB (added by jmroot (Joshua Root), 14 years ago) |
---|
-
Portfile
1 1 # $Id$ 2 2 3 3 PortSystem 1.0 4 4 5 name ffcall 5 version 1.10 6 revision 1 6 set snapshot 2010-11-08 7 version 1.11-${snapshot} 7 8 categories devel 8 9 maintainers nomaintainer 9 10 description Foreign function call libraries 10 11 long_description ffcall is a collection of four libraries which can \ 11 12 be used to build foreign function call interfaces \ 12 13 in embedded interpreters. 13 homepage http://www. haible.de/bruno/packages-ffcall.html14 homepage http://www.gnu.org/software/libffcall/ 14 15 platforms 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 19 fetch.type cvs 20 distname $name 21 cvs.root :pserver:anonymous@cvs.savannah.gnu.org:/sources/libffcall 22 cvs.date $snapshot 23 18 24 test.run yes 19 25 test.target check 20 26 # configure accepts --infodir, although there is no info pages (yet?). 21 27 configure.args --mandir=${prefix}/share/man \ 22 28 --infodir=${prefix}/share/info 29 platform darwin { 30 configure.args-append --build=${build_arch}-apple-darwin${os.version} 31 } 23 32 24 33 post-destroot { 25 34 xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} 26 35 eval move [glob ${destroot}${prefix}/share/html/*] \ 27 36 ${destroot}${prefix}/share/doc/${name} 28 37 } 29