blob: 0049ea512a78bafa2b3013de09c22f28253d0960 (
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
35
36
37
38
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit cmake-utils
MY_P="${P/qt/qt-1}"
DESCRIPTION="PolicyKit Qt4 API wrapper library."
HOMEPAGE="http://kde.org/"
SRC_URI="mirror://kde/stable/polkit-qt-1/${MY_P}.tar.bz2"
LICENSE="LGPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="debug examples"
RDEPEND="
>=sys-auth/polkit-0.95
x11-libs/qt-gui[dbus]
"
DEPEND="${RDEPEND}
kde-base/automoc
"
DOCS="AUTHORS README README.porting TODO"
S="${WORKDIR}/${MY_P}"
src_configure() {
mycmakeargs=(
$(cmake-utils_use_build examples)
)
cmake-utils_src_configure
}
|