Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-cpugraph-plugin/
Date: Tue, 03 Apr 2018 23:53:10
Message-Id: 1522799579.6caf4bdf25cda641174efd171a8d1033e98ea15f.calchan@gentoo
1 commit: 6caf4bdf25cda641174efd171a8d1033e98ea15f
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 3 23:49:23 2018 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 3 23:52:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6caf4bdf
7
8 xfce4-cpugraph-plugin: remove obsolete xfconf.eclass, migrate to EAPI6
9
10 .../xfce4-cpugraph-plugin-1.0.5-r1.ebuild | 35 ++++++++++++++++++++++
11 1 file changed, 35 insertions(+)
12
13 diff --git a/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r1.ebuild b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r1.ebuild
14 new file mode 100644
15 index 00000000000..68b09902c87
16 --- /dev/null
17 +++ b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.5-r1.ebuild
18 @@ -0,0 +1,35 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +inherit gnome2-utils
25 +
26 +DESCRIPTION="A system load plug-in for the Xfce panel"
27 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin"
28 +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
29 +
30 +LICENSE="BSD-2 GPL-2"
31 +SLOT="0"
32 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
33 +
34 +RDEPEND=">=x11-libs/gtk+-2.12:2
35 + >=xfce-base/libxfce4ui-4.8
36 + >=xfce-base/xfce4-panel-4.8"
37 +DEPEND="${RDEPEND}
38 + dev-util/intltool
39 + sys-devel/gettext
40 + virtual/pkgconfig"
41 +
42 +src_install() {
43 + default
44 + find "${ED}" -name '*.la' -delete || die
45 +}
46 +
47 +pkg_postinst() {
48 + gnome2_icon_cache_update
49 +}
50 +
51 +pkg_postrm() {
52 + gnome2_icon_cache_update
53 +}