diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2021-01-11 01:38:50 +0800 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2021-01-11 01:38:50 +0800 |
commit | de40e2902725b54be9c36681f99c02294a07c32c (patch) | |
tree | d73b6eb0eede54903a122af51dba9503783b69b6 /textproc | |
parent | 9a98d03e506aa825a6e52dc0c72a0c1248fc3600 (diff) | |
download | freebsd-ports-gnome-de40e2902725b54be9c36681f99c02294a07c32c.tar.gz freebsd-ports-gnome-de40e2902725b54be9c36681f99c02294a07c32c.tar.zst freebsd-ports-gnome-de40e2902725b54be9c36681f99c02294a07c32c.zip |
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
MFH: 2021Q1
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/chpp/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/chpp/Makefile b/textproc/chpp/Makefile index 02ea3fdd63c7..d686939bd3e0 100644 --- a/textproc/chpp/Makefile +++ b/textproc/chpp/Makefile @@ -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 |