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-frameworks/plasma/
Date: Sat, 06 Feb 2021 21:41:02
Message-Id: 1612647482.8c1522173207697db71defbcdbea12eabc02a004.asturm@gentoo
1 commit: 8c1522173207697db71defbcdbea12eabc02a004
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 6 13:59:32 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 6 21:38:02 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8c152217
7
8 kde-frameworks/plasma: 5.79.0 version bump
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 kde-frameworks/plasma/plasma-5.79.0.ebuild | 74 ++++++++++++++++++++++++++++++
13 1 file changed, 74 insertions(+)
14
15 diff --git a/kde-frameworks/plasma/plasma-5.79.0.ebuild b/kde-frameworks/plasma/plasma-5.79.0.ebuild
16 new file mode 100644
17 index 0000000000..30849cdada
18 --- /dev/null
19 +++ b/kde-frameworks/plasma/plasma-5.79.0.ebuild
20 @@ -0,0 +1,74 @@
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="${PN}-framework"
27 +PVCUT=$(ver_cut 1-2)
28 +QTMIN=5.15.2
29 +VIRTUALX_REQUIRED="test"
30 +inherit ecm kde.org
31 +
32 +DESCRIPTION="Plasma framework"
33 +
34 +LICENSE="LGPL-2+"
35 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
36 +IUSE="gles2-only wayland X"
37 +
38 +RESTRICT+=" test"
39 +
40 +BDEPEND="
41 + >=kde-frameworks/kdoctools-${PVCUT}:5
42 +"
43 +RDEPEND="
44 + >=dev-qt/qtdbus-${QTMIN}:5
45 + >=dev-qt/qtdeclarative-${QTMIN}:5
46 + >=dev-qt/qtgui-${QTMIN}:5[gles2-only=]
47 + >=dev-qt/qtquickcontrols-${QTMIN}:5
48 + >=dev-qt/qtsql-${QTMIN}:5
49 + >=dev-qt/qtsvg-${QTMIN}:5
50 + >=dev-qt/qtwidgets-${QTMIN}:5
51 + =kde-frameworks/kactivities-${PVCUT}*:5
52 + =kde-frameworks/karchive-${PVCUT}*:5
53 + =kde-frameworks/kconfig-${PVCUT}*:5
54 + =kde-frameworks/kconfigwidgets-${PVCUT}*:5
55 + =kde-frameworks/kcoreaddons-${PVCUT}*:5
56 + =kde-frameworks/kdeclarative-${PVCUT}*:5
57 + =kde-frameworks/kglobalaccel-${PVCUT}*:5
58 + =kde-frameworks/kguiaddons-${PVCUT}*:5
59 + =kde-frameworks/ki18n-${PVCUT}*:5
60 + =kde-frameworks/kiconthemes-${PVCUT}*:5
61 + =kde-frameworks/kio-${PVCUT}*:5
62 + =kde-frameworks/kirigami-${PVCUT}*:5
63 + =kde-frameworks/knotifications-${PVCUT}*:5
64 + =kde-frameworks/kpackage-${PVCUT}*:5
65 + =kde-frameworks/kservice-${PVCUT}*:5
66 + =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
67 + =kde-frameworks/kwindowsystem-${PVCUT}*:5
68 + =kde-frameworks/kxmlgui-${PVCUT}*:5
69 + !gles2-only? ( virtual/opengl )
70 + wayland? (
71 + =kde-frameworks/kwayland-${PVCUT}*:5
72 + media-libs/mesa[egl]
73 + )
74 + X? (
75 + >=dev-qt/qtx11extras-${QTMIN}:5
76 + x11-libs/libX11
77 + x11-libs/libxcb
78 + )
79 +"
80 +DEPEND="${RDEPEND}
81 + X? ( x11-base/xorg-proto )
82 +"
83 +
84 +src_configure() {
85 + local mycmakeargs=(
86 + $(cmake_use_find_package !gles2-only OpenGL)
87 + $(cmake_use_find_package wayland EGL)
88 + $(cmake_use_find_package wayland KF5Wayland)
89 + $(cmake_use_find_package X X11)
90 + $(cmake_use_find_package X XCB)
91 + )
92 +
93 + ecm_src_configure
94 +}