git: 5132ca7fda7e - main - textproc/libparsifal: Fix build on llvm15
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 03 Jun 2023 15:39:02 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=5132ca7fda7efac8db6e973bce2b823ee1fd3efa commit 5132ca7fda7efac8db6e973bce2b823ee1fd3efa Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2023-06-03 14:37:48 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2023-06-03 15:38:51 +0000 textproc/libparsifal: Fix build on llvm15 - Pet portclippy - Adopt port --- textproc/libparsifal/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/textproc/libparsifal/Makefile b/textproc/libparsifal/Makefile index 571419f8787e..a6eb99a9ba4e 100644 --- a/textproc/libparsifal/Makefile +++ b/textproc/libparsifal/Makefile @@ -4,7 +4,7 @@ PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://www.saunalahti.fi/~samiuus/toni/xmlproc/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bofh@FreeBSD.org COMMENT= Lightweight XML Parser WWW= http://www.saunalahti.fi/~samiuus/toni/xmlproc/ @@ -14,18 +14,26 @@ LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept USES= iconv libtool -GNU_CONFIGURE= yes USE_LDCONFIG= yes + +GNU_CONFIGURE= yes + INSTALL_TARGET= install-strip PLIST_SUB= VERSION=${PORTVERSION} OPTIONS_DEFINE= DOCS +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 )) +CFLAGS+= -Wno-error=int-conversion +.endif + post-patch: @${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|g' ${WRKSRC}/configure post-install-DOCS-on: @(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) -.include <bsd.port.mk> +.include <bsd.port.post.mk>