blob: 752aaaa3ea53f564da4ea33fb94659c4c2311f46 (
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Akonadi resource for Microsoft Exchange Web Services"
HOMEPAGE="https://github.com/KrissN/akonadi-ews"
if [[ ${KDE_BUILD_TYPE} = live ]] ; then
EGIT_REPO_URI="https://github.com/KrissN/${PN}.git"
else
SRC_URI="https://github.com/KrissN/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="LGPL-2+"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kio)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_kdeapps_dep akonadi)
$(add_kdeapps_dep akonadi-mime)
$(add_kdeapps_dep kcalcore)
$(add_kdeapps_dep kcontacts)
$(add_kdeapps_dep kmime)
"
DEPEND="${RDEPEND}
dev-libs/libxslt"
DOCS=( README.md )
|