blob: 1b52575f344e1320c3615cd7327833878fa692db (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libkgapi/libkgapi-0.4.4.ebuild,v 1.1 2013/01/01 20:27:38 creffett Exp $
EAPI=4
KDE_LINGUAS=""
inherit kde4-base
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
DESCRIPTION="Library for accessing Google calendar and contact resources"
HOMEPAGE="http://www.kde.org/"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="oldpim"
SLOT=4
DEPEND="
$(add_kdebase_dep kdepimlibs semantic-desktop)
dev-libs/qjson
oldpim? ( dev-libs/boost )
!oldpim? ( $(add_kdebase_dep kdepimlibs semantic-desktop 4.6.0) )
"
RDEPEND=${DEPEND}
src_configure() {
mycmakeargs=(
$(cmake-utils_use oldpim KCAL)
)
kde4-base_src_configure
}
|