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: Sun, 12 Feb 2017 23:35:41
Message-Id: 1486942521.eb063b6fd0705db524b5b7bbba25a3259049af85.voyageur@gentoo
1 commit: eb063b6fd0705db524b5b7bbba25a3259049af85
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 12 23:29:43 2017 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 23:35:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb063b6f
7
8 x11-plugins/wmudmount: depend on virtual/imagemagick-tools
9
10 Previous commit messed with stable version and last changes
11 Bug 587870
12
13 Package-Manager: Portage-2.3.3, Repoman-2.3.1
14
15 x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild | 35 +++++++++++++++++++++++++++
16 1 file changed, 35 insertions(+)
17
18 diff --git a/x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild b/x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild
19 new file mode 100644
20 index 0000000000..32e4f34064
21 --- /dev/null
22 +++ b/x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild
23 @@ -0,0 +1,35 @@
24 +# Copyright 1999-2017 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="https://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 + virtual/imagemagick-tools[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; }