Received: by mail.netbsd.org (Postfix, from userid 605) id 6FEE284E88; Tue, 17 May 2022 17:55:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A892D84E86 for ; Tue, 17 May 2022 17:55:21 +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 z-DYSIjKDLQ3 for ; Tue, 17 May 2022 17:55:21 +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 2769B84E82 for ; Tue, 17 May 2022 17:55:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E48B4FAEB; Tue, 17 May 2022 17:55:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165281015374480" MIME-Version: 1.0 Date: Tue, 17 May 2022 17:55:53 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/meta-pkgs/kf5 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220517175553.E48B4FAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165281015374480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue May 17 17:55:53 UTC 2022 Modified Files: pkgsrc/meta-pkgs/kf5: DESCR Makefile Log Message: kf5: Only pull in kwayland if supported. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/meta-pkgs/kf5/DESCR cvs rdiff -u -r1.22 -r1.23 pkgsrc/meta-pkgs/kf5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165281015374480 Content-Disposition: inline Content-Length: 1814 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/meta-pkgs/kf5/DESCR diff -u pkgsrc/meta-pkgs/kf5/DESCR:1.2 pkgsrc/meta-pkgs/kf5/DESCR:1.3 --- pkgsrc/meta-pkgs/kf5/DESCR:1.2 Sat Jun 2 18:44:50 2018 +++ pkgsrc/meta-pkgs/kf5/DESCR Tue May 17 17:55:53 2022 @@ -6,4 +6,4 @@ and well tested libraries with friendly including hardware integration, file format support, additional widgets, plotting functions, spell checking and more. Many of the Frameworks are cross platform and have minimal or no extra dependencies making them easy -to build and add to any Qt application. \ No newline at end of file +to build and add to any Qt application. Index: pkgsrc/meta-pkgs/kf5/Makefile diff -u pkgsrc/meta-pkgs/kf5/Makefile:1.22 pkgsrc/meta-pkgs/kf5/Makefile:1.23 --- pkgsrc/meta-pkgs/kf5/Makefile:1.22 Mon Apr 25 09:38:16 2022 +++ pkgsrc/meta-pkgs/kf5/Makefile Tue May 17 17:55:53 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2022/04/25 09:38:16 markd Exp $ +# $NetBSD: Makefile,v 1.23 2022/05/17 17:55:53 jperkin Exp $ DISTNAME= kf5-${KF5VER} CATEGORIES= meta-pkgs x11 kde @@ -11,6 +11,8 @@ COMMENT= "meta-package" for the KDE Fram KF5VER= 5.93.0 +.include "../../devel/wayland/platform.mk" + DEPENDS+= attica-qt5>=${KF5VER}:../../misc/attica-qt5 DEPENDS+= baloo5>=${KF5VER}:../../sysutils/baloo5 # bluez-qt @@ -71,7 +73,9 @@ DEPENDS+= ktexteditor>=${KF5VER}:../../d DEPENDS+= ktextwidgets>=${KF5VER}:../../x11/ktextwidgets DEPENDS+= kunitconversion>=${KF5VER}:../../misc/kunitconversion DEPENDS+= kwallet>=${KF5VER}:../../security/kwallet +.if ${PLATFORM_SUPPORTS_WAYLAND} == "yes" DEPENDS+= kwayland>=${KF5VER}:../../devel/kwayland +.endif DEPENDS+= kwidgetsaddons>=${KF5VER}:../../x11/kwidgetsaddons DEPENDS+= kwindowsystem>=${KF5VER}:../../x11/kwindowsystem DEPENDS+= kxmlgui>=${KF5VER}:../../x11/kxmlgui --_----------=_165281015374480--