Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7D08285086 for ; Tue, 28 Nov 2023 20:21:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 8Vc0fphQUaaj for ; Tue, 28 Nov 2023 20:21:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CAA9185084 for ; Tue, 28 Nov 2023 20:21:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BDFB8FA40; Tue, 28 Nov 2023 20:21:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1701202891118990" MIME-Version: 1.0 Date: Tue, 28 Nov 2023 20:21:31 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/vncviewer To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20231128202131.BDFB8FA40@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1701202891118990 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Nov 28 20:21:31 UTC 2023 Modified Files: pkgsrc/net/vncviewer: Makefile Log Message: vncviewer: Remove unused libXt. Fix SunOS build. libXt is no longer a build-only dependency and this fixed indirect depends checks. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/net/vncviewer/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1701202891118990 Content-Disposition: inline Content-Length: 1117 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/vncviewer/Makefile diff -u pkgsrc/net/vncviewer/Makefile:1.35 pkgsrc/net/vncviewer/Makefile:1.36 --- pkgsrc/net/vncviewer/Makefile:1.35 Tue May 7 11:51:43 2019 +++ pkgsrc/net/vncviewer/Makefile Tue Nov 28 20:21:31 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2019/05/07 11:51:43 leot Exp $ +# $NetBSD: Makefile,v 1.36 2023/11/28 20:21:31 jperkin Exp $ DISTNAME= vnc-4_1_3-unixsrc PKGNAME= vncviewer-4.1.3 @@ -18,6 +18,8 @@ USE_LANGUAGES= c c++ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-installed-zlib +LDFLAGS.SunOS+= -lsocket -lnsl + INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 do-install: @@ -28,12 +30,9 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/vncpasswd/vncpasswd.man \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/vncpasswd.1 -BUILDLINK_DEPMETHOD.libXt?= build - .include "../../devel/zlib/buildlink3.mk" .include "../../x11/xorgproto/buildlink3.mk" .include "../../x11/libX11/buildlink3.mk" .include "../../x11/libXext/buildlink3.mk" -.include "../../x11/libXt/buildlink3.mk" .include "../../x11/libXtst/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1701202891118990--