Gentoo Archives: gentoo-commits

From: Adam Feldman <np-hardass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-system-monitor/
Date: Wed, 02 Sep 2020 06:02:13
Message-Id: 1599026501.318dba73056302151bfe914e27b35aa8a17815fc.np-hardass@gentoo
1 commit: 318dba73056302151bfe914e27b35aa8a17815fc
2 Author: Oz N Tiram <oz.tiram <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 20 19:38:40 2020 +0000
4 Commit: Adam Feldman <np-hardass <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 06:01:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=318dba73
7
8 mate-extra/mate-system-monitor: drop 1.22.2
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Oz Tiram <oz.tiram <AT> gmail.com>
12 Signed-off-by: Adam Feldman <NP-Hardass <AT> gentoo.org>
13
14 mate-extra/mate-system-monitor/Manifest | 1 -
15 .../mate-system-monitor-1.22.2.ebuild | 62 ----------------------
16 2 files changed, 63 deletions(-)
17
18 diff --git a/mate-extra/mate-system-monitor/Manifest b/mate-extra/mate-system-monitor/Manifest
19 index 25edc1cb2ff..d286c453bd2 100644
20 --- a/mate-extra/mate-system-monitor/Manifest
21 +++ b/mate-extra/mate-system-monitor/Manifest
22 @@ -1,2 +1 @@
23 -DIST mate-system-monitor-1.22.2.tar.xz 2209852 BLAKE2B d5437596454e767cdbb32e7de062d5a9c6f55edce45f9439cfd555e9455f7cf935a4d15fcd8f19494feab1faae4e0ee07f469b6650d2da03372f9e2bea3ed8ac SHA512 47ccb38e27906c4de0cc18abc9d43ffc3b2c8f2f33b3f4cea3e47fd82c48870f03927fab39d323b61b9b871614b24bb2bc258d1c547650cdfb6b8eef65cb0de3
24 DIST mate-system-monitor-1.24.0.tar.xz 2437396 BLAKE2B 78c8774ee1832772b2cda06bca051c91e10e882b841373e3f30575ab1d05cc2b799962d964be4cc8416f9747e44031e579410d9851bb82d6a13f6023f1a30b2a SHA512 430a2bf81f447143ba53cecb1c2659903cd957e313f6690adea363e9a8deccfd4ad64ebd8ce18dfb31a67fa7b51cbe087ffed7b5dcba5dd03b1010ec41b4d282
25
26 diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.2.ebuild b/mate-extra/mate-system-monitor/mate-system-monitor-1.22.2.ebuild
27 deleted file mode 100644
28 index 07ef770ebdc..00000000000
29 --- a/mate-extra/mate-system-monitor/mate-system-monitor-1.22.2.ebuild
30 +++ /dev/null
31 @@ -1,62 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit mate
38 -
39 -if [[ ${PV} != 9999 ]]; then
40 - KEYWORDS="amd64 ~arm ~arm64 x86"
41 -fi
42 -
43 -DESCRIPTION="The MATE System Monitor"
44 -
45 -LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
46 -SLOT="0"
47 -IUSE="elogind systemd"
48 -
49 -REQUIRED_USE="?? ( elogind systemd )"
50 -
51 -COMMON_DEPEND="
52 - >=dev-cpp/glibmm-2.26:2
53 - >=dev-cpp/gtkmm-3.8:3.0
54 - >=dev-libs/glib-2.50:2
55 - dev-libs/libsigc++:2
56 - >=dev-libs/libxml2-2:2
57 - >=gnome-base/libgtop-2.23.1:2=
58 - >=gnome-base/librsvg-2.35:2
59 - x11-libs/cairo
60 - x11-libs/gdk-pixbuf:2
61 - >=x11-libs/gtk+-3.22:3
62 - >=x11-libs/libwnck-3.0:3
63 - virtual/libintl
64 - elogind? ( sys-auth/elogind )
65 - systemd? ( sys-apps/systemd )"
66 -
67 -RDEPEND="${COMMON_DEPEND}
68 - >=sys-auth/polkit-0.97:0"
69 -
70 -DEPEND="${COMMON_DEPEND}
71 - app-text/yelp-tools
72 - >=dev-util/intltool-0.50.1:*
73 - sys-devel/gettext:*
74 - >=sys-devel/autoconf-2.63:*
75 - virtual/pkgconfig:*"
76 -
77 -src_configure() {
78 - local myconf=()
79 -
80 - if use elogind || use systemd; then
81 - myconf+=( --enable-systemd )
82 - if use elogind; then
83 - myconf+=(
84 - SYSTEMD_CFLAGS=`pkg-config --cflags "libelogind" 2>/dev/null`
85 - SYSTEMD_LIBS=`pkg-config --libs "libelogind" 2>/dev/null`
86 - )
87 - fi
88 - else
89 - myconf+=( --disable-systemd )
90 - fi
91 -
92 - mate_src_configure "${myconf[@]}"
93 -}