diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-07-06 08:32:14 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-07-06 08:32:14 +0000 |
commit | 9bdd2f2527646aa6f6c9a7d0d67e3fe3bed59b37 (patch) | |
tree | 3f51f63be6ba1c65194aa9a5b977657e3b293fec /x11-plugins/wmudmount | |
parent | amd64/x86 stable (diff) | |
download | gentoo-2-9bdd2f2527646aa6f6c9a7d0d67e3fe3bed59b37.tar.gz gentoo-2-9bdd2f2527646aa6f6c9a7d0d67e3fe3bed59b37.tar.bz2 gentoo-2-9bdd2f2527646aa6f6c9a7d0d67e3fe3bed59b37.zip |
old
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins/wmudmount')
-rw-r--r-- | x11-plugins/wmudmount/ChangeLog | 6 | ||||
-rw-r--r-- | x11-plugins/wmudmount/files/wmudmount-1.8-libnotify-0.7.patch | 16 | ||||
-rw-r--r-- | x11-plugins/wmudmount/wmudmount-1.8.ebuild | 54 |
3 files changed, 5 insertions, 71 deletions
diff --git a/x11-plugins/wmudmount/ChangeLog b/x11-plugins/wmudmount/ChangeLog index d307d80f5e2a..e0d76d82f8f0 100644 --- a/x11-plugins/wmudmount/ChangeLog +++ b/x11-plugins/wmudmount/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-plugins/wmudmount # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmudmount/ChangeLog,v 1.12 2012/07/06 08:22:32 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmudmount/ChangeLog,v 1.13 2012/07/06 08:32:12 ssuominen Exp $ + + 06 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> -wmudmount-1.8.ebuild, + -files/wmudmount-1.8-libnotify-0.7.patch: + old 06 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> wmudmount-1.11.ebuild: amd64/x86 stable diff --git a/x11-plugins/wmudmount/files/wmudmount-1.8-libnotify-0.7.patch b/x11-plugins/wmudmount/files/wmudmount-1.8-libnotify-0.7.patch deleted file mode 100644 index eaae8604d7ce..000000000000 --- a/x11-plugins/wmudmount/files/wmudmount-1.8-libnotify-0.7.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- notify.c -+++ notify.c -@@ -58,7 +58,12 @@ - } else if(G_IS_FILE_ICON(icon)){ - icon_name = g_icon_to_string(icon); - } -- NotifyNotification *n = notify_notification_new(summary, body, icon_name, NULL); -+ NotifyNotification *n = notify_notification_new(summary, body, icon_name -+#ifdef HAVE_LIBNOTIFY_07 -+ ); -+#else -+ , NULL); -+#endif - GError *err = NULL; - if(!notify_notification_show(n, &err)){ - warn(DEBUG_ERROR, "Failed to show notification \"%s\" \"%s\": %s", summary, body, err?err->message:"<unknown error>"); diff --git a/x11-plugins/wmudmount/wmudmount-1.8.ebuild b/x11-plugins/wmudmount/wmudmount-1.8.ebuild deleted file mode 100644 index 4e3a8817f88c..000000000000 --- a/x11-plugins/wmudmount/wmudmount-1.8.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmudmount/wmudmount-1.8.ebuild,v 1.5 2012/05/05 05:12:01 jdhore Exp $ - -EAPI=2 -inherit flag-o-matic gnome2-utils - -DESCRIPTION="A filesystem mounter that uses udisks to handle notification and mounting" -HOMEPAGE="http://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=">=x11-libs/gtk+-2.18:2 - dev-libs/dbus-glib - sys-fs/udisks:0 - gnome-keyring? ( gnome-base/libgnome-keyring ) - libnotify? ( x11-libs/libnotify )" -DEPEND="${RDEPEND} - virtual/pkgconfig - || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )" - -src_prepare() { - epatch "${FILESDIR}"/${P}-libnotify-0.7.patch -} - -src_configure() { - has_version ">=x11-libs/libnotify-0.7" && append-cppflags -DHAVE_LIBNOTIFY_07 - - econf \ - --disable-dependency-tracking \ - $(use_with libnotify) \ - $(use_with gnome-keyring) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc ChangeLog -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |