Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/kdeconnect/
Date: Sun, 30 Sep 2018 09:08:49
Message-Id: 1538297715.a72efc4b83d5b5bd9a70cac377c37549ed678302.asturm@gentoo
1 commit: a72efc4b83d5b5bd9a70cac377c37549ed678302
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 30 08:55:15 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 30 08:55:15 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a72efc4b
7
8 kde-misc/kdeconnect: Add USE=bluetooth
9
10 Bug: https://bugs.gentoo.org/666584
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12 Package-Manager: Portage-2.3.50, Repoman-2.3.11
13
14 kde-misc/kdeconnect/kdeconnect-9999.ebuild | 8 ++++----
15 1 file changed, 4 insertions(+), 4 deletions(-)
16
17 diff --git a/kde-misc/kdeconnect/kdeconnect-9999.ebuild b/kde-misc/kdeconnect/kdeconnect-9999.ebuild
18 index 10739efd37..5456faa9c2 100644
19 --- a/kde-misc/kdeconnect/kdeconnect-9999.ebuild
20 +++ b/kde-misc/kdeconnect/kdeconnect-9999.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 +# Copyright 1999-2018 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=6
27 @@ -17,7 +17,7 @@ fi
28 DESCRIPTION="Adds communication between KDE Plasma and your smartphone"
29 HOMEPAGE="https://www.kde.org/ https://community.kde.org/KDEConnect"
30 LICENSE="GPL-2+"
31 -IUSE="app mousepad sms wayland"
32 +IUSE="app bluetooth mousepad sms wayland"
33
34 DEPEND="
35 $(add_frameworks_dep kcmutils)
36 @@ -39,6 +39,7 @@ DEPEND="
37 $(add_qt_dep qtx11extras)
38 >=app-crypt/qca-2.1.0:2[qt5(+),ssl]
39 app? ( $(add_frameworks_dep kdeclarative) )
40 + bluetooth? ( $(add_qt_dep qtbluetooth) )
41 mousepad? (
42 x11-libs/libfakekey
43 x11-libs/libX11
44 @@ -68,6 +69,7 @@ src_prepare() {
45 src_configure() {
46 local mycmakeargs=(
47 -DEXPERIMENTALAPP_ENABLED=$(usex app)
48 + -DBLUETOOTH_ENABLED=$(usex bluetooth)
49 $(cmake-utils_use_find_package mousepad LibFakeKey)
50 -DSMSAPP_ENABLED=$(usex sms)
51 $(cmake-utils_use_find_package wayland KF5Wayland)
52 @@ -79,10 +81,8 @@ src_configure() {
53 pkg_postinst(){
54 kde5_pkg_postinst
55
56 - elog
57 elog "The Android .apk file is available via"
58 elog "https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp"
59 elog "or via"
60 elog "https://f-droid.org/repository/browse/?fdid=org.kde.kdeconnect_tp"
61 - elog
62 }