commit: a29096f106b944b81325a365f6ffb8625716e29f
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 13:18:41 2015 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 13:18:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a29096f1
kde-misc/kdeconnect: new upstream tarball
It includes translations taht were forgotten in the original release.
Package-Manager: portage-2.2.25
kde-misc/kdeconnect/kdeconnect-0.9-r1.ebuild | 82 ++++++++++++++++++++++++++++
1 file changed, 82 insertions(+)
diff --git a/kde-misc/kdeconnect/kdeconnect-0.9-r1.ebuild
b/kde-misc/kdeconnect/kdeconnect-0.9-r1.ebuild
new file mode 100644
index 0000000..a9700ac
--- /dev/null
+++ b/kde-misc/kdeconnect/kdeconnect-0.9-r1.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="true"
+KDE_TEST="true"
+KMNAME="${PN}-kde"
+inherit kde5
+
+DESCRIPTION="Adds communication between KDE and your smartphone"
+HOMEPAGE="https://www.kde.org/ https://community.kde.org/KDEConnect"
+SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${KMNAME}-${PV}f.tar.xz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64"
+IUSE="app +telepathy wayland"
+
+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)
+ $(add_frameworks_dep kservice)
+ $(add_frameworks_dep kwidgetsaddons)
+ >=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
+ dev-qt/qtx11extras:5
+ x11-libs/libfakekey
+ x11-libs/libX11
+ x11-libs/libXtst
+ app? ( $(add_frameworks_dep kdeclarative) )
+ telepathy? ( >=net-libs/telepathy-qt-0.9.7[qt5] )
+ wayland? ( $(add_plasma_dep kwayland) )
+"
+RDEPEND="${DEPEND}
+ $(add_plasma_dep plasma-workspace)
+ wayland? ( $(add_plasma_dep kwin) )
+ !kde-misc/kdeconnect:4
+"
+
+src_prepare() {
+ sed \
+ -e 's#${LIBEXEC_INSTALL_DIR}#@KDE_INSTALL_FULL_LIBEXECDIR@#' \
+ -i daemon/kdeconnectd.desktop.cmake
+
+ kde5_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DEXPERIMENTALAPP_ENABLED=$(usex app)
+ $(cmake-utils_use_find_package handbook KF5DocTools)
+ $(cmake-utils_use_find_package telepathy TelepathyQt5)
+ $(cmake-utils_use_find_package telepathy TelepathyQt5Service)
+ $(cmake-utils_use_find_package wayland KF5Wayland)
+ )
+
+ kde5_src_configure
+}
+
+pkg_postinst(){
+ kde5_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
+}