- Add ocaml-typeconv, a mini library required for some

other preprocessing libraries.

WWW:	http://www.janestcapital.com/ocaml/index.html
This commit is contained in:
Stanislav Sedov 2008-04-08 12:15:02 +00:00
parent 9182e7cc90
commit f18b24f425
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=210844
4 changed files with 46 additions and 0 deletions

View file

@ -847,6 +847,7 @@
SUBDIR += ocaml-sdl SUBDIR += ocaml-sdl
SUBDIR += ocaml-sem SUBDIR += ocaml-sem
SUBDIR += ocaml-sexplib SUBDIR += ocaml-sexplib
SUBDIR += ocaml-typeconv
SUBDIR += ocaml-ulex SUBDIR += ocaml-ulex
SUBDIR += ocaml-xstr SUBDIR += ocaml-xstr
SUBDIR += ocaml-xstrp4 SUBDIR += ocaml-xstrp4

View file

@ -0,0 +1,35 @@
# New ports collection makefile for: ocaml-type-conv
# Date created: 2008-04-08
# Whom: Stanislav Sedov <stas@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= type-conv
PORTVERSION= 1.0.0
CATEGORIES= devel
MASTER_SITES= http://janestcapital.com/ocaml/
PKGNAMEPREFIX= ocaml-
MAINTAINER= stas@FreeBSD.org
COMMENT= Type conversion routines for OCaml
USE_GMAKE= yes
USE_OCAML= yes
USE_OCAML_FINDLIB=yes
SA_DIR= ${LOCALBASE}/${OCAML_SITELIBDIR}
.include <bsd.port.pre.mk>
post-extract:
# For nonstandard prefixes
.if !exists(${OCAMLFIND_DESTDIR})
${MKDIR} ${OCAMLFIND_DESTDIR}
.endif
post-install:
@${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type f | \
${SED} "s,^${PREFIX}/,," >> ${TMPPLIST}
.include <bsd.port.post.mk>

View file

@ -0,0 +1,3 @@
MD5 (type-conv-1.0.0.tar.gz) = 703e7f74d9c01d5e49274011e846bba8
SHA256 (type-conv-1.0.0.tar.gz) = 3435f00c1c56c9a4ba7a4281fd9f7eec5ee2cda75806498a11974a379e3f1870
SIZE (type-conv-1.0.0.tar.gz) = 22456

View file

@ -0,0 +1,7 @@
The type-conv mini library factors out functionality needed by different
preprocessors that generate code from type specifications, because this
functionality cannot be duplicated without losing the ability to use
these preprocessors simultaneously.
Author: Markus Mottl <markus.mottl@gmail.com>
WWW: http://www.janestcapital.com/ocaml/index.html