blob: 00d5f43ab1bf94425d6eef29e72b92bfd97c5482 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit cmake-utils git-2
DESCRIPTION="PolicyKit Qt4 API wrapper library."
HOMEPAGE="http://kde.org/"
EGIT_REPO_URI="git://anongit.kde.org/polkit-qt-1"
LICENSE="LGPL-2"
KEYWORDS=""
SLOT="0"
IUSE="debug examples"
COMMON_DEPEND="
dev-libs/glib:2
>=sys-auth/polkit-0.103
dev-qt/qtcore:4[glib]
dev-qt/qtgui:4[dbus,glib]
"
DEPEND="${COMMON_DEPEND}
dev-util/automoc
"
RDEPEND="${COMMON_DEPEND}"
DOCS=(AUTHORS README README.porting TODO)
src_configure() {
mycmakeargs=(
$(cmake-utils_use_build examples)
)
cmake-utils_src_configure
}
|