Ticket #16185: Portfile

File Portfile, 1.2 KB (added by toots@…, 16 years ago)
Line 
1# $Id$
2
3PortSystem          1.0
4
5name                ocaml-ogg
6version             0.2.0
7categories          devel ml
8maintainers         toots@rastageeks.org
9description         OCaml bindings for the libogg multimedia library
10homepage            http://savonet.sf.net/
11platforms           darwin
12master_sites        sourceforge:savonet
13
14checksums           md5  eec171992ebb0cb24ec5877de51923ca \
15                    sha1  c632364a997ed53a9bb97f6f340d0d6558d810cb \
16                    rmd160  b8676342670e07ddc5008507184c3d6359babf9c
17
18depends_lib         bin:camlc.opt:ocaml \
19  bin:ocamlfind:caml-findlib bin:pkg-config:pkgconfig \
20  port:libogg
21
22configure.pkg_config    ${prefix}/bin/pkg-config
23
24build.args          LIBDIRS=${prefix}/lib
25
26proc ocamlfind_destdir {} {
27    # only bother calculating this darn thing once
28    variable ocamlfind_destdir {}
29    variable destroot
30    variable prefix
31    if {![string length $ocamlfind_destdir]} {
32        set ocamlfind_destdir ${destroot}[exec ${prefix}/bin/ocamlfind printconf destdir]
33    }
34    return $ocamlfind_destdir
35}
36
37pre-destroot {
38  system "mkdir -p [ocamlfind_destdir]"
39  reinplace "s#\$(OCAMLFIND_INSTFLAGS)# -ldconf ignore -destdir '[ocamlfind_destdir]'#g" ${worksrcpath}/src/OCamlMakefile
40}
41