From 5132ca7fda7efac8db6e973bce2b823ee1fd3efa Mon Sep 17 00:00:00 2001 From: Muhammad Moinur Rahman Date: Sat, 3 Jun 2023 16:37:48 +0200 Subject: [PATCH] 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 + +.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 +.include