From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0044A1381F3 for ; Sun, 29 Nov 2020 20:59:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF3BFE082D; Sun, 29 Nov 2020 20:59:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB286E07F9 for ; Sun, 29 Nov 2020 20:59:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE3CE340FFD for ; Sun, 29 Nov 2020 20:59:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C2883F0 for ; Sun, 29 Nov 2020 20:59:20 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1606683467.31a41994f9132bf89be87161fd09c04624d5e554.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kguiaddons/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kguiaddons/kguiaddons-9999.ebuild X-VCS-Directories: kde-frameworks/kguiaddons/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 31a41994f9132bf89be87161fd09c04624d5e554 X-VCS-Branch: master Date: Sun, 29 Nov 2020 20:59:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: beb7a7d8-6e22-4dbe-b061-e68cefc6e144 X-Archives-Hash: 1f027bc53ab89303da399386b383cbcd commit: 31a41994f9132bf89be87161fd09c04624d5e554 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 29 00:54:49 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 29 20:57:47 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=31a41994 kde-frameworks/kguiaddons: Add IUSE=wayland Upstream commit dca78412606f1ea0e66bcafe14dbd2ebf9836674 Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kguiaddons/kguiaddons-9999.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/kguiaddons/kguiaddons-9999.ebuild b/kde-frameworks/kguiaddons/kguiaddons-9999.ebuild index c35816bdc8..1636e723fe 100644 --- a/kde-frameworks/kguiaddons/kguiaddons-9999.ebuild +++ b/kde-frameworks/kguiaddons/kguiaddons-9999.ebuild @@ -10,12 +10,16 @@ inherit ecm kde.org DESCRIPTION="Framework providing assorted high-level user interface components" LICENSE="LGPL-2+" KEYWORDS="" -IUSE="" +IUSE="wayland" RDEPEND=" >=dev-qt/qtgui-${QTMIN}:5 >=dev-qt/qtx11extras-${QTMIN}:5 x11-libs/libX11 + wayland? ( + dev-libs/wayland + >=dev-qt/qtwayland-${QTMIN}:5 + ) " DEPEND="${RDEPEND} x11-base/xorg-proto @@ -25,6 +29,7 @@ DEPEND="${RDEPEND} src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON # bug 746866 + -DWITH_WAYLAND=$(usex wayland) ) ecm_src_configure }