Received: by mail.netbsd.org (Postfix, from userid 605) id 8364E84D8A; Thu, 20 Oct 2022 12:38:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B639084D58 for ; Thu, 20 Oct 2022 12:38:57 +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 I0i9EY1v5Cgi for ; Thu, 20 Oct 2022 12:38:57 +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 0C65E84CDC for ; Thu, 20 Oct 2022 12:38:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 00378FA90; Thu, 20 Oct 2022 12:38:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1666269536247980" MIME-Version: 1.0 Date: Thu, 20 Oct 2022 12:38:56 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/x11/gtk4 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221020123857.00378FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1666269536247980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Oct 20 12:38:56 UTC 2022 Modified Files: pkgsrc/x11/gtk4: Makefile buildlink3.mk Log Message: gtk4: add gettext to USE_TOOLS To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/x11/gtk4/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/x11/gtk4/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1666269536247980 Content-Disposition: inline Content-Length: 1389 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gtk4/Makefile diff -u pkgsrc/x11/gtk4/Makefile:1.18 pkgsrc/x11/gtk4/Makefile:1.19 --- pkgsrc/x11/gtk4/Makefile:1.18 Wed Oct 19 18:00:02 2022 +++ pkgsrc/x11/gtk4/Makefile Thu Oct 20 12:38:56 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2022/10/19 18:00:02 nros Exp $ +# $NetBSD: Makefile,v 1.19 2022/10/20 12:38:56 adam Exp $ DISTNAME= gtk-4.8.1 PKGNAME= ${DISTNAME:S/gtk/gtk4/} @@ -21,8 +21,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 .include "options.mk" -USE_TOOLS+= pkg-config gdbus-codegen -USE_LANGUAGES= c c++ +USE_TOOLS+= gdbus-codegen msgfmt msgmerge pkg-config xgettext +USE_LANGUAGES= c c++ MESON_ARGS+= -Dgtk_doc=false # needs gstreamer-gl Index: pkgsrc/x11/gtk4/buildlink3.mk diff -u pkgsrc/x11/gtk4/buildlink3.mk:1.4 pkgsrc/x11/gtk4/buildlink3.mk:1.5 --- pkgsrc/x11/gtk4/buildlink3.mk:1.4 Fri Aug 26 22:32:33 2022 +++ pkgsrc/x11/gtk4/buildlink3.mk Thu Oct 20 12:38:56 2022 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.4 2022/08/26 22:32:33 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.5 2022/10/20 12:38:56 adam Exp $ BUILDLINK_TREE+= gtk4 @@ -6,7 +6,7 @@ BUILDLINK_TREE+= gtk4 GTK4_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.gtk4+= gtk4>=4.0.3 -BUILDLINK_ABI_DEPENDS.gtk4?= gtk4>=4.2.0nb2 +BUILDLINK_ABI_DEPENDS.gtk4+= gtk4>=4.2.0nb2 BUILDLINK_PKGSRCDIR.gtk4?= ../../x11/gtk4 .include "../../devel/glib2/buildlink3.mk" --_----------=_1666269536247980--