blob: d850985d7c286d8629267a0911d55b8dbf8f9b93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: ocaml-pcre
# Date created: 21 April 2002
# Whom: Henrik Motakef <henrik.motakef@web.de>
#
# $FreeBSD$
#
PORTNAME= pcre
PORTVERSION= 6.0.1
CATEGORIES= devel
MASTER_SITES= http://www.ocaml.info/ocaml_sources/
PKGNAMEPREFIX= ocaml-
DISTNAME= pcre-ocaml-${PORTVERSION}
MAINTAINER= johans@stack.nl
COMMENT= Perl compatible regular expressions for Objective Caml
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre
USE_OCAML= yes
USE_OCAML_FINDLIB= yes
USE_OCAML_LDCONFIG= yes
CFLAGS+= -I${LOCALBASE}/include
MAKE_ENV+= LIBDIRS="${LOCALBASE}/lib"
USE_GMAKE= yes
EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME}
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLESDIR}
@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}/)
.endif
.include <bsd.port.mk>
|