blob: 47a33d7dee839bcd1b05f28ccdbad4f21ed15d78 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KDE_MINIMAL="4.6"
KDE_SCM="git"
EGIT_REPONAME="plasma-mobile"
inherit kde4-base
DESCRIPTION="Plasma mobile shell for internet tablets"
HOMEPAGE="http://kde.org/"
LICENSE="GPL-2 LGPL-2"
KEYWORDS=""
SLOT="4"
IUSE=""
DEPEND="
$(add_kdebase_dep nepomuk)
$(add_kdebase_dep plasma-workspace)
"
RDEPEND="${DEPEND}"
src_install() {
kde4-base_src_install
rm "${ED}/usr/share/apps/plasma/services/powermanagementservice.operations" || die
}
|