diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-09 16:18:00 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-09 16:18:00 +0000 |
commit | b577f7a8bf1ebf70eeae2872e1626a1229df7531 (patch) | |
tree | c03bdc11c21d4187451062baa913ccaee6be7ef3 /devel/ocaml-findlib/Makefile | |
parent | e4a967c5d3b173899e83fbcd9eaf6a38f156760f (diff) | |
download | ports-b577f7a8bf1ebf70eeae2872e1626a1229df7531.tar.gz ports-b577f7a8bf1ebf70eeae2872e1626a1229df7531.zip |
Notes
Diffstat (limited to 'devel/ocaml-findlib/Makefile')
-rw-r--r-- | devel/ocaml-findlib/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/devel/ocaml-findlib/Makefile b/devel/ocaml-findlib/Makefile index a6c0c7d0c55b..742113ab59a3 100644 --- a/devel/ocaml-findlib/Makefile +++ b/devel/ocaml-findlib/Makefile @@ -13,7 +13,7 @@ CATEGORIES= devel MASTER_SITES= http://www.ocaml-programming.de/packages/ PKGNAMEPREFIX= ocaml- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= stephane@FreeBSD.org COMMENT= OCaml package manager BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml @@ -29,6 +29,13 @@ MAN5= META.5 findlib.conf.5 site-lib.5 post-install: @${FIND} ${PREFIX}/lib/ocaml/site-lib/findlib -type f | \ ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} + +# this list comes from the findlib configure script +.for D in dbm dynlink graphics num num-top str threads unix stdlib bigarray labltk camlp4 + @${FIND} ${PREFIX}/lib/ocaml/site-lib/$D -type f -name META | \ + ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} +.endfor + @${FIND} ${PREFIX}/lib/ocaml/site-lib/findlib -type d | ${SORT} -r | \ ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} |