blob: 340fe18ad48b982e35ec8e108aae5b232ff5a9ea (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
NEED_KDE="4.1"
inherit kde4-base
DESCRIPTION="PowerDevil is an utility for KDE4 for Laptop Powermanagement"
HOMEPAGE="http://www.kde-apps.org/content/show.php/PowerDevil?content=85078"
SRC_URI="http://www.kde-apps.org/CONTENT/content-files/85078-${P}-kde4.1.1.tar.bz2"
LICENSE="GPL-3"
SLOT="4.1"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="kde-base/systemsettings:${SLOT}
kde-base/kscreensaver:${SLOT}"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/"${P}"-kde4.1.1
src_configure() {
local mycmakeargs
mycmakeargs="${mycmakeargs}
-DDBUS_INTERFACES_INSTALL_DIR=${KDEDIR}/share/dbus-1/interfaces/"
kde4-base_src_configure
}
|