Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-cpugraph-plugin/
Date: Wed, 29 May 2019 12:38:18
Message-Id: 1559133483.d0dcef50742c87e99c35e54987fded837d514537.mgorny@gentoo
1 commit: d0dcef50742c87e99c35e54987fded837d514537
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 29 12:04:08 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 29 12:38:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0dcef50
7
8 xfce-extra/xfce4-cpugraph-plugin: Bump to 1.0.90 (GTK+3 port)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-cpugraph-plugin/Manifest | 1 +
13 .../xfce4-cpugraph-plugin-1.0.90.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-cpugraph-plugin/Manifest b/xfce-extra/xfce4-cpugraph-plugin/Manifest
17 index 48b7988fce7..99230cd3b0d 100644
18 --- a/xfce-extra/xfce4-cpugraph-plugin/Manifest
19 +++ b/xfce-extra/xfce4-cpugraph-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-cpugraph-plugin-1.0.5.tar.bz2 328972 BLAKE2B 7c39aa6fd9d0d6ecc5bedce1d99d330765c329d1fa673b61282fdea654ebd997caa118f57dd0776008584eaa2dbe0a6ae7df532ed3b941b03b111f5ae753d2e8 SHA512 3d1246958dd30638104f14a8b0078e25c05b67b42da953a97cb51d2b04e70d3f1da9d42ca4f4575b7114bce5abc4cb94d598737631536c0575b55d9a391e210a
22 +DIST xfce4-cpugraph-plugin-1.0.90.tar.bz2 386127 BLAKE2B ec1809f64fa2fc142aa6efec315e2c138b7b49261ecce4735cc0dce225c24c69013f4b2a4250dcdf1513029765d81cb757e0bb38ebb3bd024b5b07fe2e0475d0 SHA512 7f2be5b41948ba4c730e6fd58038e96044ef8d007ae55f107a434308bfffc99071706c92854e41a589a807913fb98b9b216c141fc1d37c744275d5a3944aee09
23
24 diff --git a/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.90.ebuild b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.90.ebuild
25 new file mode 100644
26 index 00000000000..684e97eec64
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.90.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="A system load plug-in for the Xfce panel"
38 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="BSD-2 GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
44 +
45 +RDEPEND=">=x11-libs/gtk+-3.22:3
46 + >=xfce-base/libxfce4ui-4.12:=
47 + >=xfce-base/xfce4-panel-4.12:="
48 +DEPEND="${RDEPEND}
49 + dev-util/intltool
50 + sys-devel/gettext
51 + virtual/pkgconfig"
52 +
53 +src_install() {
54 + default
55 + find "${ED}" -name '*.la' -delete || die
56 +}
57 +
58 +pkg_postinst() {
59 + xdg_icon_cache_update
60 +}
61 +
62 +pkg_postrm() {
63 + xdg_icon_cache_update
64 +}