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 AFA2913832E for ; Wed, 20 Jul 2016 18:12:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D790121C046; Wed, 20 Jul 2016 18:12:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4422F21C046 for ; Wed, 20 Jul 2016 18:12:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 66BF7340DFE for ; Wed, 20 Jul 2016 18:12:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AB8E7CE for ; Wed, 20 Jul 2016 18:12:55 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1469038364.7ccda3b5f6189c21ad8c1740a38fad3ea3960f0c.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/oxygen/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/oxygen/oxygen-5.7.49.9999.ebuild kde-plasma/oxygen/oxygen-9999.ebuild X-VCS-Directories: kde-plasma/oxygen/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 7ccda3b5f6189c21ad8c1740a38fad3ea3960f0c X-VCS-Branch: master Date: Wed, 20 Jul 2016 18:12:55 +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-Archives-Salt: bf9cfb0b-be10-41d2-827a-4c4923ce3f4c X-Archives-Hash: 9172868748f88bb1665bf4e77e03819e commit: 7ccda3b5f6189c21ad8c1740a38fad3ea3960f0c Author: Michael Palimaka gentoo org> AuthorDate: Wed Jul 20 18:12:39 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Jul 20 18:12:44 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7ccda3b5 kde-plasma/oxygen: introduce wayland USE flag Package-Manager: portage-2.3.0 kde-plasma/oxygen/oxygen-5.7.49.9999.ebuild | 12 ++++++++++-- kde-plasma/oxygen/oxygen-9999.ebuild | 12 ++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/kde-plasma/oxygen/oxygen-5.7.49.9999.ebuild b/kde-plasma/oxygen/oxygen-5.7.49.9999.ebuild index f78559e..d33bc3f 100644 --- a/kde-plasma/oxygen/oxygen-5.7.49.9999.ebuild +++ b/kde-plasma/oxygen/oxygen-5.7.49.9999.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="KDE window manager theme" HOMEPAGE="https://projects.kde.org/projects/kde/workspace/oxygen" KEYWORDS="" -IUSE="" +IUSE="wayland" RDEPEND=" $(add_frameworks_dep frameworkintegration) @@ -20,7 +20,6 @@ RDEPEND=" $(add_frameworks_dep kcoreaddons) $(add_frameworks_dep kguiaddons) $(add_frameworks_dep ki18n) - $(add_frameworks_dep kwayland) $(add_frameworks_dep kwidgetsaddons) $(add_frameworks_dep kwindowsystem) $(add_plasma_dep kdecoration) @@ -29,9 +28,18 @@ RDEPEND=" $(add_qt_dep qtwidgets) $(add_qt_dep qtx11extras) x11-libs/libxcb + wayland? ( $(add_frameworks_dep kwayland) ) !kde-base/kdebase-cursors:4 !kde-base/oxygen:4 " DEPEND="${RDEPEND} $(add_frameworks_dep kservice) " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package wayland KF5Wayland) + ) + + kde5_src_configure +} diff --git a/kde-plasma/oxygen/oxygen-9999.ebuild b/kde-plasma/oxygen/oxygen-9999.ebuild index f78559e..d33bc3f 100644 --- a/kde-plasma/oxygen/oxygen-9999.ebuild +++ b/kde-plasma/oxygen/oxygen-9999.ebuild @@ -9,7 +9,7 @@ inherit kde5 DESCRIPTION="KDE window manager theme" HOMEPAGE="https://projects.kde.org/projects/kde/workspace/oxygen" KEYWORDS="" -IUSE="" +IUSE="wayland" RDEPEND=" $(add_frameworks_dep frameworkintegration) @@ -20,7 +20,6 @@ RDEPEND=" $(add_frameworks_dep kcoreaddons) $(add_frameworks_dep kguiaddons) $(add_frameworks_dep ki18n) - $(add_frameworks_dep kwayland) $(add_frameworks_dep kwidgetsaddons) $(add_frameworks_dep kwindowsystem) $(add_plasma_dep kdecoration) @@ -29,9 +28,18 @@ RDEPEND=" $(add_qt_dep qtwidgets) $(add_qt_dep qtx11extras) x11-libs/libxcb + wayland? ( $(add_frameworks_dep kwayland) ) !kde-base/kdebase-cursors:4 !kde-base/oxygen:4 " DEPEND="${RDEPEND} $(add_frameworks_dep kservice) " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package wayland KF5Wayland) + ) + + kde5_src_configure +}