Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/bugle: ChangeLog bugle-0.0.20090801.ebuild
Date: Fri, 08 Jan 2010 15:05:37
Message-Id: E1NTGP8-0005On-5w@stork.gentoo.org
1 ssuominen 10/01/08 15:05:34
2
3 Modified: ChangeLog bugle-0.0.20090801.ebuild
4 Log:
5 Fix building with -Wl,--as-needed wrt #297638, thanks to Kacper Kowalik for patch.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.11 dev-util/bugle/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/ChangeLog?rev=1.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/ChangeLog?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/ChangeLog?r1=1.10&r2=1.11
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/bugle/ChangeLog,v
18 retrieving revision 1.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- ChangeLog 22 Aug 2009 09:32:16 -0000 1.10
22 +++ ChangeLog 8 Jan 2010 15:05:33 -0000 1.11
23 @@ -1,6 +1,11 @@
24 # ChangeLog for dev-util/bugle
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bugle/ChangeLog,v 1.10 2009/08/22 09:32:16 scarabeus Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bugle/ChangeLog,v 1.11 2010/01/08 15:05:33 ssuominen Exp $
29 +
30 + 08 Jan 2010; Samuli Suominen <ssuominen@g.o>
31 + bugle-0.0.20090801.ebuild, +files/bugle-0.0.20090801-asneeded.patch:
32 + Fix building with -Wl,--as-needed wrt #297638, thanks to Kacper Kowalik
33 + for patch.
34
35 *bugle-0.0.20090801 (22 Aug 2009)
36
37
38
39
40 1.2 dev-util/bugle/bugle-0.0.20090801.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/bugle-0.0.20090801.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/bugle-0.0.20090801.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bugle/bugle-0.0.20090801.ebuild?r1=1.1&r2=1.2
45
46 Index: bugle-0.0.20090801.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-util/bugle/bugle-0.0.20090801.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- bugle-0.0.20090801.ebuild 22 Aug 2009 09:32:16 -0000 1.1
53 +++ bugle-0.0.20090801.ebuild 8 Jan 2010 15:05:33 -0000 1.2
54 @@ -1,10 +1,10 @@
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/dev-util/bugle/bugle-0.0.20090801.ebuild,v 1.1 2009/08/22 09:32:16 scarabeus Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bugle/bugle-0.0.20090801.ebuild,v 1.2 2010/01/08 15:05:33 ssuominen Exp $
60
61 EAPI="2"
62
63 -inherit toolchain-funcs
64 +inherit autotools eutils toolchain-funcs
65
66 DESCRIPTION="A tool for OpenGL debugging"
67 HOMEPAGE="http://www.opengl.org/sdk/tools/BuGLe/"
68 @@ -23,6 +23,11 @@
69 sys-libs/ncurses"
70 RDEPEND="${DEPEND}"
71
72 +src_prepare() {
73 + epatch "${FILESDIR}"/${P}-asneeded.patch
74 + eautoreconf
75 +}
76 +
77 src_configure() {
78 econf \
79 --disable-dependency-tracking \