1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/devel/re2/Makefile
Baptiste Daroussin 238065597e RE2 is a fast, safe, thread-friendly alternative to backtracking regular
expression engines like those used in PCRE, Perl, and Python.
It is a C++ library.
RE2 uses automata theory  to guarantee that regular expression searches run in
time linear in the size of the input. RE2 implements memory limits, so that
searches can be constrained to a fixed amount of memory. RE2 is engineered to
use a small fixed C++ stack footprint no matter what inputs or regular
expressions it must process; thus RE2 is useful in multithreaded environments
where thread stacks cannot grow arbitrarily large.

WWW:	http://code.google.com/p/re2/

PR:		ports/150185
Submitted by:	Julien Laffaye <kimelto at gmail.com>
2010-09-01 21:39:33 +00:00

24 lines
412 B
Makefile

# New ports collection makefile for: re2
# Date created: 2010-09-01
# Whom: Julien Laffaye <kimelto@gmail.com>
#
# $FreeBSD$
#
PORTNAME= re2
PORTVERSION= 20100901
CATEGORIES= devel
MASTER_SITES= http://laffaye.free.fr/distfiles/
MAINTAINER= kimelto@gmail.com
COMMENT= A fast C++ regex library
LICENSE= BSD
USE_LDCONFIG= yes
USE_GMAKE= yes
MAKE_ENV= prefix=${PREFIX}
MAKE_ARGS+= -e
.include <bsd.port.mk>