diff options
author | Olivier Crête <tester@gentoo.org> | 2007-10-26 01:46:24 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2007-10-26 01:46:24 +0000 |
commit | 2f109b466d11fc94b5cf8c0a413c0ab425dcd1d9 (patch) | |
tree | 8d2fa190f56f945f8f662720d6f44a535670baa1 /x11-plugins | |
parent | Version bump for security bug #197006 (diff) | |
download | gentoo-2-2f109b466d11fc94b5cf8c0a413c0ab425dcd1d9.tar.gz gentoo-2-2f109b466d11fc94b5cf8c0a413c0ab425dcd1d9.tar.bz2 gentoo-2-2f109b466d11fc94b5cf8c0a413c0ab425dcd1d9.zip |
Add patch to fix the show button in the bubble, bug #188325
(Portage version: 2.1.3.9)
Diffstat (limited to 'x11-plugins')
4 files changed, 62 insertions, 1 deletions
diff --git a/x11-plugins/pidgin-libnotify/ChangeLog b/x11-plugins/pidgin-libnotify/ChangeLog index ed35b87f61e8..fdc5536b3498 100644 --- a/x11-plugins/pidgin-libnotify/ChangeLog +++ b/x11-plugins/pidgin-libnotify/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-plugins/pidgin-libnotify # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.6 2007/08/28 16:24:05 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.7 2007/10/26 01:46:23 tester Exp $ + +*pidgin-libnotify-0.13-r1 (26 Oct 2007) + + 26 Oct 2007; Olivier Crête <tester@gentoo.org> + +files/pidgin-libnotify-showbutton.patch, + +pidgin-libnotify-0.13-r1.ebuild: + Add patch to fix the show button in the bubble, bug #188325 28 Aug 2007; nixnut <nixnut@gentoo.org> pidgin-libnotify-0.13.ebuild: Stable on ppc wrt bug 189781 diff --git a/x11-plugins/pidgin-libnotify/files/digest-pidgin-libnotify-0.13-r1 b/x11-plugins/pidgin-libnotify/files/digest-pidgin-libnotify-0.13-r1 new file mode 100644 index 000000000000..da77c3354843 --- /dev/null +++ b/x11-plugins/pidgin-libnotify/files/digest-pidgin-libnotify-0.13-r1 @@ -0,0 +1,3 @@ +MD5 cb71adcb3aa116b6480281e211e61fda pidgin-libnotify-0.13.tar.gz 356042 +RMD160 75b8fdd37a1f9bc997dc9ed6c03e2038a6a19360 pidgin-libnotify-0.13.tar.gz 356042 +SHA256 2a2aa46f23fac202bb23c2a7bb297576e8e43a0dac7ca67cf5363eb489d24593 pidgin-libnotify-0.13.tar.gz 356042 diff --git a/x11-plugins/pidgin-libnotify/files/pidgin-libnotify-showbutton.patch b/x11-plugins/pidgin-libnotify/files/pidgin-libnotify-showbutton.patch new file mode 100644 index 000000000000..1f84e6025557 --- /dev/null +++ b/x11-plugins/pidgin-libnotify/files/pidgin-libnotify-showbutton.patch @@ -0,0 +1,10 @@ +--- src/pidgin-libnotify.c.orig 2007-10-01 20:52:38.000000000 +1000 ++++ src/pidgin-libnotify.c 2007-10-01 20:53:20.000000000 +1000 +@@ -307,6 +307,7 @@ + g_hash_table_insert (buddy_hash, contact, notification); + + g_object_set_data (G_OBJECT(notification), "contact", contact); ++ g_object_set_data (G_OBJECT(notification), "buddy", buddy); + + g_signal_connect (notification, "closed", G_CALLBACK(closed_cb), NULL); + diff --git a/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild b/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild new file mode 100644 index 000000000000..e924cedff19e --- /dev/null +++ b/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild,v 1.1 2007/10/26 01:46:23 tester Exp $ + + +inherit eutils + +DESCRIPTION="pidgin-libnotify provides popups for pidgin via a libnotify interface" +HOMEPAGE="http://gaim-libnotify.sourceforge.net/" +SRC_URI="mirror://sourceforge/gaim-libnotify/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="nls debug" + +DEPEND=">=x11-libs/libnotify-0.3.2" + +RDEPEND="net-im/pidgin ${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/pidgin-libnotify-showbutton.patch +} + +src_compile() { + local myconf + + myconf="$(use_enable debug) \ + $(use_enable nls)" + + econf ${myconf} || die "configure failed" + + emake || die "make failed" +} + +src_install() { + make install DESTDIR=${D} || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO VERSION +} |