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-time-out-plugin/
Date: Tue, 09 Apr 2019 16:09:17
Message-Id: 1554826141.3316c659c06e959e5fa121715c61ccab3a603e02.mgorny@gentoo
1 commit: 3316c659c06e959e5fa121715c61ccab3a603e02
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 9 14:54:05 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 16:09:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3316c659
7
8 xfce-extra/xfce4-time-out-plugin: Port to EAPI 7, off xfconf
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../xfce4-time-out-plugin-1.0.2-r1.ebuild | 33 ++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild
16 new file mode 100644
17 index 00000000000..6bb08dc9c8c
18 --- /dev/null
19 +++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.0.2-r1.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2019 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit xdg-utils
27 +
28 +DESCRIPTION="A panel plug-in to take periodical breaks from the computer"
29 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-time-out-plugin"
30 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2+"
33 +SLOT="0"
34 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
35 +IUSE=""
36 +
37 +RDEPEND="x11-libs/gtk+:2
38 + x11-libs/libX11:=
39 + >=xfce-base/libxfce4ui-4.8:=
40 + >=xfce-base/libxfce4util-4.8:=
41 + >=xfce-base/xfce4-panel-4.8:="
42 +DEPEND="${RDEPEND}
43 + dev-util/intltool
44 + virtual/pkgconfig"
45 +
46 +src_install() {
47 + default
48 + find "${D}" -name '*.la' -delete || die
49 +}
50 +
51 +pkg_postinst() {
52 + xdg_icon_cache_update
53 +}