Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/krdc/
Date: Tue, 26 Jan 2016 18:19:00
Message-Id: 1453832318.702d0b4c7f9a949788c04d1da951918a7888b1fe.kensington@gentoo
1 commit: 702d0b4c7f9a949788c04d1da951918a7888b1fe
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Sat Jan 23 23:11:02 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 26 18:18:38 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=702d0b4c
7
8 kde-apps/krdc: Add KF5 version
9
10 Package-Manager: portage-2.2.26
11
12 kde-apps/krdc/krdc-5.9999.ebuild | 50 ++++++++++++++++++++++++++++++++++++++++
13 1 file changed, 50 insertions(+)
14
15 diff --git a/kde-apps/krdc/krdc-5.9999.ebuild b/kde-apps/krdc/krdc-5.9999.ebuild
16 new file mode 100644
17 index 0000000..da43932
18 --- /dev/null
19 +++ b/kde-apps/krdc/krdc-5.9999.ebuild
20 @@ -0,0 +1,50 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +EGIT_BRANCH="frameworks"
28 +KDE_HANDBOOK="forceoptional"
29 +inherit kde5
30 +
31 +DESCRIPTION="Remote desktop connection (RDP and VNC) client"
32 +HOMEPAGE="https://www.kde.org/applications/internet/krdc/"
33 +KEYWORDS=""
34 +IUSE="+rdesktop vnc"
35 +
36 +#nx? ( >=net-misc/nxcl-0.9-r1 ) disabled upstream, last checked 2016-01-24
37 +
38 +DEPEND="
39 + $(add_frameworks_dep kbookmarks)
40 + $(add_frameworks_dep kcmutils)
41 + $(add_frameworks_dep kcompletion)
42 + $(add_frameworks_dep kconfig)
43 + $(add_frameworks_dep kconfigwidgets)
44 + $(add_frameworks_dep kcoreaddons)
45 + $(add_frameworks_dep kdnssd)
46 + $(add_frameworks_dep ki18n)
47 + $(add_frameworks_dep kiconthemes)
48 + $(add_frameworks_dep knotifications)
49 + $(add_frameworks_dep knotifyconfig)
50 + $(add_frameworks_dep kservice)
51 + $(add_frameworks_dep kwallet)
52 + $(add_frameworks_dep kwidgetsaddons)
53 + $(add_frameworks_dep kxmlgui)
54 + dev-qt/qtgui:5
55 + dev-qt/qtwidgets:5
56 + dev-qt/qtxml:5
57 + net-dns/avahi
58 + vnc? ( >=net-libs/libvncserver-0.9 )
59 +"
60 +RDEPEND="${DEPEND}
61 + rdesktop? ( >=net-misc/freerdp-1.1.0_beta1[X] )
62 +"
63 +
64 +src_configure() {
65 + local mycmakeargs=(
66 + -DWITH_LibVNCServer=$(usex vnc)
67 + )
68 +
69 + kde5_src_configure
70 +}