summaryrefslogtreecommitdiff
path: root/kde-plasma/kinfocenter
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-03-18 15:26:14 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2017-03-18 23:27:21 +0100
commitfea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d (patch)
treeeff27f57ecd03951f3d0a0fc4e21e35aa9fffe02 /kde-plasma/kinfocenter
parentc7d06fd8eee37017eba3a09438632b923f751485 (diff)
downloadkde-fea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d.tar.gz
kde-fea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d.tar.bz2
kde-fea7ebbb113dbbe29f5dc5f5ffb1c8275d49505d.zip
kde-plasma/kinfocenter: Simplify as with KF5Plasma, USE=egl -> wayland
Follow-up to 98f15f920f16ddfdf147205ff66956b5cb64aeeb Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'kde-plasma/kinfocenter')
-rw-r--r--kde-plasma/kinfocenter/kinfocenter-9999.ebuild13
1 files changed, 8 insertions, 5 deletions
diff --git a/kde-plasma/kinfocenter/kinfocenter-9999.ebuild b/kde-plasma/kinfocenter/kinfocenter-9999.ebuild
index 8c2107ed145..7abf15dcba9 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)
)