summaryrefslogtreecommitdiffstats
path: root/devel/pcre/Makefile
blob: f4971547bc9cb6bc5f50290330e49d91b1a29619 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# Created by: dom
# $FreeBSD$

PORTNAME=	pcre
PORTVERSION=	8.33
CATEGORIES=	devel
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \
		ftp://ftp.csx.cam.ac.uk/pub/software/programming/%SUBDIR%/ \
		ftp://ftp.fu-berlin.de/unix/misc/%SUBDIR%/ \
		ftp://ftp.tin.org/pub/libs/%SUBDIR%/
MASTER_SITE_SUBDIR=${PORTNAME}

MAINTAINER=	bf@FreeBSD.org
COMMENT=	Perl Compatible Regular Expressions library

LICENSE=	BSD
LICENSE_FILE=	${WRKSRC}/LICENCE

USE_BZIP2=	yes
GNU_CONFIGURE=	yes
USE_LDCONFIG=	yes
USES=	pathfix
CONFIGURE_ARGS=	--enable-utf --enable-unicode-properties \
		--enable-pcre8 --enable-pcre16 --enable-pcre32

OPTIONS_DEFINE=		STACK_RECURSION
OPTIONS_DEFAULT=	STACK_RECURSION

STACK_RECURSION_DESC=	Use the stack for recursion during matching

.include <bsd.port.options.mk>

.if ${ARCH} != "sparc64" && ${ARCH} != "ia64"
CONFIGURE_ARGS+=	--enable-jit
.else
CONFIGURE_ARGS+=	--disable-jit
.endif

.if ${PORT_OPTIONS:MDOCS}
PORTDOCS=	*
.endif

# Using the heap rather than the stack for recursion is slower but less
# prone to segfaults from stack exhaustion when matching certain patterns
.if !${PORT_OPTIONS:MSTACK_RECURSION}
CONFIGURE_ARGS+=	--disable-stack-for-recursion
.endif

# For FreeBSD 8.3 and above link pcretest against libedit
.if ${OSVERSION} >= 803000
CONFIGURE_ARGS+=	--enable-pcretest-libedit
.endif

.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+=	-fPIC
.endif

# Optional knobs that accept positive integer parameters (see pcrebuild(3)):

# Allow the use of very large patterns (> 64K) with the 8- and 16-bit
# libraries, at the expense of longer load times (possible values:
# 2 (default), 3, and 4):
.if defined(WITH_LINK_SIZE)
CONFIGURE_ARGS+=	--with-link-size=${WITH_LINK_SIZE}
.endif

# Control PCRE resource use by limiting the default number of times pcre_exec()
# can call match() during a single operation (default: 10 million):
.if defined(WITH_MATCH_LIMIT)
CONFIGURE_ARGS+=	--with-match-limit=${WITH_MATCH_LIMIT}
.endif

# Control PCRE resource use by limiting the default number of times pcre_exec()
# can call match() recursively during a single operation (default: 10 million):
.if defined(WITH_MATCH_LIMIT_RECURSION)
CONFIGURE_ARGS+=	--with-match-limit-recursion=${WITH_MATCH_LIMIT_RECURSION}
.endif

# Adjust the default maximum number of substrings that will be stored on the stack
# when the 8-bit library is called via the POSIX interface (default: 10):
.if defined(WITH_POSIX_MALLOC_THRESHOLD)
CONFIGURE_ARGS+=	--with-posix-malloc-threshold=${WITH_POSIX_MALLOC_THRESHOLD}
.endif

MAN1=		pcre-config.1 \
		pcregrep.1 \
		pcretest.1
MAN3=		pcre.3 \
		pcre16.3 \
		pcre32.3 \
		pcre_assign_jit_stack.3 \
		pcre_compile.3 \
		pcre_compile2.3 \
		pcre_config.3 \
		pcre_copy_named_substring.3 \
		pcre_copy_substring.3 \
		pcre_dfa_exec.3 \
		pcre_exec.3 \
		pcre_free_study.3 \
		pcre_free_substring.3 \
		pcre_free_substring_list.3 \
		pcre_fullinfo.3 \
		pcre_get_named_substring.3 \
		pcre_get_stringnumber.3 \
		pcre_get_stringtable_entries.3 \
		pcre_get_substring.3 \
		pcre_get_substring_list.3 \
		pcre_jit_exec.3 \
		pcre_jit_stack_alloc.3 \
		pcre_jit_stack_free.3 \
		pcre_maketables.3 \
		pcre_pattern_to_host_byte_order.3 \
		pcre_refcount.3 \
		pcre_study.3 \
		pcre_version.3 \
		pcreapi.3 \
		pcrebuild.3 \
		pcrecallout.3 \
		pcrecompat.3 \
		pcrecpp.3 \
		pcredemo.3 \
		pcrejit.3 \
		pcrelimits.3 \
		pcrematching.3 \
		pcrepartial.3 \
		pcrepattern.3 \
		pcreperform.3 \
		pcreposix.3 \
		pcreprecompile.3 \
		pcresample.3 \
		pcrestack.3 \
		pcresyntax.3 \
		pcre_utf16_to_host_byte_order.3 \
		pcre_utf32_to_host_byte_order.3 \
		pcreunicode.3

MLINKS+=	pcre_assign_jit_stack.3 pcre16_assign_jit_stack.3 \
		pcre_assign_jit_stack.3 pcre32_assign_jit_stack.3 \
		pcre_compile.3 pcre16_compile.3 \
		pcre_compile.3 pcre32_compile.3 \
		pcre_compile2.3 pcre16_compile2.3 \
		pcre_compile2.3 pcre32_compile2.3 \
		pcre_config.3 pcre16_config.3 \
		pcre_config.3 pcre32_config.3 \
		pcre_copy_named_substring.3 pcre16_copy_named_substring.3 \
		pcre_copy_named_substring.3 pcre32_copy_named_substring.3 \
		pcre_copy_substring.3 pcre16_copy_substring.3 \
		pcre_copy_substring.3 pcre32_copy_substring.3 \
		pcre_dfa_exec.3 pcre16_dfa_exec.3 \
		pcre_dfa_exec.3 pcre32_dfa_exec.3 \
		pcre_exec.3 pcre16_exec.3 \
		pcre_exec.3 pcre32_exec.3 \
		pcre_free_study.3 pcre16_free_study.3 \
		pcre_free_study.3 pcre32_free_study.3 \
		pcre_free_substring.3 pcre16_free_substring.3 \
		pcre_free_substring.3 pcre32_free_substring.3 \
		pcre_free_substring_list.3 pcre16_free_substring_list.3 \
		pcre_free_substring_list.3 pcre32_free_substring_list.3 \
		pcre_fullinfo.3 pcre16_fullinfo.3 \
		pcre_fullinfo.3 pcre32_fullinfo.3 \
		pcre_get_named_substring.3 pcre16_get_named_substring.3 \
		pcre_get_named_substring.3 pcre32_get_named_substring.3 \
		pcre_get_stringnumber.3 pcre16_get_stringnumber.3 \
		pcre_get_stringnumber.3 pcre32_get_stringnumber.3 \
		pcre_get_stringtable_entries.3 pcre16_get_stringtable_entries.3 \
		pcre_get_stringtable_entries.3 pcre32_get_stringtable_entries.3 \
		pcre_get_substring.3 pcre16_get_substring.3 \
		pcre_get_substring.3 pcre32_get_substring.3 \
		pcre_get_substring_list.3 pcre16_get_substring_list.3 \
		pcre_get_substring_list.3 pcre32_get_substring_list.3 \
		pcre_jit_exec.3 pcre16_jit_exec.3 \
		pcre_jit_exec.3 pcre32_jit_exec.3 \
		pcre_jit_stack_alloc.3 pcre16_jit_stack_alloc.3 \
		pcre_jit_stack_alloc.3 pcre32_jit_stack_alloc.3 \
		pcre_jit_stack_free.3 pcre16_jit_stack_free.3 \
		pcre_jit_stack_free.3 pcre32_jit_stack_free.3 \
		pcre_maketables.3 pcre16_maketables.3 \
		pcre_maketables.3 pcre32_maketables.3 \
		pcre_pattern_to_host_byte_order.3 pcre16_pattern_to_host_byte_order.3 \
		pcre_pattern_to_host_byte_order.3 pcre32_pattern_to_host_byte_order.3 \
		pcre_refcount.3 pcre16_refcount.3 \
		pcre_refcount.3 pcre32_refcount.3 \
		pcre_study.3 pcre16_study.3 \
		pcre_study.3 pcre32_study.3 \
		pcre_utf16_to_host_byte_order.3 pcre16_utf16_to_host_byte_order.3 \
		pcre_utf16_to_host_byte_order.3 pcre32_utf16_to_host_byte_order.3 \
		pcre_utf32_to_host_byte_order.3 pcre32_utf32_to_host_byte_order.3 \
		pcre_version.3 pcre16_version.3 \
		pcre_version.3 pcre32_version.3

post-patch:
.if !${PORT_OPTIONS:MDOCS}
	@${REINPLACE_CMD} -E -e '/^install-data-am/,/^$$/ s,install-(dist_doc|dist_html|html)DATA,,g' \
		${WRKSRC}/Makefile.in
.endif
	@${REINPLACE_CMD} -e 's/\(pkgconfigdir = \).*/\1$$\(DESTDIR\)$$\(prefix\)\/libdata\/pkgconfig/' \
		${WRKSRC}/Makefile.in
# work around for a autoconf assumption, to fix c++ linking with clang
	@${REINPLACE_CMD} -e 's|GREP "\\-L"|GREP "conftest\\.$$objext"|g' ${WRKSRC}/configure

post-install:
	@${STRIP_CMD} ${PREFIX}/bin/pcregrep ${PREFIX}/bin/pcretest

#prevent regression test coredumps from causing failures on the
#package-building cluster:
.ifndef(MAINTAINER_MODE)
CORELIMIT?=	/usr/bin/limits -Sc 0
.endif
TESTLOGS?=	RunGrepTest RunTest pcre_jit_test pcre_scanner_unittest \
		pcre_stringpiece_unittest pcrecpp_unittest

check regression-test test: build
	@cd ${WRKSRC} ; \
	${SETENV} ${MAKE_ENV} ${CORELIMIT} ${MAKE} ${MAKE_ARGS} check ; \
	for _l in ${TESTLOGS} ; do if ${TEST} -f $${_l}.log ; then \
	${PRINTF} "\n\n$${_l}.log\n\n\n" ; ${CAT} $${_l}.log ; fi ; done

.include <bsd.port.mk>
OpenPOWER on IntegriCloud