Received: by mail.netbsd.org (Postfix, from userid 605) id 9439284E59; Fri, 20 Jan 2023 14:49:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C545184D6F for ; Fri, 20 Jan 2023 14:49:19 +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 qqyk1fqnozwu for ; Fri, 20 Jan 2023 14:49:19 +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 2190F84C71 for ; Fri, 20 Jan 2023 14:49:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 161D0FA90; Fri, 20 Jan 2023 14:49:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674226159236840" MIME-Version: 1.0 Date: Fri, 20 Jan 2023 14:49:19 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/chat/pidgin To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20230120144919.161D0FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674226159236840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Fri Jan 20 14:49:19 UTC 2023 Modified Files: pkgsrc/chat/pidgin: options.mk Log Message: pidgin: Replace conditional pkgsrc changes: --------------- * Actually, the build fails on Darwin is x11/gtk2 has been built with quartz option (suggested option) instead of x11. But the x11 option should not be excluded on Darwin since x11/gtk2 could be built with x11. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/chat/pidgin/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1674226159236840 Content-Disposition: inline Content-Length: 733 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/pidgin/options.mk diff -u pkgsrc/chat/pidgin/options.mk:1.19 pkgsrc/chat/pidgin/options.mk:1.20 --- pkgsrc/chat/pidgin/options.mk:1.19 Fri Jan 20 14:15:38 2023 +++ pkgsrc/chat/pidgin/options.mk Fri Jan 20 14:49:18 2023 @@ -1,11 +1,11 @@ -# $NetBSD: options.mk,v 1.19 2023/01/20 14:15:38 triaxx Exp $ +# $NetBSD: options.mk,v 1.20 2023/01/20 14:49:18 triaxx Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.pidgin PKG_SUPPORTED_OPTIONS+= dbus debug gtkspell PKG_SUGGESTED_OPTIONS+= dbus gtkspell -.include "../../mk/bsd.prefs.mk" -.if ${OPSYS} != "Darwin" +.include "../../x11/gtk2/buildlink3.mk" +.if ${PKG_BUILD_OPTIONS.gtk2:Mx11} PKG_SUPPORTED_OPTIONS+= x11 PKG_SUGGESTED_OPTIONS+= x11 .endif --_----------=_1674226159236840--