Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-misc/gnurobots: gnurobots-1.2.0.ebuild ChangeLog
Date: Mon, 13 Jul 2009 12:59:36
Message-Id: E1MQL81-0004ij-U7@stork.gentoo.org
1 tupone 09/07/13 12:59:33
2
3 Modified: gnurobots-1.2.0.ebuild ChangeLog
4 Log:
5 Fix build with --as-needed Bug #277149
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.6 games-misc/gnurobots/gnurobots-1.2.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild?r1=1.5&r2=1.6
14
15 Index: gnurobots-1.2.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- gnurobots-1.2.0.ebuild 22 May 2009 22:40:31 -0000 1.5
22 +++ gnurobots-1.2.0.ebuild 13 Jul 2009 12:59:33 -0000 1.6
23 @@ -1,9 +1,9 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild,v 1.5 2009/05/22 22:40:31 nyhm Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-misc/gnurobots/gnurobots-1.2.0.ebuild,v 1.6 2009/07/13 12:59:33 tupone Exp $
28
29 EAPI=2
30 -inherit games
31 +inherit eutils autotools games
32
33 DESCRIPTION="construct a program for a little robot then set him loose
34 and watch him explore a world on his own"
35 @@ -16,14 +16,17 @@
36 IUSE=""
37 RESTRICT="test"
38
39 -DEPEND="x11-libs/vte
40 +RDEPEND="x11-libs/vte
41 dev-scheme/guile"
42 +DEPEND="${RDEPEND}"
43
44 src_prepare() {
45 + epatch "${FILESDIR}"/${P}-ldflags.patch
46 sed -i \
47 -e 's/-pedantic-errors -Werror//' \
48 configure \
49 || die "sed failed"
50 + eautoreconf
51 }
52
53 src_install() {
54
55
56
57 1.20 games-misc/gnurobots/ChangeLog
58
59 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-misc/gnurobots/ChangeLog?rev=1.20&view=markup
60 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-misc/gnurobots/ChangeLog?rev=1.20&content-type=text/plain
61 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-misc/gnurobots/ChangeLog?r1=1.19&r2=1.20
62
63 Index: ChangeLog
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/games-misc/gnurobots/ChangeLog,v
66 retrieving revision 1.19
67 retrieving revision 1.20
68 diff -u -r1.19 -r1.20
69 --- ChangeLog 22 May 2009 22:40:31 -0000 1.19
70 +++ ChangeLog 13 Jul 2009 12:59:33 -0000 1.20
71 @@ -1,6 +1,10 @@
72 # ChangeLog for games-misc/gnurobots
73 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
74 -# $Header: /var/cvsroot/gentoo-x86/games-misc/gnurobots/ChangeLog,v 1.19 2009/05/22 22:40:31 nyhm Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/games-misc/gnurobots/ChangeLog,v 1.20 2009/07/13 12:59:33 tupone Exp $
76 +
77 + 13 Jul 2009; Tupone Alfredo <tupone@g.o>
78 + +files/gnurobots-1.2.0-ldflags.patch, gnurobots-1.2.0.ebuild:
79 + Fix build with --as-needed Bug #277149 by <flameeyes@g.o>
80
81 22 May 2009; Tristan Heaven <nyhm@g.o> gnurobots-1.2.0.ebuild:
82 Remove -pedantic-errors too, bug #254862