blob: fa08785a358b356b08e98d3d8c947a2d17b816af (
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
46
47
48
49
50
51
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MY_PN=${PN}-kde
KMNAME=${MY_PN}
KDE_TEST="true"
inherit kde5
DESCRIPTION="Adds communication between KDE and your smartphone"
HOMEPAGE="http://www.kde.org/"
KEYWORDS=""
LICENSE="GPL-2+"
DEPEND="
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep knotifications)
>=app-crypt/qca-2.1.0:2[qt5,openssl]
dev-qt/qtdbus:5
dev-qt/qtdeclarative:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
x11-libs/libfakekey
"
RDEPEND="${DEPEND}
$(add_plasma_dep plasma-workspace)
"
[[ ${KDE_BUILD_TYPE} != live ]] && S=${WORKDIR}/${MY_P}
pkg_postinst(){
elog
elog "Optional dependency:"
elog "sys-fs/sshfs-fuse (for 'remote filesystem browser' plugin)"
elog
elog "The Android .apk file is available via"
elog "https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp"
elog
}
|