git: 97e347a3a6aa - main - dns/libpsl: Don't rebuild man pages
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 05 Apr 2022 16:49:32 UTC
The branch main has been updated by diizzy: URL: https://cgit.FreeBSD.org/ports/commit/?id=97e347a3a6aa4792eacaa10e6fbf41d8b8c73526 commit 97e347a3a6aa4792eacaa10e6fbf41d8b8c73526 Author: Daniel Engberg <diizzy@FreeBSD.org> AuthorDate: 2022-04-05 16:44:47 +0000 Commit: Daniel Engberg <diizzy@FreeBSD.org> CommitDate: 2022-04-05 16:49:05 +0000 dns/libpsl: Don't rebuild man pages Upstream confusingly refers to (re)generation of man pages as "--enable-man" in configure script. Pages are already pre-built so no need to rebuild PR: 262954 Reported by: gja822@narod.ru Approved by: portmgr (blanket) --- dns/libpsl/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dns/libpsl/Makefile b/dns/libpsl/Makefile index 7f478dfe9e6f..0b3cded1b0a4 100644 --- a/dns/libpsl/Makefile +++ b/dns/libpsl/Makefile @@ -12,12 +12,11 @@ COMMENT= C library to handle the Public Suffix List LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= public_suffix_list>=0:dns/public_suffix_list \ - xsltproc:textproc/libxslt +BUILD_DEPENDS= public_suffix_list>=0:dns/public_suffix_list USES= libtool localbase:ldflags pathfix pkgconfig python:build shebangfix tar:lz -CONFIGURE_ARGS= --enable-man \ +CONFIGURE_ARGS= --disable-man \ --with-psl-file=${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat \ --with-psl-testfile=${LOCALBASE}/share/public_suffix_list/test_psl.txt GNU_CONFIGURE= yes