diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-08-04 16:54:10 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-08-04 16:54:10 +0000 |
commit | 7f09660d2362fd56d535f7f61dad8eb3f2aac2e1 (patch) | |
tree | 21f79a0ff644c7eaeca17c3e05b4d57236f6553a /devel/ocaml-xstrp4 | |
parent | 5a283890144926f1087faf344f397740fc970ed4 (diff) | |
download | ports-7f09660d2362fd56d535f7f61dad8eb3f2aac2e1.tar.gz ports-7f09660d2362fd56d535f7f61dad8eb3f2aac2e1.zip |
Notes
Diffstat (limited to 'devel/ocaml-xstrp4')
-rw-r--r-- | devel/ocaml-xstrp4/Makefile | 49 | ||||
-rw-r--r-- | devel/ocaml-xstrp4/distinfo | 3 | ||||
-rw-r--r-- | devel/ocaml-xstrp4/pkg-descr | 5 |
3 files changed, 57 insertions, 0 deletions
diff --git a/devel/ocaml-xstrp4/Makefile b/devel/ocaml-xstrp4/Makefile new file mode 100644 index 000000000000..a4929d9a7e45 --- /dev/null +++ b/devel/ocaml-xstrp4/Makefile @@ -0,0 +1,49 @@ +# New ports collection makefile for: ocaml-xstrp4 +# Date created: 2006-08-01 +# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru> +# +# $MBSDlabs$ +# $FreeBSD$ +# + +PORTNAME= xstrp4 +PORTVERSION= 1.6 +CATEGORIES= devel +MASTER_SITES= http://www.ocaml-programming.de/packages/ +PKGNAMEPREFIX= ocaml- + +MAINTAINER= ssedov@mbsd.msk.ru +COMMENT= An OCaml extension to expands brace expansions + +USE_GMAKE= yes +USE_OCAML= yes +USE_OCAML_FINDLIB=yes + +EXAMPLESDIR= ${PREFIX}/share/examples/ocaml/${PORTNAME} + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/lang/ocaml/bsd.ocaml.mk" + +post-extract: +# For nonstandard prefixes +.if !exists(${OCAMLFIND_DESTDIR}) + ${MKDIR} ${OCAMLFIND_DESTDIR} +.endif +.if !exists(${OCAMLFIND_LDCONF}) + ${TOUCH} ${OCAMLFIND_LDCONF} +.endif + +post-install: + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/sample.* ${EXAMPLESDIR} + + @${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \ + ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} + @${FIND} ${EXAMPLESDIR} -type f | \ + ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} + + @${ECHO_CMD} "@dirrm share/examples/ocaml/${PORTNAME}" >> ${TMPPLIST} + @${ECHO_CMD} "@unexec rmdir %D/share/examples/ocaml 2>/dev/null ||true"\ + >> ${TMPPLIST} + +.include <bsd.port.post.mk> diff --git a/devel/ocaml-xstrp4/distinfo b/devel/ocaml-xstrp4/distinfo new file mode 100644 index 000000000000..d2934e8541a0 --- /dev/null +++ b/devel/ocaml-xstrp4/distinfo @@ -0,0 +1,3 @@ +MD5 (xstrp4-1.6.tar.gz) = 5322d8878f8c42e54c1a4fa27ee0a8c0 +SHA256 (xstrp4-1.6.tar.gz) = 09ffb1d0c309fec24207f677bcb44ad301da34d4a330d9ec8265953b03713f25 +SIZE (xstrp4-1.6.tar.gz) = 6460 diff --git a/devel/ocaml-xstrp4/pkg-descr b/devel/ocaml-xstrp4/pkg-descr new file mode 100644 index 000000000000..77dc0b31f6e3 --- /dev/null +++ b/devel/ocaml-xstrp4/pkg-descr @@ -0,0 +1,5 @@ +This is a camlp4 extension that expands brace expansions like a shell +does. See sample.ml for examples. + +Author: Gerd Stolpmann +WWW: http://www.ocaml-programming.de/packages/ |