Index: head/textproc/chpp/Makefile =================================================================== --- head/textproc/chpp/Makefile (revision 561090) +++ head/textproc/chpp/Makefile (revision 561091) @@ -1,58 +1,59 @@ # Created by: Andrey Zakhvatov # $FreeBSD$ PORTNAME= chpp PORTVERSION= 0.3.5 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= textproc MASTER_SITES= http://www.complang.tuwien.ac.at/schani/chpp/files/ \ http://freebsd.nsu.ru/distfiles/ MAINTAINER= ports@FreeBSD.org COMMENT= Non-intrusive full-featured text preprocessor LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libgc.so:devel/boehm-gc +LIB_DEPENDS= libgc.so:devel/boehm-gc \ + libgnuregex.so.6:devel/libgnuregex USES= autoreconf gmake makeinfo GNU_CONFIGURE= yes CONFIGURE_ARGS= --libdir=${PREFIX}/share CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib INFO= chpp OPTIONS_DEFINE= DOCS EXAMPLES .include post-extract: .for i in getopt.h regex.h gc/gc.h @cd ${WRKSRC} && ${MV} -f ${i} ${i}.dist .endfor post-patch: @${REINPLACE_CMD} -e \ 's| getopt.c getopt.h getopt1.c | | ; \ s| regex.c regex.h | | ; \ /LDADD/s| gc/gc.a | -lgc -lgnuregex | ; \ s|^YFLAGS|AM_YFLAGS|' ${WRKSRC}/Makefile.am .for i in arrayops.c builtins.c stringops.c @${REINPLACE_CMD} -e \ 's|"../regex.h"||' ${WRKSRC}/builtins/${i} .endfor post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for filename in AUTHORS NEWS README ${INSTALL_DATA} ${WRKSRC}/${filename} ${STAGEDIR}${DOCSDIR} .endfor post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/test && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include