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-misc/notification-daemon: ChangeLog notification-daemon-0.5.0.ebuild
Date: Sat, 05 Feb 2011 10:48:28
Message-Id: 20110205104818.3CA4D20054@flycatcher.gentoo.org
1 ssuominen 11/02/05 10:48:18
2
3 Modified: ChangeLog notification-daemon-0.5.0.ebuild
4 Log:
5 Fix compability 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.73 x11-misc/notification-daemon/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/notification-daemon/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/notification-daemon/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/notification-daemon/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 24 Jan 2011 23:22:25 -0000 1.72
23 +++ ChangeLog 5 Feb 2011 10:48:18 -0000 1.73
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/notification-daemon
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.72 2011/01/24 23:22:25 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/ChangeLog,v 1.73 2011/02/05 10:48:18 ssuominen Exp $
29 +
30 + 05 Feb 2011; Samuli Suominen <ssuominen@g.o>
31 + notification-daemon-0.5.0.ebuild,
32 + +files/notification-daemon-0.5.0-libnotify-0.7.patch:
33 + Fix compability with x11-libs/libnotify >= 0.7.
34
35 *notification-daemon-0.5.0 (24 Jan 2011)
36
37
38
39
40 1.2 x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild?r1=1.1&r2=1.2
45
46 Index: notification-daemon-0.5.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- notification-daemon-0.5.0.ebuild 24 Jan 2011 23:22:25 -0000 1.1
53 +++ notification-daemon-0.5.0.ebuild 5 Feb 2011 10:48:18 -0000 1.2
54 @@ -1,13 +1,12 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild,v 1.1 2011/01/24 23:22:25 eva Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/notification-daemon/notification-daemon-0.5.0.ebuild,v 1.2 2011/02/05 10:48:18 ssuominen Exp $
59
60 -EAPI="3"
61 -GCONF_DEBUG="no"
62 +EAPI=3
63 +GCONF_DEBUG=no
64 +inherit eutils gnome2
65
66 -inherit gnome2
67 -
68 -DESCRIPTION="Notifications daemon"
69 +DESCRIPTION="Notification daemon"
70 HOMEPAGE="http://www.galago-project.org/"
71
72 LICENSE="GPL-2"
73 @@ -35,7 +34,12 @@
74 G2CONF="${G2CONF} --disable-static"
75 }
76
77 +src_prepare() {
78 + epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
79 + gnome2_src_prepare
80 +}
81 +
82 src_install() {
83 gnome2_src_install
84 - find "${ED}" -name "*.la" -delete || die "la files removal failed"
85 + find "${ED}" -name "*.la" -delete
86 }