cfb3185a87
PR: ports/102382 Submitted by: Stanislav Sedov <ssedov(at)mbsd.msk.ru>, (maintainer) Approved by: krion (mentor)
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: camomile
|
|
# Date created: Mar 17, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= camomile
|
|
PORTVERSION= 0.7.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMEPREFIX= ocaml-
|
|
|
|
MAINTAINER= ssedov@mbsd.msk.ru
|
|
COMMENT= A comprehensive Unicode library for objective caml language
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_OCAML= yes
|
|
USE_OCAML_FINDLIB=yes
|
|
USE_OCAML_LDCONFIG=yes
|
|
USE_OCAML_WASH= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/ocaml/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/camomilecharmap \
|
|
bin/camomilelocaledef
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/lang/ocaml/bsd.ocaml.mk"
|
|
|
|
.if ${OSVERSION} < 500000
|
|
BROKEN= Need working <wctype.h>
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e \
|
|
"s,([[:space:]]*)cp[[:space:]]*-f,\1\$${BSD_INSTALL_DATA}," \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${FIND} ${DATADIR} ! -type d | \
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} ${DATADIR} -type d | ${SORT} -r | \
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
@${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} ! -type d | \
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} ${OCAMLFIND_DESTDIR}/${PORTNAME} -type d | ${SORT} -r | \
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.post.mk>
|