Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-misc/kimtoy/
Date: Sun, 03 Mar 2019 21:49:56
Message-Id: 1551649781.a5cdd6fb20ed0ba02372aa8b8b0a1ee3a30d1793.asturm@gentoo
1 commit: a5cdd6fb20ed0ba02372aa8b8b0a1ee3a30d1793
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 3 21:00:47 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 3 21:49:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5cdd6fb
7
8 kde-misc/kimtoy: Add 1.92_pre20190225 snapshot, EAPI-7 bump
9
10 po subdir does not build in release anyway, so nothing of value is lost.
11
12 Package-Manager: Portage-2.3.62, Repoman-2.3.12
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 kde-misc/kimtoy/Manifest | 1 +
16 kde-misc/kimtoy/kimtoy-1.92_pre20190225.ebuild | 70 ++++++++++++++++++++++++++
17 2 files changed, 71 insertions(+)
18
19 diff --git a/kde-misc/kimtoy/Manifest b/kde-misc/kimtoy/Manifest
20 index b3d3a99791f..70b5faba759 100644
21 --- a/kde-misc/kimtoy/Manifest
22 +++ b/kde-misc/kimtoy/Manifest
23 @@ -1 +1,2 @@
24 DIST 140967-kimtoy-1.91.tar.bz2 377053 BLAKE2B 3add157a38f536e0eee5a6f85778da8ee3cf028fcc61228005bfa55f2c093f3d2572cae940d901fba1f5f9a5b7fcaac9695100db73ec38af79dd0000e8c4afba SHA512 60d1592fa6632fc5d69f6cebb9478827c8dd3eb252c7d3f3c4c90035c7682cef7cb883e8d36cd23ee828175c2ea7b5d3c081139e5295cf032340aeeca3d9406d
25 +DIST kimtoy-1.92_pre20190225.tar.gz 435142 BLAKE2B 86f40774cc5c01a49996f80a4257c3ad18787a9e269a0cddb489530ac1d0a7b84dc5f6eace35374975f24fc15738c02d03da6637e6e6edcba48b27e235ca030e SHA512 9b6b6c316e683d3ae80226e91e17a367970a9380ee6f100798be48f1e29c14b39b9ca679a36b26cfe6a09aae4deaee2f7db4b2a1a7b587e3d7b26983ae6eaffb
26
27 diff --git a/kde-misc/kimtoy/kimtoy-1.92_pre20190225.ebuild b/kde-misc/kimtoy/kimtoy-1.92_pre20190225.ebuild
28 new file mode 100644
29 index 00000000000..0efb2e94e07
30 --- /dev/null
31 +++ b/kde-misc/kimtoy/kimtoy-1.92_pre20190225.ebuild
32 @@ -0,0 +1,70 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +COMMIT="c8b3da65bfd289d0a0262aa673aa6b697022d4a3"
39 +inherit kde5
40 +
41 +DESCRIPTION="An input method frontend for Plasma"
42 +HOMEPAGE="https://www.linux-apps.com/content/show.php?content=140967"
43 +SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-2+"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="libressl scim semantic-desktop"
48 +
49 +DEPEND="
50 + $(add_frameworks_dep karchive)
51 + $(add_frameworks_dep kconfig)
52 + $(add_frameworks_dep kconfigwidgets)
53 + $(add_frameworks_dep kcoreaddons)
54 + $(add_frameworks_dep kdbusaddons)
55 + $(add_frameworks_dep ki18n)
56 + $(add_frameworks_dep kiconthemes)
57 + $(add_frameworks_dep kio)
58 + $(add_frameworks_dep knewstuff)
59 + $(add_frameworks_dep knotifications)
60 + $(add_frameworks_dep kwidgetsaddons)
61 + $(add_frameworks_dep kwindowsystem)
62 + $(add_frameworks_dep kxmlgui)
63 + $(add_frameworks_dep plasma)
64 + app-i18n/ibus
65 + dev-libs/glib:2
66 + dev-qt/qtdbus:5
67 + dev-qt/qtgui:5
68 + dev-qt/qtwidgets:5
69 + dev-qt/qtx11extras:5
70 + media-libs/libpng:0=[apng]
71 + x11-libs/libX11
72 + !libressl? ( dev-libs/openssl:0= )
73 + libressl? ( dev-libs/libressl:= )
74 + scim? (
75 + >=app-i18n/scim-1.4.9
76 + dev-libs/dbus-c++
77 + )
78 + semantic-desktop? ( $(add_frameworks_dep kfilemetadata) )
79 +"
80 +RDEPEND="${DEPEND}
81 + !kde-misc/kimtoy:4
82 + >=app-i18n/fcitx-4.0
83 +"
84 +
85 +src_prepare() {
86 + kde5_src_prepare
87 +
88 + # bug 581736
89 + cmake_comment_add_subdirectory po
90 +}
91 +
92 +src_configure() {
93 + local mycmakeargs=(
94 + $(cmake-utils_use_find_package scim SCIM)
95 + $(cmake-utils_use_find_package scim DBusCXX)
96 + $(cmake-utils_use_find_package semantic-desktop KF5FileMetaData)
97 + )
98 +
99 + kde5_src_configure
100 +}
101 +
102 +S="${WORKDIR}/${PN}-${COMMIT}"