blob: d5991c9496de55e3bdfdaf388b7d12cc50e3e643 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
if [[ ${PV} = *9999* ]]; then
inherit git
EGIT_REPO_URI="git://anongit.kde.org/polkit-kde-kcmodules-1"
EGIT_PROJECT="polkit-kde-kcmodules-1"
else
MY_P="${P/kcmodules/kcmodules-1}"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
fi
inherit kde4-base
DESCRIPTION="PolKit agent module for KDE."
HOMEPAGE="http://www.kde.org"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="4"
IUSE="debug"
DEPEND="
>=sys-auth/polkit-kde-agent-0.98_pre
>=sys-auth/polkit-qt-0.98_pre
"
RDEPEND="${DEPEND}"
[[ ${PV} = *9999* ]] || S="${WORKDIR}/${MY_P}"
|