c16b4beb0a
PCRE++ is a C++ wrapper-class for the PCRE library (Perl Compatible Regular Expressions). From Tomasz Bak <openbsdpl@wp.pl> ok sturm@
32 lines
710 B
Makefile
32 lines
710 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/05 14:16:40 alek Exp $
|
|
|
|
COMMENT= "wrapper class around the pcre library"
|
|
|
|
DISTNAME= pcre++-0.9.5
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://www.daemon.de/PCRE
|
|
|
|
MASTER_SITES= ftp://ftp.daemon.de/scip/Apps/pcre++/
|
|
|
|
MAINTAINER= Tomasz Bak <openbsdpl@wp.pl>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
LIB_DEPENDS= pcre.0::devel/pcre
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
do-regress:
|
|
@cd ${WRKBUILD}/test && ./test testinput
|
|
|
|
.include <bsd.port.mk>
|