Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-libnotify: ChangeLog pidgin-libnotify-0.14.ebuild
Date: Sun, 30 Jan 2011 09:04:23
Message-Id: 20110130090413.65B1820054@flycatcher.gentoo.org
1 ssuominen 11/01/30 09:04:13
2
3 Modified: ChangeLog pidgin-libnotify-0.14.ebuild
4 Log:
5 Fix building with x11-libs/libnotify >= 0.7.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 x11-plugins/pidgin-libnotify/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 22 Jul 2010 20:19:32 -0000 1.22
23 +++ ChangeLog 30 Jan 2011 09:04:13 -0000 1.23
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-plugins/pidgin-libnotify
26 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.22 2010/07/22 20:19:32 pva Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.23 2011/01/30 09:04:13 ssuominen Exp $
30 +
31 + 30 Jan 2011; Samuli Suominen <ssuominen@g.o>
32 + pidgin-libnotify-0.14.ebuild,
33 + +files/pidgin-libnotify-0.14-libnotify-0.7.patch:
34 + Fix building with x11-libs/libnotify >= 0.7.
35
36 22 Jul 2010; Peter Volkov <pva@g.o> pidgin-libnotify-0.14.ebuild:
37 Don't build static libs: for plugins they are useless, bug #327237, thank
38
39
40
41 1.8 x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild?rev=1.8&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild?rev=1.8&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild?r1=1.7&r2=1.8
46
47 Index: pidgin-libnotify-0.14.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild,v
50 retrieving revision 1.7
51 retrieving revision 1.8
52 diff -u -r1.7 -r1.8
53 --- pidgin-libnotify-0.14.ebuild 22 Jul 2010 20:19:32 -0000 1.7
54 +++ pidgin-libnotify-0.14.ebuild 30 Jan 2011 09:04:13 -0000 1.8
55 @@ -1,9 +1,8 @@
56 -# Copyright 1999-2010 Gentoo Foundation
57 +# Copyright 1999-2011 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild,v 1.7 2010/07/22 20:19:32 pva Exp $
60 -
61 -EAPI="2"
62 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild,v 1.8 2011/01/30 09:04:13 ssuominen Exp $
63
64 +EAPI=2
65 inherit eutils
66
67 DESCRIPTION="pidgin-libnotify provides popups for pidgin via a libnotify interface"
68 @@ -17,13 +16,14 @@
69
70 RDEPEND=">=x11-libs/libnotify-0.3.2
71 net-im/pidgin[gtk]
72 - >=x11-libs/gtk+-2"
73 -
74 + x11-libs/gtk+:2"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 src_prepare() {
79 - epatch "${FILESDIR}"/pidgin-libnotify-showbutton.patch
80 + epatch \
81 + "${FILESDIR}"/pidgin-libnotify-showbutton.patch \
82 + "${FILESDIR}"/${P}-libnotify-0.7.patch
83 }
84
85 src_configure() {
86 @@ -34,7 +34,7 @@
87 }
88
89 src_install() {
90 - emake install DESTDIR="${D}" || die "make install failed"
91 + emake install DESTDIR="${D}" || die
92 find "${D}" -name '*.la' -delete
93 - dodoc AUTHORS ChangeLog INSTALL NEWS README TODO VERSION || die
94 + dodoc AUTHORS ChangeLog NEWS README TODO VERSION || die
95 }