blob: 212b325cc4835d508b83f284d431de5aed39e523 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
VIRTUALX_REQUIRED="test"
if [[ $PV = *9999* ]]; then
EGIT_BRANCH="frameworks"
KMNAME="libkscreen"
KEYWORDS=""
else
SRC_URI="mirror://kde/unstable/plasma/4.96.0/src/${P}.tar.xz"
KEYWORDS="~amd64 ~x86"
fi
inherit kde5
DESCRIPTION="KDE screen management library"
HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libkscreen"
LICENSE="GPL-2"
IUSE=""
# TODO: add X use flag, does not build at the moment
DEPEND="
dev-qt/qtgui:5
dev-qt/qtx11extras:5
x11-libs/libX11
x11-libs/libxcb
x11-libs/libXrandr
"
RDEPEND="${DEPEND}"
|