Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/synaesthesia: ChangeLog synaesthesia-2.4.ebuild
Date: Mon, 11 May 2009 19:34:03
Message-Id: E1M3bGD-0004jH-E0@stork.gentoo.org
1 ssuominen 09/05/11 19:34:01
2
3 Modified: ChangeLog synaesthesia-2.4.ebuild
4 Log:
5 Replace double quotes with single quotes to fix configure differently wrt #240832.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.19 media-sound/synaesthesia/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/synaesthesia/ChangeLog?rev=1.19&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/synaesthesia/ChangeLog?rev=1.19&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/synaesthesia/ChangeLog?r1=1.18&r2=1.19
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/ChangeLog,v
18 retrieving revision 1.18
19 retrieving revision 1.19
20 diff -u -r1.18 -r1.19
21 --- ChangeLog 24 Mar 2008 13:04:02 -0000 1.18
22 +++ ChangeLog 11 May 2009 19:34:01 -0000 1.19
23 @@ -1,6 +1,11 @@
24 # ChangeLog for media-sound/synaesthesia
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/ChangeLog,v 1.18 2008/03/24 13:04:02 coldwind Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/ChangeLog,v 1.19 2009/05/11 19:34:01 ssuominen Exp $
29 +
30 + 11 May 2009; Samuli Suominen <ssuominen@g.o>
31 + synaesthesia-2.4.ebuild:
32 + Replace double quotes with single quotes to fix configure differently wrt
33 + #240832.
34
35 24 Mar 2008; Santiago M. Mola <coldwind@g.o>
36 synaesthesia-2.4.ebuild:
37
38
39
40 1.6 media-sound/synaesthesia/synaesthesia-2.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild?rev=1.6&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild?rev=1.6&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild?r1=1.5&r2=1.6
45
46 Index: synaesthesia-2.4.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild,v
49 retrieving revision 1.5
50 retrieving revision 1.6
51 diff -u -r1.5 -r1.6
52 --- synaesthesia-2.4.ebuild 11 May 2009 13:43:48 -0000 1.5
53 +++ synaesthesia-2.4.ebuild 11 May 2009 19:34:01 -0000 1.6
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild,v 1.5 2009/05/11 13:43:48 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-sound/synaesthesia/synaesthesia-2.4.ebuild,v 1.6 2009/05/11 19:34:01 ssuominen Exp $
59
60 EAPI=2
61
62 @@ -22,8 +22,8 @@
63 x11-proto/xextproto"
64
65 src_prepare() {
66 - sed -e "/CFLAGS=/s:-O4:${CFLAGS}:" \
67 - -e "/CXXFLAGS=/s:-O4:${CXXFLAGS}:" -i configure || die "sed failed"
68 + sed -e '/CFLAGS=/s:-O4:${CFLAGS}:' \
69 + -e '/CXXFLAGS=/s:-O4:${CXXFLAGS}:' -i configure || die "sed failed"
70 sed -e 's:void inline:inline void:' -i syna.h || die "sed failed"
71 }