diff options
author | obache <obache@pkgsrc.org> | 2013-08-15 08:04:29 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2013-08-15 08:04:29 +0000 |
commit | 0145be42a072521386bacb47794c9bb36c82999a (patch) | |
tree | dada6af237ac7225aa1dd521ca1cd3d0ba7ec38f | |
parent | f38e203a2114c3e84da584e194567f018624dd6e (diff) | |
download | pkgsrc-0145be42a072521386bacb47794c9bb36c82999a.tar.gz |
Switch to use libnotify07.
Bump PKGREVISION.
-rw-r--r-- | audio/rhythmbox/Makefile | 6 | ||||
-rw-r--r-- | audio/rhythmbox/distinfo | 3 | ||||
-rw-r--r-- | audio/rhythmbox/patches/patch-plugins_status-icon_rb-status-icon-plugin.c | 15 |
3 files changed, 20 insertions, 4 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile index 44cf8044054..fa2cf74e3db 100644 --- a/audio/rhythmbox/Makefile +++ b/audio/rhythmbox/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.109 2013/06/06 12:54:05 wiz Exp $ +# $NetBSD: Makefile,v 1.110 2013/08/15 08:04:29 obache Exp $ # DISTNAME= rhythmbox-0.12.8 -PKGREVISION= 28 +PKGREVISION= 29 CATEGORIES= audio gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/rhythmbox/0.12/} EXTRACT_SUFX= .tar.bz2 @@ -40,7 +40,7 @@ GCONF_SCHEMAS= rhythmbox.schemas .include "../../sysutils/dbus-glib/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../sysutils/brasero/buildlink3.mk" -.include "../../sysutils/libnotify/buildlink3.mk" +.include "../../sysutils/libnotify07/buildlink3.mk" .include "../../textproc/gnome-doc-utils/buildlink3.mk" .include "../../textproc/libplist/buildlink3.mk" .include "../../mk/omf-scrollkeeper.mk" diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo index fd94a1f806f..ecfe67c9bee 100644 --- a/audio/rhythmbox/distinfo +++ b/audio/rhythmbox/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.37 2012/10/17 13:52:03 drochner Exp $ +$NetBSD: distinfo,v 1.38 2013/08/15 08:04:29 obache Exp $ SHA1 (rhythmbox-0.12.8.tar.bz2) = 5d27923cc29b81d7bfbc73d867d7976a5295f964 RMD160 (rhythmbox-0.12.8.tar.bz2) = 072d4fa06408ebc181b40147db1575d0ef4c99fe @@ -9,3 +9,4 @@ SHA1 (patch-ae) = 95bc80c0b6e760613f2e1ad715e05de7b45af0bb SHA1 (patch-af) = 8babe8d7e5912f0fbd3a12d0c39dfecf75fef4af SHA1 (patch-ag) = de1b458b7a8510f9aded9763947e878597e28b43 SHA1 (patch-ah) = 2cbaa1c2ed1637b269269a4c8828ebc8d5c8421d +SHA1 (patch-plugins_status-icon_rb-status-icon-plugin.c) = 2b2e32dadacb5412806df01af068882cc799e7db diff --git a/audio/rhythmbox/patches/patch-plugins_status-icon_rb-status-icon-plugin.c b/audio/rhythmbox/patches/patch-plugins_status-icon_rb-status-icon-plugin.c new file mode 100644 index 00000000000..2327cc915ab --- /dev/null +++ b/audio/rhythmbox/patches/patch-plugins_status-icon_rb-status-icon-plugin.c @@ -0,0 +1,15 @@ +$NetBSD: patch-plugins_status-icon_rb-status-icon-plugin.c,v 1.1 2013/08/15 08:04:29 obache Exp $ + +* for libnotify-0.7 API change + +--- plugins/status-icon/rb-status-icon-plugin.c.orig 2010-03-25 00:10:13.000000000 +0000 ++++ plugins/status-icon/rb-status-icon-plugin.c +@@ -394,7 +394,7 @@ do_notify (RBStatusIconPlugin *plugin, + icon_name = NULL; + + if (plugin->priv->notification == NULL) { +- plugin->priv->notification = notify_notification_new (primary, secondary, icon_name, NULL); ++ plugin->priv->notification = notify_notification_new (primary, secondary, icon_name); + + g_signal_connect_object (plugin->priv->notification, + "closed", |