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-places-plugin/
Date: Tue, 09 Apr 2019 14:33:41
Message-Id: 1554820404.e0c3af9f0d0fd5bd0a3757b43fec0d14cc5081ee.mgorny@gentoo
1 commit: e0c3af9f0d0fd5bd0a3757b43fec0d14cc5081ee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 9 14:28:19 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 14:33:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0c3af9f
7
8 xfce-extra/xfce4-places-plugin: Bump to EAPI 7, port off xfconf
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../xfce4-places-plugin-1.7.0-r1.ebuild | 40 ++++++++++++++++++++++
13 1 file changed, 40 insertions(+)
14
15 diff --git a/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild
16 new file mode 100644
17 index 00000000000..7a8330de60d
18 --- /dev/null
19 +++ b/xfce-extra/xfce4-places-plugin/xfce4-places-plugin-1.7.0-r1.ebuild
20 @@ -0,0 +1,40 @@
21 +# Copyright 1999-2019 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +DESCRIPTION="A panel plug-in to provide quick access to files, folders and removable media"
27 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin"
28 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
29 +
30 +LICENSE="GPL-2+"
31 +SLOT="0"
32 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
33 +IUSE="libnotify"
34 +
35 +RDEPEND=">=dev-libs/glib-2.28:2
36 + >=x11-libs/gtk+-2.20:2
37 + x11-libs/libX11:=
38 + >=xfce-base/exo-0.6:=
39 + >=xfce-base/libxfce4ui-4.8:=
40 + >=xfce-base/libxfce4util-4.8:=
41 + >=xfce-base/xfce4-panel-4.8:=
42 + >=xfce-base/xfconf-4.8:=
43 + libnotify? ( >=x11-libs/libnotify-0.7:= )"
44 +DEPEND="${RDEPEND}
45 + dev-util/intltool
46 + sys-devel/gettext
47 + virtual/pkgconfig"
48 +
49 +src_configure() {
50 + local myconf=(
51 + $(use_enable libnotify notifications)
52 + )
53 +
54 + econf "${myconf[@]}"
55 +}
56 +
57 +src_install() {
58 + default
59 + find "${D}" -name '*.la' -delete || die
60 +}