Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Jun 2023 18:10:02 GMT
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 0a27454da6bc - main - graphics/plotutils: Fix build with llvm16
Message-ID:  <202306251810.35PIA2N4094262@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0a27454da6bc1aa6c723bdf2fcd56845defef3d0

commit 0a27454da6bc1aa6c723bdf2fcd56845defef3d0
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-06-25 12:12:47 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-06-25 18:09:48 +0000

    graphics/plotutils: Fix build with llvm16
    
    - Utilize USES=localbase
    - Pet portclippy
    
    Approved by:    portmgr (blanket)
    Sponsored by:   The FreeBSD Foundation
---
 graphics/plotutils/Makefile | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/graphics/plotutils/Makefile b/graphics/plotutils/Makefile
index 8d36e0d7bdb6..b9883a7df9d1 100644
--- a/graphics/plotutils/Makefile
+++ b/graphics/plotutils/Makefile
@@ -13,16 +13,21 @@ LICENSE=	GPLv3
 
 LIB_DEPENDS=	libpng.so:graphics/png
 
-USES=		gmake libtool xorg	# parallel builds are broken with bmake(1)
-GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--enable-libplotter --enable-libxmi
+USES=		gmake libtool localbase:ldflags xorg	# parallel builds are broken with bmake(1)
 USE_LDCONFIG=	yes
 USE_XORG=	ice sm x11 xaw xext xmu xt
-TEST_TARGET=	check
 
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--enable-libplotter --enable-libxmi
+
+TEST_TARGET=	check
 
 INFO=		libxmi plotutils
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400091
+CPPFLAGS+=  -Dregister=
+.endif
+
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306251810.35PIA2N4094262>