svn commit: r561098 - branches/2021Q1/textproc/chpp

Kyle Evans kevans at FreeBSD.org
Sun Jan 10 17:58:04 UTC 2021


Author: kevans
Date: Sun Jan 10 17:58:03 2021
New Revision: 561098
URL: https://svnweb.freebsd.org/changeset/ports/561098

Log:
  MFH: r561091
  
  textproc/chpp: fix the build against -CURRENT
  
  libgnuregex has been removed in FreeBSD 13.0. The version in base had a
  number of known or likely bugs associated with it, so just use the newer
  and more stable port on all supported FreeBSD versions.
  
  PR:		252256

Modified:
  branches/2021Q1/textproc/chpp/Makefile
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/textproc/chpp/Makefile
==============================================================================
--- branches/2021Q1/textproc/chpp/Makefile	Sun Jan 10 17:57:33 2021	(r561097)
+++ branches/2021Q1/textproc/chpp/Makefile	Sun Jan 10 17:58:03 2021	(r561098)
@@ -3,7 +3,7 @@
 
 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/
@@ -14,7 +14,8 @@ 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


More information about the svn-ports-branches mailing list