eb743a3992
Release 8.31 06-July-2012 ------------------------- This is mainly a bug-fixing release, with a small number of developments: . The JIT compiler now supports partial matching and the (*MARK) and (*COMMIT) verbs. . PCRE_INFO_MAXLOOKBEHIND can be used to find the longest lookbehing in a pattern. . There should be a performance improvement when using the heap instead of the stack for recursion. . pcregrep can now be linked with libedit as an alternative to libreadline. . pcregrep now has a --file-list option where the list of files to scan is given as a file. . pcregrep now recognizes binary files and there are related options. . The Unicode tables have been updated to 6.1.0.
35 lines
990 B
Makefile
35 lines
990 B
Makefile
# $NetBSD: Makefile,v 1.66 2012/07/07 08:00:07 wiz Exp $
|
|
|
|
DISTNAME= pcre-8.31
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ \
|
|
${MASTER_SITE_SOURCEFORGE:=pcre/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.pcre.org/
|
|
COMMENT= Perl Compatible Regular Expressions library
|
|
LICENSE= modified-bsd
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-utf8 --enable-unicode-properties
|
|
CONFIGURE_ARGS+= --enable-pcre16
|
|
|
|
SUBST_CLASSES+= rpath
|
|
SUBST_STAGE.rpath= pre-configure
|
|
SUBST_MESSAGE.rpath= Fixing rpath output in pcre-config
|
|
SUBST_FILES.rpath= pcre-config.in
|
|
SUBST_VARS.rpath= COMPILER_RPATH_FLAG
|
|
|
|
PKGCONFIG_OVERRIDE= libpcre.pc.in libpcrecpp.pc.in libpcreposix.pc.in
|
|
PKGCONFIG_OVERRIDE+= libpcre16.pc.in
|
|
|
|
# needs a stacksize of 5.5mb, default is 2mb
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|