Ticket #31568: caml-graph_Portfile.diff
File caml-graph_Portfile.diff, 1.5 KB (added by mww@…, 13 years ago) |
---|
-
Portfile
1 1 # $Id$ 2 2 3 3 PortSystem 1.0 4 PortGroup ocaml 1.0 4 5 name caml-graph 5 version 1. 76 version 1.8 6 7 distname ocamlgraph-${version} 7 8 categories devel ml 8 9 maintainers labri.fr:fh … … 17 18 platforms darwin 18 19 master_sites http://ocamlgraph.lri.fr/download/ 19 20 20 checksums sha1 fb15adbcdc5d258b733eec32a69f9db0c2f7581d\21 rmd160 5006095e66f5f552b187a1b37b760dbaae88bd0e21 checksums sha1 ba1215a30ceba6c4faaceb923a8d8fe8db6163c0 \ 22 rmd160 32c1207b41d5218b9b63a2774477103788d3eac0 22 23 23 24 livecheck.url http://ocamlgraph.lri.fr/ 24 25 livecheck.type regex … … 26 27 27 28 depends_lib port:ocaml port:caml-findlib 28 29 29 # ocaml is not universal 30 universal_variant no 30 configure.env OCAMLFIND=${ocamlfind_wrapper} 31 31 32 32 use_parallel_build no 33 patchfiles patch-Makefile.in.diff 33 build.target-append doc 34 34 35 set ocamlfind_destdir ${destroot}${prefix}/lib/ocaml/site-lib36 37 destroot.env OCAMLFIND_INSTFLAGS="-destdir $ocamlfind_destdir -ldconf ignore"38 35 destroot.target install-findlib 39 36 40 pre-destroot { 41 file mkdir $ocamlfind_destdir 37 post-destroot { 38 xinstall -m 755 -d ${destroot}${prefix}/share/doc 39 file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name} 42 40 }