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/thunar-volman/
Date: Mon, 11 Dec 2017 13:42:42
Message-Id: 1512999750.ba86e631489437739bdb6303d6f37fc91ea4ae8b.calchan@gentoo
1 commit: ba86e631489437739bdb6303d6f37fc91ea4ae8b
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 11 13:42:02 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 11 13:42:30 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba86e631
7
8 xfce-extra/thunar-volman: remove obsolete xfconf.eclass, migrate to EAPI6
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 .../thunar-volman/thunar-volman-0.8.1-r1.ebuild | 48 ++++++++++++++++++++++
13 1 file changed, 48 insertions(+)
14
15 diff --git a/xfce-extra/thunar-volman/thunar-volman-0.8.1-r1.ebuild b/xfce-extra/thunar-volman/thunar-volman-0.8.1-r1.ebuild
16 new file mode 100644
17 index 00000000000..ec545aa032d
18 --- /dev/null
19 +++ b/xfce-extra/thunar-volman/thunar-volman-0.8.1-r1.ebuild
20 @@ -0,0 +1,48 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit gnome2-utils
27 +
28 +DESCRIPTION="Daemon that enforces volume-related policies"
29 +HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-volman"
30 +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
35 +IUSE="libnotify"
36 +
37 +COMMON_DEPEND=">=dev-libs/glib-2.30
38 + virtual/libgudev:=
39 + >=x11-libs/gtk+-2.24:2
40 + >=xfce-base/exo-0.10
41 + >=xfce-base/libxfce4ui-4.10
42 + >=xfce-base/libxfce4util-4.10
43 + >=xfce-base/xfconf-4.10
44 + libnotify? ( >=x11-libs/libnotify-0.7 )"
45 +RDEPEND="${COMMON_DEPEND}
46 + virtual/udev
47 + >=xfce-base/thunar-1.6[udisks]"
48 +DEPEND="${COMMON_DEPEND}
49 + dev-util/intltool
50 + sys-devel/gettext
51 + virtual/pkgconfig"
52 +
53 +DOCS=( AUTHORS ChangeLog NEWS README THANKS )
54 +
55 +src_configure() {
56 + local myconf=(
57 + $(use_enable libnotify notifications)
58 + )
59 + econf "${myconf[@]}"
60 +}
61 +
62 +pkg_postinst() {
63 + gnome2_icon_cache_update
64 +}
65 +
66 +pkg_postrm() {
67 + gnome2_icon_cache_update
68 +}