blob: e5f790c359770bc216bae0ee4d21d2906f755edc (
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
39
40
41
42
43
44
45
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
VIRTUALX_REQUIRED="test"
KDE_LINGUAS="bs cs da de el fi fr hu ja lt nl pl pt pt_BR ro ru sk sl sv uk"
inherit kde4-base
if [[ ${KDE_BUILD_TYPE} != live ]]; then
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.bz2"
else
KEYWORDS=""
fi
DESCRIPTION="KDE contact person abstraction library"
HOMEPAGE="https://projects.kde.org/projects/playground/network/kpeople"
LICENSE="LGPL-2.1"
SLOT="4/4"
IUSE="debug examples minimal semantic-desktop test"
RDEPEND="
$(add_kdebase_dep kdepimlibs)
semantic-desktop? ( $(add_kdebase_dep baloo) )
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
src_prepare() {
use minimal && comment_add_subdirectory po
kde4-base_src_prepare
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with examples)
$(cmake-utils_use_find_package semantic-desktop Baloo)
)
kde4-base_src_configure
}
|