Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/nm-applet: ChangeLog nm-applet-0.8.2.ebuild
Date: Sat, 05 Feb 2011 12:20:22
Message-Id: 20110205122011.01CB820054@flycatcher.gentoo.org
1 ssuominen 11/02/05 12:20:10
2
3 Modified: ChangeLog nm-applet-0.8.2.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.58 gnome-extra/nm-applet/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/nm-applet/ChangeLog?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/nm-applet/ChangeLog?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/nm-applet/ChangeLog?r1=1.57&r2=1.58
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- ChangeLog 26 Jan 2011 15:50:10 -0000 1.57
23 +++ ChangeLog 5 Feb 2011 12:20:10 -0000 1.58
24 @@ -1,6 +1,10 @@
25 # ChangeLog for gnome-extra/nm-applet
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v 1.57 2011/01/26 15:50:10 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/ChangeLog,v 1.58 2011/02/05 12:20:10 ssuominen Exp $
29 +
30 + 05 Feb 2011; Samuli Suominen <ssuominen@g.o> nm-applet-0.8.2.ebuild,
31 + +files/nm-applet-0.8.2-libnotify-0.7.patch:
32 + Fix building with x11-libs/libnotify >= 0.7.
33
34 26 Jan 2011; Samuli Suominen <ssuominen@g.o> nm-applet-0.8.2.ebuild:
35 Remove too strict notification area and policykit authentication agent
36
37
38
39 1.4 gnome-extra/nm-applet/nm-applet-0.8.2.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.8.2.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.8.2.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.8.2.ebuild?r1=1.3&r2=1.4
44
45 Index: nm-applet-0.8.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.8.2.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- nm-applet-0.8.2.ebuild 26 Jan 2011 15:41:42 -0000 1.3
52 +++ nm-applet-0.8.2.ebuild 5 Feb 2011 12:20:10 -0000 1.4
53 @@ -1,10 +1,9 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.8.2.ebuild,v 1.3 2011/01/26 15:41:42 ssuominen Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nm-applet/nm-applet-0.8.2.ebuild,v 1.4 2011/02/05 12:20:10 ssuominen Exp $
58
59 -EAPI="2"
60 -
61 -inherit gnome2 eutils
62 +EAPI=2
63 +inherit eutils gnome2
64
65 MY_PN="${PN/nm-applet/network-manager-applet}"
66
67 @@ -39,13 +38,17 @@
68 dev-util/pkgconfig
69 >=dev-util/intltool-0.35"
70
71 -DOCS="AUTHORS ChangeLog NEWS README"
72 -# USE_DESTDIR="1"
73 -
74 -S="${WORKDIR}/${MY_PN}-${PV}"
75 +S=${WORKDIR}/${MY_PN}-${PV}
76
77 pkg_setup () {
78 G2CONF="${G2CONF}
79 --disable-more-warnings
80 --localstatedir=/var"
81 +
82 + DOCS="AUTHORS ChangeLog NEWS README"
83 +}
84 +
85 +src_prepare() {
86 + epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
87 + gnome2_src_prepare
88 }