Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0FD9584DC1 for ; Sun, 27 Aug 2023 14:52:48 +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 VwSOKXHFjVu9 for ; Sun, 27 Aug 2023 14:52:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8457D84D39 for ; Sun, 27 Aug 2023 14:52:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7CF89FBDB; Sun, 27 Aug 2023 14:52:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169314796723750" MIME-Version: 1.0 Date: Sun, 27 Aug 2023 14:52:47 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/devel/gtexinfo To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20230827145247.7CF89FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169314796723750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Sun Aug 27 14:52:47 UTC 2023 Modified Files: pkgsrc/devel/gtexinfo: Makefile PLIST Log Message: devel/gtexinfo: Fix a PLIST issue When iconv(3) is available, it builds and installs lib/texinfo/Parsetexi.la. Add iconv as an explicit dependency so that the library is always built regardless of platform. To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122 pkgsrc/devel/gtexinfo/Makefile cvs rdiff -u -r1.26 -r1.27 pkgsrc/devel/gtexinfo/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169314796723750 Content-Disposition: inline Content-Length: 1399 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/gtexinfo/Makefile diff -u pkgsrc/devel/gtexinfo/Makefile:1.121 pkgsrc/devel/gtexinfo/Makefile:1.122 --- pkgsrc/devel/gtexinfo/Makefile:1.121 Thu Jul 6 09:38:33 2023 +++ pkgsrc/devel/gtexinfo/Makefile Sun Aug 27 14:52:47 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.121 2023/07/06 09:38:33 wiz Exp $ +# $NetBSD: Makefile,v 1.122 2023/08/27 14:52:47 pho Exp $ DISTNAME= texinfo-7.0.3 PKGNAME= g${DISTNAME} @@ -46,6 +46,7 @@ REPLACE_SH+= util/texi2dvi .include "../../mk/bsd.prefs.mk" .include "options.mk" +.include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../lang/perl5/buildlink3.mk" # for EXTERN.h in XSParagraph .include "../../mk/termcap.buildlink3.mk" Index: pkgsrc/devel/gtexinfo/PLIST diff -u pkgsrc/devel/gtexinfo/PLIST:1.26 pkgsrc/devel/gtexinfo/PLIST:1.27 --- pkgsrc/devel/gtexinfo/PLIST:1.26 Sat Aug 26 16:31:28 2023 +++ pkgsrc/devel/gtexinfo/PLIST Sun Aug 27 14:52:47 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.26 2023/08/26 16:31:28 bsiegert Exp $ +@comment $NetBSD: PLIST,v 1.27 2023/08/27 14:52:47 pho Exp $ bin/info bin/install-info bin/makeinfo @@ -13,6 +13,7 @@ info/texi2any_api.info info/texi2any_internals.info info/texinfo.info lib/texinfo/MiscXS.la +lib/texinfo/Parsetexi.la lib/texinfo/XSParagraph.la man/man1/info.1 man/man1/install-info.1 --_----------=_169314796723750--