Ticket #31568: caml-graph_Portfile.diff

File caml-graph_Portfile.diff, 1.5 KB (added by mww@…, 13 years ago)
  • Portfile

     
    11# $Id$
    22
    33PortSystem          1.0
     4PortGroup ocaml 1.0
    45name                caml-graph
    5 version             1.7
     6version             1.8
    67distname            ocamlgraph-${version}
    78categories          devel ml
    89maintainers         labri.fr:fh
     
    1718platforms           darwin
    1819master_sites        http://ocamlgraph.lri.fr/download/
    1920
    20 checksums           sha1    fb15adbcdc5d258b733eec32a69f9db0c2f7581d \
    21                     rmd160  5006095e66f5f552b187a1b37b760dbaae88bd0e
     21checksums           sha1    ba1215a30ceba6c4faaceb923a8d8fe8db6163c0 \
     22                    rmd160  32c1207b41d5218b9b63a2774477103788d3eac0
    2223
    2324livecheck.url       http://ocamlgraph.lri.fr/
    2425livecheck.type      regex
     
    2627
    2728depends_lib         port:ocaml port:caml-findlib
    2829
    29 # ocaml is not universal
    30 universal_variant   no
     30configure.env       OCAMLFIND=${ocamlfind_wrapper}
    3131
    3232use_parallel_build  no
    33 patchfiles          patch-Makefile.in.diff
     33build.target-append doc
    3434
    35 set ocamlfind_destdir ${destroot}${prefix}/lib/ocaml/site-lib
    36 
    37 destroot.env        OCAMLFIND_INSTFLAGS="-destdir $ocamlfind_destdir -ldconf ignore"
    3835destroot.target     install-findlib
    3936
    40 pre-destroot {
    41     file mkdir $ocamlfind_destdir
     37post-destroot {
     38    xinstall -m 755 -d ${destroot}${prefix}/share/doc
     39    file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name}
    4240}