freebsd-ports/devel/regexx/Makefile
Mathieu Arnold 4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00

33 lines
696 B
Makefile

# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
# $FreeBSD$
PORTNAME= regexx
PORTVERSION= 0.98.1
PORTREVISION= 5
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Complete regular expressions C++ solution
LICENSE= LGPL21
LIB_DEPENDS= libpcre.so:devel/pcre
USES= gmake pkgconfig libtool
GNU_CONFIGURE= yes
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \
AUTOMAKE="${TRUE}"
USE_LDCONFIG= yes
CPPFLAGS+= $$(pkg-config --cflags libpcre)
LDFLAGS+= $$(pkg-config --libs libpcre)
post-patch:
@${REINPLACE_CMD} -e \
's|"pcre"||' ${WRKSRC}/configure
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libregexx.so
.include <bsd.port.mk>