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 A9223139695 for ; Sat, 18 Mar 2017 22:27:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94BD221C080; Sat, 18 Mar 2017 22:27:35 +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 62E7B21C080 for ; Sat, 18 Mar 2017 22:27:35 +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 37432341236 for ; Sat, 18 Mar 2017 22:27:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A35746CF0 for ; Sat, 18 Mar 2017 22:27:32 +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: <1489876041.fea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d.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-9999.ebuild X-VCS-Directories: kde-plasma/kinfocenter/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d X-VCS-Branch: master Date: Sat, 18 Mar 2017 22:27:32 +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: 790b36fd-b91a-48fe-9282-7cbd32e94113 X-Archives-Hash: 48fce4bd7efec8575be11aedb8e5c687 commit: fea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Mar 18 14:26:14 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Mar 18 22:27:21 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=fea7ebbb kde-plasma/kinfocenter: Simplify as with KF5Plasma, USE=egl -> wayland Follow-up to 98f15f920f16ddfdf147205ff66956b5cb64aeeb Package-Manager: Portage-2.3.3, Repoman-2.3.1 kde-plasma/kinfocenter/kinfocenter-9999.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/kde-plasma/kinfocenter/kinfocenter-9999.ebuild b/kde-plasma/kinfocenter/kinfocenter-9999.ebuild index 8c2107ed14..7abf15dcba 100644 --- a/kde-plasma/kinfocenter/kinfocenter-9999.ebuild +++ b/kde-plasma/kinfocenter/kinfocenter-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) )