Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmudmount/
Date: Tue, 05 Jul 2016 13:18:20
Message-Id: 1467724669.de05dc37029c7ca63eb69809f730a7caffc9fd4d.voyageur@gentoo
1 commit: de05dc37029c7ca63eb69809f730a7caffc9fd4d
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 5 13:16:32 2016 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 5 13:17:49 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de05dc37
7
8 x11-plugins/wmudmount: fix xdg sandbox issue, bug #587870
9
10 Reported by Toralf Förster <toralf.foerster <AT> gmx.de>
11 Also bump EAPI
12
13 Package-Manager: portage-2.3.0
14
15 x11-plugins/wmudmount/wmudmount-2.2-r1.ebuild | 35 +++++++++++++++++++++++++++
16 1 file changed, 35 insertions(+)
17
18 diff --git a/x11-plugins/wmudmount/wmudmount-2.2-r1.ebuild b/x11-plugins/wmudmount/wmudmount-2.2-r1.ebuild
19 new file mode 100644
20 index 0000000..9e2f5e8
21 --- /dev/null
22 +++ b/x11-plugins/wmudmount/wmudmount-2.2-r1.ebuild
23 @@ -0,0 +1,35 @@
24 +# Copyright 1999-2016 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +# $Id$
27 +
28 +EAPI=6
29 +inherit eutils gnome2-utils xdg
30 +
31 +DESCRIPTION="A filesystem mounter that uses udisks to handle notification and mounting"
32 +HOMEPAGE="http://sourceforge.net/projects/wmudmount/"
33 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE="gnome-keyring libnotify"
39 +
40 +RDEPEND="sys-fs/udisks:2
41 + >=x11-libs/gtk+-3.8.0:3
42 + gnome-keyring? ( gnome-base/libgnome-keyring )
43 + libnotify? ( >=x11-libs/libnotify-0.7 )"
44 +DEPEND="${RDEPEND}
45 + virtual/pkgconfig
46 + || ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[imagemagick,png] )"
47 +
48 +DOCS="ChangeLog"
49 +
50 +src_configure() {
51 + econf \
52 + $(use_with libnotify) \
53 + $(use_with gnome-keyring)
54 +}
55 +
56 +pkg_preinst() { gnome2_icon_savelist; }
57 +pkg_postinst() { gnome2_icon_cache_update; }
58 +pkg_postrm() { gnome2_icon_cache_update; }