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 0A2DC13832E for ; Wed, 20 Jul 2016 18:07:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 562FB21C0E1; Wed, 20 Jul 2016 18:06:57 +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 EE59821C0E1 for ; Wed, 20 Jul 2016 18:06:56 +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 A2687340E1A for ; Wed, 20 Jul 2016 18:06:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 524297CE for ; Wed, 20 Jul 2016 18:06:52 +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: <1469038000.724b734d8f30db1b69d3b10e7bc078b58ec94687.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/breeze/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/breeze/breeze-5.7.2.ebuild X-VCS-Directories: kde-plasma/breeze/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 724b734d8f30db1b69d3b10e7bc078b58ec94687 X-VCS-Branch: master Date: Wed, 20 Jul 2016 18:06:52 +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: b3f4cb70-125c-465a-b4f9-dc8f4d4cd847 X-Archives-Hash: 8a44d4aa9875df1ce7d3ba20d3a9d026 commit: 724b734d8f30db1b69d3b10e7bc078b58ec94687 Author: Michael Palimaka gentoo org> AuthorDate: Wed Jul 20 18:05:55 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Jul 20 18:06:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724b734d kde-plasma/breeze: introduce wayland USE flag Gentoo-bug: 589216 Package-Manager: portage-2.3.0 kde-plasma/breeze/breeze-5.7.2.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/kde-plasma/breeze/breeze-5.7.2.ebuild b/kde-plasma/breeze/breeze-5.7.2.ebuild index 0dd27ab..7a46fbc 100644 --- a/kde-plasma/breeze/breeze-5.7.2.ebuild +++ b/kde-plasma/breeze/breeze-5.7.2.ebuild @@ -9,7 +9,7 @@ inherit kde5 multibuild DESCRIPTION="Breeze visual style for the Plasma desktop" HOMEPAGE="https://projects.kde.org/projects/kde/workspace/breeze" KEYWORDS="~amd64 ~arm ~x86" -IUSE="qt4" +IUSE="qt4 wayland" COMMON_DEPEND=" $(add_frameworks_dep frameworkintegration) @@ -19,7 +19,6 @@ COMMON_DEPEND=" $(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) @@ -32,6 +31,7 @@ COMMON_DEPEND=" kde-base/kdelibs:4 x11-libs/libX11 ) + wayland? ( $(add_frameworks_dep kwayland) ) " DEPEND="${COMMON_DEPEND} $(add_frameworks_dep kpackage) @@ -48,7 +48,9 @@ pkg_setup() { src_configure() { myconfigure() { - local mycmakeargs=() + local mycmakeargs=( + $(cmake-utils_use_find_package wayland KF5Wayland) + ) if [[ ${MULTIBUILD_VARIANT} = qt4 ]] ; then mycmakeargs+=( -DUSE_KDE4=true )