From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9082C139695 for ; Sun, 12 Feb 2017 23:35:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7610FE0CFD; Sun, 12 Feb 2017 23:35:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B2F9E0CC1 for ; Sun, 12 Feb 2017 23:35:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FAC83412F9 for ; Sun, 12 Feb 2017 23:35:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9CBF45C3 for ; Sun, 12 Feb 2017 23:35:37 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1486942521.eb063b6fd0705db524b5b7bbba25a3259049af85.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmudmount/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild X-VCS-Directories: x11-plugins/wmudmount/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: eb063b6fd0705db524b5b7bbba25a3259049af85 X-VCS-Branch: master Date: Sun, 12 Feb 2017 23:35:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d8763fde-ce8e-4513-9b6a-2a34669fbf22 X-Archives-Hash: 82a6528e27eff4ab3825a420f7270d18 commit: eb063b6fd0705db524b5b7bbba25a3259049af85 Author: Bernard Cafarelli gentoo org> AuthorDate: Sun Feb 12 23:29:43 2017 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sun Feb 12 23:35:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb063b6f x11-plugins/wmudmount: depend on virtual/imagemagick-tools Previous commit messed with stable version and last changes Bug 587870 Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild b/x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild new file mode 100644 index 0000000000..32e4f34064 --- /dev/null +++ b/x11-plugins/wmudmount/wmudmount-2.2-r2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils gnome2-utils xdg + +DESCRIPTION="A filesystem mounter that uses udisks to handle notification and mounting" +HOMEPAGE="https://sourceforge.net/projects/wmudmount/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnome-keyring libnotify" + +RDEPEND="sys-fs/udisks:2 + >=x11-libs/gtk+-3.8.0:3 + gnome-keyring? ( gnome-base/libgnome-keyring ) + libnotify? ( >=x11-libs/libnotify-0.7 )" +DEPEND="${RDEPEND} + virtual/pkgconfig + virtual/imagemagick-tools[png]" + +DOCS="ChangeLog" + +src_configure() { + econf \ + $(use_with libnotify) \ + $(use_with gnome-keyring) +} + +pkg_preinst() { gnome2_icon_savelist; } +pkg_postinst() { gnome2_icon_cache_update; } +pkg_postrm() { gnome2_icon_cache_update; }