1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Add reflex 20100906, relocalizable fast lexical scanner.

This commit is contained in:
Brendan Fabeny 2012-01-10 21:02:40 +00:00
parent 09a7d5e804
commit 93ac30ca4a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288918
4 changed files with 45 additions and 0 deletions

View File

@ -1171,6 +1171,7 @@
SUBDIR += redland-bindings-python
SUBDIR += refdb
SUBDIR += referrercop
SUBDIR += reflex
SUBDIR += replaceit
SUBDIR += resume
SUBDIR += resume-extensions

35
textproc/reflex/Makefile Normal file
View File

@ -0,0 +1,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>

2
textproc/reflex/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (reflex.tar.gz) = 111daaf27268943b37ffe5fd4197c918d0f7854e4506957672a8da1f70360459
SIZE (reflex.tar.gz) = 447507

View File

@ -0,0 +1,7 @@
This is a variant of the Flex fast lexical scanner. Flex was written
in the early 1990s by Verne Paxson. This version has been modified
by Thomas Dickey, so that it conforms to ANSI C. It includes other
improvements, but remains compatible with Paxson's 2.5.4 release
(as well as POSIX lex). See the NEWS file for details.
WWW: http://invisible-island.net/reflex/reflex.html