Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: net-im/choqok/
Date: Thu, 04 Aug 2016 18:02:16
Message-Id: 1470333526.72268891a015351f24b69df5b1bf9be5e97372f4.johu@gentoo
1 commit: 72268891a015351f24b69df5b1bf9be5e97372f4
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 17:58:46 2016 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 17:58:46 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=72268891
7
8 net-im/choqok: Version bump 1.5.85
9
10 Package-Manager: portage-2.3.0
11
12 net-im/choqok/choqok-1.5.85.ebuild | 65 ++++++++++++++++++++++++++++++++++++++
13 1 file changed, 65 insertions(+)
14
15 diff --git a/net-im/choqok/choqok-1.5.85.ebuild b/net-im/choqok/choqok-1.5.85.ebuild
16 new file mode 100644
17 index 0000000..0499b7a
18 --- /dev/null
19 +++ b/net-im/choqok/choqok-1.5.85.ebuild
20 @@ -0,0 +1,65 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +KDE_HANDBOOK="forceoptional"
28 +inherit kde5
29 +
30 +DESCRIPTION="Free/Open Source micro-blogging client for KDE"
31 +HOMEPAGE="http://choqok.gnufolks.org/"
32 +SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.xz"
33 +
34 +LICENSE="GPL-2+"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="attica konqueror"
37 +
38 +DEPEND="
39 + $(add_frameworks_dep kcmutils)
40 + $(add_frameworks_dep kconfig)
41 + $(add_frameworks_dep kconfigwidgets)
42 + $(add_frameworks_dep kcoreaddons)
43 + $(add_frameworks_dep kemoticons)
44 + $(add_frameworks_dep kglobalaccel)
45 + $(add_frameworks_dep kguiaddons)
46 + $(add_frameworks_dep ki18n)
47 + $(add_frameworks_dep kio)
48 + $(add_frameworks_dep kjobwidgets)
49 + $(add_frameworks_dep knotifications)
50 + $(add_frameworks_dep knotifyconfig)
51 + $(add_frameworks_dep kservice)
52 + $(add_frameworks_dep ktextwidgets)
53 + $(add_frameworks_dep kwallet)
54 + $(add_frameworks_dep kwidgetsaddons)
55 + $(add_frameworks_dep kxmlgui)
56 + $(add_frameworks_dep sonnet)
57 + $(add_qt_dep qtdbus)
58 + $(add_qt_dep qtgui)
59 + $(add_qt_dep qtwidgets)
60 + $(add_qt_dep qtxml)
61 + app-crypt/qca[qt5]
62 + dev-libs/qoauth:5
63 + net-libs/telepathy-qt[qt5]
64 + attica? ( $(add_frameworks_dep attica) )
65 + konqueror? (
66 + $(add_frameworks_dep kparts)
67 + $(add_frameworks_dep kdewebkit)
68 + $(add_qt_dep qtwebkit)
69 + )
70 +"
71 +RDEPEND="${DEPEND}
72 + !net-im/choqok:4
73 +"
74 +
75 +DOCS=( AUTHORS README TODO changelog )
76 +
77 +src_configure() {
78 + local mycmakeargs=(
79 + $(cmake-utils_use_find_package attica KF5Attica)
80 + $(cmake-utils_use_find_package konqueror KF5Parts)
81 + $(cmake-utils_use_find_package konqueror KF5WebKit)
82 + )
83 +
84 + kde5_src_configure
85 +}