35 lines
713 B
Makefile
35 lines
713 B
Makefile
# $OpenBSD: Makefile,v 1.12 2015/03/16 18:07:44 naddy Exp $
|
|
|
|
COMMENT= wrapper class around the pcre library
|
|
|
|
DISTNAME= pcre++-0.9.5
|
|
PKGNAME= ${DISTNAME}
|
|
REVISION = 2
|
|
SHARED_LIBS= pcre++ 1.0
|
|
|
|
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
|
|
|
|
LIB_DEPENDS = devel/pcre
|
|
WANTLIB = pcre
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
USE_GMAKE= Yes
|
|
USE_GROFF = Yes
|
|
|
|
do-test:
|
|
@cd ${WRKBUILD}/test && ./test testinput
|
|
|
|
.include <bsd.port.mk>
|