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-plasma/xembed-sni-proxy/
Date: Fri, 14 May 2021 20:42:08
Message-Id: 1621024733.e5a6e31921e654ef11b622490670df311bd734a6.asturm@gentoo
1 commit: e5a6e31921e654ef11b622490670df311bd734a6
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 20:32:29 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 20:38:53 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e5a6e319
7
8 kde-plasma/xembed-sni-proxy: 5.21.90 version bump
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 .../xembed-sni-proxy-5.21.90.ebuild | 43 ++++++++++++++++++++++
13 1 file changed, 43 insertions(+)
14
15 diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.21.90.ebuild b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.21.90.ebuild
16 new file mode 100644
17 index 0000000000..7049a2e964
18 --- /dev/null
19 +++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.21.90.ebuild
20 @@ -0,0 +1,43 @@
21 +# Copyright 1999-2021 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +KDE_ORG_NAME="plasma-workspace"
27 +KFMIN=5.82.0
28 +PVCUT=$(ver_cut 1-3)
29 +QTMIN=5.15.2
30 +inherit cmake kde.org
31 +
32 +DESCRIPTION="Legacy xembed tray icons support for SNI-only system trays"
33 +HOMEPAGE="https://invent.kde.org/plasma/plasma-workspace/-/blob/master/xembed-sni-proxy/Readme.md"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="5"
37 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
38 +
39 +DEPEND="
40 + >=dev-qt/qtcore-${QTMIN}:5
41 + >=dev-qt/qtdbus-${QTMIN}:5
42 + >=dev-qt/qtgui-${QTMIN}:5
43 + >=dev-qt/qtx11extras-${QTMIN}:5
44 + >=kde-frameworks/extra-cmake-modules-${KFMIN}:5
45 + >=kde-frameworks/kwindowsystem-${KFMIN}:5[X]
46 + x11-libs/libxcb
47 + x11-libs/libXtst
48 + x11-libs/xcb-util-image
49 +"
50 +RDEPEND="${DEPEND}
51 + !kde-plasma/xembed-sni-proxy:0
52 +"
53 +
54 +S="${S}/${PN}"
55 +
56 +PATCHES=( "${FILESDIR}/${PN}-5.20.80-standalone.patch" )
57 +
58 +src_prepare() {
59 + cmake_src_prepare
60 +
61 + sed -e "/set/s/GENTOO_PV/$(ver_cut 1-3)/" \
62 + -i CMakeLists.txt || die "Failed to prepare CMakeLists.txt"
63 +}