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-plasma/kinfocenter/
Date: Wed, 16 Jan 2019 08:17:21
Message-Id: 1547626616.f170045d73115501bc07adf12e60214057d1a827.asturm@gentoo
1 commit: f170045d73115501bc07adf12e60214057d1a827
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 15 19:12:48 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 16 08:16:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f170045d
7
8 kde-plasma/kinfocenter: Drop 5.14.5 (r0)
9
10 Package-Manager: Portage-2.3.55, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 kde-plasma/kinfocenter/kinfocenter-5.14.5.ebuild | 100 -----------------------
14 1 file changed, 100 deletions(-)
15
16 diff --git a/kde-plasma/kinfocenter/kinfocenter-5.14.5.ebuild b/kde-plasma/kinfocenter/kinfocenter-5.14.5.ebuild
17 deleted file mode 100644
18 index 18e67662aa0..00000000000
19 --- a/kde-plasma/kinfocenter/kinfocenter-5.14.5.ebuild
20 +++ /dev/null
21 @@ -1,100 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -KDE_HANDBOOK="true"
28 -inherit kde5
29 -
30 -DESCRIPTION="Utility providing information about the computer hardware"
31 -HOMEPAGE="https://www.kde.org/applications/system/kinfocenter/"
32 -SRC_URI+=" https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png"
33 -KEYWORDS="~amd64 ~arm ~x86"
34 -IUSE="gles2 ieee1394 +opengl +pci wayland"
35 -
36 -REQUIRED_USE="wayland? ( || ( gles2 opengl ) )"
37 -
38 -COMMON_DEPEND="
39 - $(add_frameworks_dep kcmutils)
40 - $(add_frameworks_dep kcompletion)
41 - $(add_frameworks_dep kconfig)
42 - $(add_frameworks_dep kconfigwidgets)
43 - $(add_frameworks_dep kcoreaddons)
44 - $(add_frameworks_dep kcrash)
45 - $(add_frameworks_dep kdbusaddons)
46 - $(add_frameworks_dep kdeclarative)
47 - $(add_frameworks_dep ki18n)
48 - $(add_frameworks_dep kiconthemes)
49 - $(add_frameworks_dep kio)
50 - $(add_frameworks_dep kpackage)
51 - $(add_frameworks_dep kservice)
52 - $(add_frameworks_dep kwidgetsaddons)
53 - $(add_frameworks_dep kxmlgui)
54 - $(add_frameworks_dep solid)
55 - $(add_qt_dep qtdbus)
56 - $(add_qt_dep qtdeclarative)
57 - $(add_qt_dep qtgui)
58 - $(add_qt_dep qtwidgets)
59 - x11-libs/libX11
60 - ieee1394? ( sys-libs/libraw1394 )
61 - opengl? (
62 - $(add_qt_dep qtgui 'gles2=')
63 - media-libs/mesa[gles2?]
64 - !gles2? ( media-libs/glu )
65 - )
66 - pci? ( sys-apps/pciutils )
67 - wayland? (
68 - $(add_frameworks_dep kwayland)
69 - media-libs/mesa[egl]
70 - )
71 -"
72 -DEPEND="${COMMON_DEPEND}
73 - $(add_frameworks_dep plasma)
74 -"
75 -RDEPEND="${COMMON_DEPEND}
76 - $(add_plasma_dep kde-cli-tools)
77 - $(add_qt_dep qtquickcontrols)
78 - !kde-apps/kcontrol:4
79 - !kde-misc/about-distro
80 - !kde-plasma/kinfocenter:4
81 -"
82 -
83 -src_configure() {
84 - local mycmakeargs=(
85 - $(cmake-utils_use_find_package ieee1394 RAW1394)
86 - $(cmake-utils_use_find_package pci PCIUTILS)
87 - $(cmake-utils_use_find_package wayland EGL)
88 - $(cmake-utils_use_find_package wayland KF5Wayland)
89 - )
90 -
91 - if has_version "dev-qt/qtgui[gles2]"; then
92 - mycmakeargs+=( $(cmake-utils_use_find_package gles2 OpenGLES) )
93 - else
94 - mycmakeargs+=( $(cmake-utils_use_find_package opengl OpenGL) )
95 - fi
96 -
97 - kde5_src_configure
98 -}
99 -
100 -src_install() {
101 - kde5_src_install
102 -
103 - insinto /etc/xdg
104 - doins "${FILESDIR}"/kcm-about-distrorc
105 -
106 - insinto /usr/share/${PN}
107 - doins "${DISTDIR}"/glogo-small.png
108 -}
109 -
110 -pkg_postinst() {
111 - kde5_pkg_postinst
112 -
113 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
114 - if ! has_version "net-fs/nfs-utils"; then
115 - elog "Installing net-fs/nfs-utils will enable the NFS information module."
116 - fi
117 - if ! has_version "net-fs/samba"; then
118 - elog "Installing net-fs/samba will enable the Samba status information module."
119 - fi
120 - fi
121 -}