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-eyes-plugin/
Date: Sun, 08 Apr 2018 08:51:19
Message-Id: 1523177471.d45b6a2268f129f2892c9ea96459486a09c95f97.mgorny@gentoo
1 commit: d45b6a2268f129f2892c9ea96459486a09c95f97
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 8 08:50:32 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 8 08:51:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d45b6a22
7
8 xfce-extra/xfce4-eyes-plugin: Port to EAPI=6
9
10 .../xfce4-eyes-plugin-4.4.5-r1.ebuild | 27 ++++++++++++++++++++++
11 1 file changed, 27 insertions(+)
12
13 diff --git a/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r1.ebuild b/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r1.ebuild
14 new file mode 100644
15 index 00000000000..d4dfa5f9ec1
16 --- /dev/null
17 +++ b/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.5-r1.ebuild
18 @@ -0,0 +1,27 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +DESCRIPTION="A panel plug-in which adds classic eyes to your every step"
25 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-eyes-plugin"
26 +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
27 +
28 +LICENSE="GPL-2"
29 +SLOT="0"
30 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
31 +IUSE=""
32 +
33 +RDEPEND=">=dev-libs/glib-2.20
34 + >=x11-libs/gtk+-2.14:2
35 + >=xfce-base/libxfce4ui-4.10:=
36 + >=xfce-base/libxfce4util-4.10:=
37 + >=xfce-base/xfce4-panel-4.10:="
38 +DEPEND="${RDEPEND}
39 + dev-util/intltool
40 + virtual/pkgconfig"
41 +
42 +src_install() {
43 + default
44 + find "${D}" -name '*.la' -delete || die
45 +}