Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A35E884F16 for ; Sat, 9 Sep 2023 10:23:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ilhPg8HeS1mZ for ; Sat, 9 Sep 2023 10:23:01 +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 F315184D4B for ; Sat, 9 Sep 2023 10:23:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ECA66FBDB; Sat, 9 Sep 2023 10:23:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1694254980263300" MIME-Version: 1.0 Date: Sat, 9 Sep 2023 10:23:00 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/filesystems/fuse To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230909102300.ECA66FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1694254980263300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Sat Sep 9 10:23:00 UTC 2023 Modified Files: pkgsrc/filesystems/fuse: Makefile Log Message: filesystems/fuse: needs gettext. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/filesystems/fuse/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1694254980263300 Content-Disposition: inline Content-Length: 1106 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/filesystems/fuse/Makefile diff -u pkgsrc/filesystems/fuse/Makefile:1.15 pkgsrc/filesystems/fuse/Makefile:1.16 --- pkgsrc/filesystems/fuse/Makefile:1.15 Fri Sep 8 06:01:04 2023 +++ pkgsrc/filesystems/fuse/Makefile Sat Sep 9 10:23:00 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2023/09/08 06:01:04 vins Exp $ +# $NetBSD: Makefile,v 1.16 2023/09/09 10:23:00 vins Exp $ # DISTNAME= fuse-2.9.9 @@ -22,10 +22,12 @@ ONLY_FOR_PLATFORM= Linux-*-* FreeBSD-*-* # implementation is not needed. This FUSE implementation can also be # used with the perfuse package on NetBSD. -USE_TOOLS+= gmake pkg-config +USE_TOOLS+= gmake pkg-config gettext USE_TOOLS+= autoconf automake autoreconf USE_LIBTOOL= yes +TOOL_DEPENDS+= gettext-m4-[0-9]*:../../devel/gettext-m4 + CONFIGURE_ARGS+= --with-libiconv-prefix=${BUILDLINK_PREFIX.iconv} CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/lib/pkgconfig @@ -71,4 +73,5 @@ post-install: .endif .include "../../converters/libiconv/buildlink3.mk" +.include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1694254980263300--