Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-sensors-plugin: ChangeLog xfce4-sensors-plugin-0.10.99.6.ebuild
Date: Fri, 19 Feb 2010 09:11:24
Message-Id: E1NiOtM-0005hl-Kt@stork.gentoo.org
1 ssuominen 10/02/19 09:11:20
2
3 Modified: ChangeLog xfce4-sensors-plugin-0.10.99.6.ebuild
4 Log:
5 Don't use -Werror wrt #299438, thanks to Alexander Goomenyuk for reporting.
6 (Portage version: 2.2_rc62/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 xfce-extra/xfce4-sensors-plugin/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog?r1=1.1&r2=1.2
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ChangeLog 23 Aug 2009 20:19:17 -0000 1.1
22 +++ ChangeLog 19 Feb 2010 09:11:19 -0000 1.2
23 @@ -1,6 +1,11 @@
24 # ChangeLog for xfce-extra/xfce4-sensors-plugin
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.1 2009/08/23 20:19:17 ssuominen Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.2 2010/02/19 09:11:19 ssuominen Exp $
29 +
30 + 19 Feb 2010; Samuli Suominen <ssuominen@g.o>
31 + xfce4-sensors-plugin-0.10.99.6.ebuild:
32 + Don't use -Werror wrt #299438, thanks to Alexander Goomenyuk for
33 + reporting.
34
35 *xfce4-sensors-plugin-0.10.99.6 (23 Aug 2009)
36
37
38
39
40 1.2 xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild?r1=1.1&r2=1.2
45
46 Index: xfce4-sensors-plugin-0.10.99.6.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- xfce4-sensors-plugin-0.10.99.6.ebuild 23 Aug 2009 20:19:17 -0000 1.1
53 +++ xfce4-sensors-plugin-0.10.99.6.ebuild 19 Feb 2010 09:11:19 -0000 1.2
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild,v 1.1 2009/08/23 20:19:17 ssuominen Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild,v 1.2 2010/02/19 09:11:19 ssuominen Exp $
60
61 EAUTORECONF=yes
62 EAPI=2
63 @@ -43,6 +43,13 @@
64 }
65
66 src_prepare() {
67 - sed -i -e "/-no-undefined/d" src/Makefile.am || die "sed failed"
68 + sed -i \
69 + -e '/-no-undefined/d' \
70 + src/Makefile.am || die
71 +
72 + sed -i \
73 + -e 's/-Werror//' \
74 + configure.in || die
75 +
76 xfconf_src_prepare
77 }