blob: 9f2205100e4f1b1e1d656b233a27ca4d49351f6a (
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: reflex
# Date created: 10 January 2012
# Whom: bf@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= reflex
PORTVERSION= 20100906
CATEGORIES= textproc
MASTER_SITES= http://invisible-island.net/datafiles/release/ LOCAL/bf
DISTNAME= reflex
MAINTAINER= bf@FreeBSD.org
COMMENT= Relocalizable fast lexical scanner
LICENSE= BSD
GNU_CONFIGURE= yes
CONFIGURE_ENV= YACC="${YACC}"
MAN1= reflex.1
PLIST_FILES= bin/reflex bin/reflex++ include/reFlexLexer.h lib/librefl.a
WRKSRC = ${WRKDIR}/reflex-${PORTVERSION}
regression-test test: check
.for t in check bigcheck
${t}: build
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \
${MAKE_ARGS} ${t};
.endfor
.include <bsd.port.mk>
|