blob: 51eaa8b00f9720921485d32e676ae5bc7c4c2b4d (
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
|
# Created by: Henrik Motakef <henrik.motakef@web.de>
# $FreeBSD$
PORTNAME= pcre
PORTVERSION= 7.0.2
CATEGORIES= devel
MASTER_SITES= http://cdn.bitbucket.org/mmottl/pcre-ocaml/downloads/
PKGNAMEPREFIX= ocaml-
DISTNAME= ${PORTNAME}-${PKGNAMEPREFIX}${PORTVERSION}
MAINTAINER= johans@FreeBSD.org
COMMENT= Perl compatible regular expressions for Objective Caml
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
USE_OCAML= yes
USE_OCAML_FINDLIB= yes
USE_OCAML_LDCONFIG= yes
PORTEXAMPLES= *
EXAMPLESDIR= ${OCAML_EXAMPLESDIR}/${PORTNAME}
PORTDOCS= *
DOCSDIR= ${PREFIX}/share/doc/pcre-ocaml
NO_STAGE= yes
post-install:
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}/)
.endif
.include <bsd.port.mk>
|