blob: 40ee66796f93a2df53e2f027c7c03ddc679a7bfb (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KDE_LINGUAS="da en_GB et gl lt nl pt pt_BR sk sv uk zh_TW"
MY_PN=${PN}-1
MY_P=${MY_PN}-${PV}
EGIT_REPONAME=${MY_PN}
inherit kde4-base
DESCRIPTION="PolKit agent module for KDE."
HOMEPAGE="http://www.kde.org"
[[ ${PV} = *9999* ]] || \
SRC_URI="mirror://kde/stable/apps/KDE4.x/admin/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE="debug"
DEPEND="
>=sys-auth/polkit-qt-0.103.0
"
RDEPEND="${DEPEND}
!sys-auth/polkit-kde
"
[[ ${PV} = *9999* ]] || S="${WORKDIR}/${MY_P}"
|