1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/devel/pcre++/Makefile
Yen-Ming Lee bd5942a49e Update devel/pcre++ (maintainer): 0.9.2 -> 0.9.3
* A memory leak bug in pcrepp::~Pcre() was fixed
* operator[] was added, which makes it possible
  to access substrings using the index notation.

PR:		54447
Submitted by:	Kirill Ponomarew <ponomarew@oberon.net>
2003-07-14 01:39:20 +00:00

35 lines
709 B
Makefile

# ex:ts=8
# Ports collection makefile for: pcre++
# Date created: Jan 12, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= pcre++
PORTVERSION= 0.9.3
CATEGORIES= devel
MASTER_SITES= ftp://ftp.daemon.de/scip/Apps/pcre++/
MAINTAINER= ponomarew@oberon.net
COMMENT= A wrapper class around the pcre library
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre
PCRE_CONFIG?= ${LOCALBASE}/bin/pcre-config
USE_REINPLACE= yes
USE_GMAKE= yes
USE_LIBTOOL= yes
CONFIGURE_ENV= CPPFLAGS="`${PCRE_CONFIG} --cflags`" \
LDFLAGS="`${PCRE_CONFIG} --libs`"
INSTALLS_SHLIB= yes
MAN3= Pcre.3
PLIST_SUB= VERSION=${PORTVERSION}
post-patch:
@${REINPLACE_CMD} -e 's|-O -g|\@CXXFLAGS\@|g' ${WRKSRC}/Makefile.in
.include <bsd.port.mk>