Received: by mail.netbsd.org (Postfix, from userid 605) id 39A5B84EAD; Wed, 11 Jan 2023 15:40:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6993E84D37 for ; Wed, 11 Jan 2023 15:40:51 +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 4yqIVWkXZOha for ; Wed, 11 Jan 2023 15:40:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BAE6884CE8 for ; Wed, 11 Jan 2023 15:40:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B4A58FA90; Wed, 11 Jan 2023 15:40:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1673451650299630" MIME-Version: 1.0 Date: Wed, 11 Jan 2023 15:40:50 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/x11/ruby-gtk3 To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230111154050.B4A58FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1673451650299630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Wed Jan 11 15:40:50 UTC 2023 Modified Files: pkgsrc/x11/ruby-gtk3: Makefile Log Message: x11/ruby-gtk3: fix build problem with tiff-4.5.0 Fix build problem with tiff-4.5.0 by adding pkg-config to USE_TOOLS. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/x11/ruby-gtk3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1673451650299630 Content-Disposition: inline Content-Length: 793 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/ruby-gtk3/Makefile diff -u pkgsrc/x11/ruby-gtk3/Makefile:1.11 pkgsrc/x11/ruby-gtk3/Makefile:1.12 --- pkgsrc/x11/ruby-gtk3/Makefile:1.11 Tue Jan 3 17:36:39 2023 +++ pkgsrc/x11/ruby-gtk3/Makefile Wed Jan 11 15:40:50 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2023/01/03 17:36:39 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2023/01/11 15:40:50 taca Exp $ # DISTNAME= gtk3-${VERSION} @@ -14,6 +14,8 @@ SUPERSEDES+= ruby-gnome2-gtk3-[0-9]* DEPENDS+= ${RUBY_PKGPREFIX}-atk>=${VERSION}:../../devel/ruby-atk DEPENDS+= ${RUBY_PKGPREFIX}-gdk3>=${VERSION}:../../graphics/ruby-gdk3 +USE_TOOLS+= pkg-config + .include "../../graphics/ruby-gdk3/buildlink3.mk" .include "../../x11/gtk3/buildlink3.mk" .include "../../meta-pkgs/ruby-gnome/Makefile.common" --_----------=_1673451650299630--