blob: b36c371b39adbbaf504d6707431e1fa6b8ca5de0 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit kde4-base
DESCRIPTION="Library for accessing Google calendar and contact resources"
HOMEPAGE="https://projects.kde.org/projects/extragear/libs/libkgapi"
LICENSE="GPL-2"
KEYWORDS=""
IUSE="debug"
SLOT=4
DEPEND="
$(add_kdebase_dep kdepimlibs )
dev-libs/qjson
"
RDEPEND=${DEPEND}
src_configure() {
mycmakeargs=(
-DKGAPI_DISABLE_DEPRECATED=TRUE
-DKCAL=OFF
)
kde4-base_src_configure
}
|