mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
f0a1969d34
is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence)
41 lines
840 B
Makefile
41 lines
840 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: pcre++
|
|
# Date created: Jan 12, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pcre++
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.daemon.de/scip/Apps/pcre++/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
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
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-I/usr/local/include||g ; \
|
|
s|-L/usr/local/lib||g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|-O -g|\@CXXFLAGS\@|g' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/*.* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|