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 B3B23139695 for ; Tue, 21 Mar 2017 12:52:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0452F21C124; Tue, 21 Mar 2017 12:52:28 +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 D2E7E21C124 for ; Tue, 21 Mar 2017 12:52:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 CD3C134071C for ; Tue, 21 Mar 2017 12:52:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70D236FE8 for ; Tue, 21 Mar 2017 12:52:25 +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: <1490100730.71ed786146a3b7125cf786eb4d564f86843e8b39.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/kinfocenter/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/kinfocenter/kinfocenter-5.9.49.9999.ebuild X-VCS-Directories: kde-plasma/kinfocenter/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 71ed786146a3b7125cf786eb4d564f86843e8b39 X-VCS-Branch: master Date: Tue, 21 Mar 2017 12:52:25 +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: e4af9a00-83a2-402d-a5bb-d7124b423473 X-Archives-Hash: 05a889636c195607d539e7d05025c4e5 commit: 71ed786146a3b7125cf786eb4d564f86843e8b39 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 21 12:50:04 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Mar 21 12:52:10 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=71ed7861 kde-plasma/kinfocenter: Backport USE=egl -> wayland to 5.9 branch Package-Manager: Portage-2.3.3, Repoman-2.3.1 kde-plasma/kinfocenter/kinfocenter-5.9.49.9999.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/kde-plasma/kinfocenter/kinfocenter-5.9.49.9999.ebuild b/kde-plasma/kinfocenter/kinfocenter-5.9.49.9999.ebuild index 8c2107ed14..7abf15dcba 100644 --- a/kde-plasma/kinfocenter/kinfocenter-5.9.49.9999.ebuild +++ b/kde-plasma/kinfocenter/kinfocenter-5.9.49.9999.ebuild @@ -10,9 +10,9 @@ DESCRIPTION="A utility that provides information about a computer system" HOMEPAGE="https://www.kde.org/applications/system/kinfocenter/" SRC_URI+=" https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png" KEYWORDS="" -IUSE="egl gles2 ieee1394 +opengl +pci wayland" +IUSE="gles2 ieee1394 +opengl +pci wayland" -REQUIRED_USE="egl? ( || ( gles2 opengl ) )" +REQUIRED_USE="wayland? ( || ( gles2 opengl ) )" COMMON_DEPEND=" $(add_frameworks_dep kcmutils) @@ -39,11 +39,14 @@ COMMON_DEPEND=" ieee1394? ( sys-libs/libraw1394 ) opengl? ( $(add_qt_dep qtgui 'gles2=') - media-libs/mesa[egl?,gles2?] + media-libs/mesa[gles2?] !gles2? ( media-libs/glu ) ) pci? ( sys-apps/pciutils ) - wayland? ( $(add_frameworks_dep kwayland) ) + wayland? ( + $(add_frameworks_dep kwayland) + media-libs/mesa[egl] + ) " DEPEND="${COMMON_DEPEND} $(add_frameworks_dep plasma) @@ -57,11 +60,11 @@ RDEPEND="${COMMON_DEPEND} src_configure() { local mycmakeargs=( - $(cmake-utils_use_find_package egl EGL) $(cmake-utils_use_find_package gles2 OpenGLES) $(cmake-utils_use_find_package ieee1394 RAW1394) $(cmake-utils_use_find_package opengl OpenGL) $(cmake-utils_use_find_package pci PCIUTILS) + $(cmake-utils_use_find_package wayland EGL) $(cmake-utils_use_find_package wayland KF5Wayland) )