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-util/glbsp: ChangeLog glbsp-2.20.ebuild
Date: Fri, 01 Oct 2010 08:04:10
Message-Id: 20101001080407.B065920054@flycatcher.gentoo.org
1 tupone 10/10/01 08:04:07
2
3 Modified: ChangeLog glbsp-2.20.ebuild
4 Log:
5 Respect LDFLAGS. Bug #337273
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.10 games-util/glbsp/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/glbsp/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/glbsp/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/glbsp/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-util/glbsp/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 26 Nov 2009 20:55:44 -0000 1.9
22 +++ ChangeLog 1 Oct 2010 08:04:07 -0000 1.10
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-util/glbsp
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-util/glbsp/ChangeLog,v 1.9 2009/11/26 20:55:44 maekke Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-util/glbsp/ChangeLog,v 1.10 2010/10/01 08:04:07 tupone Exp $
29 +
30 + 01 Oct 2010; Tupone Alfredo <tupone@g.o> glbsp-2.20.ebuild,
31 + +files/glbsp-2.20-ldflags.patch:
32 + Respect LDFLAGS. Bug #337273 by flameeyes@g.o
33
34 26 Nov 2009; Markus Meier <maekke@g.o> glbsp-2.20.ebuild:
35 x86 stable, bug #294541
36
37
38
39 1.5 games-util/glbsp/glbsp-2.20.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/glbsp/glbsp-2.20.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/glbsp/glbsp-2.20.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/glbsp/glbsp-2.20.ebuild?r1=1.4&r2=1.5
44
45 Index: glbsp-2.20.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-util/glbsp/glbsp-2.20.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- glbsp-2.20.ebuild 26 Nov 2009 20:55:44 -0000 1.4
52 +++ glbsp-2.20.ebuild 1 Oct 2010 08:04:07 -0000 1.5
53 @@ -1,8 +1,8 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/games-util/glbsp/glbsp-2.20.ebuild,v 1.4 2009/11/26 20:55:44 maekke Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-util/glbsp/glbsp-2.20.ebuild,v 1.5 2010/10/01 08:04:07 tupone Exp $
59
60 -EAPI=1
61 +EAPI="2"
62
63 inherit eutils toolchain-funcs versionator
64
65 @@ -18,9 +18,7 @@
66
67 DEPEND="fltk? ( x11-libs/fltk:1.1 )"
68
69 -src_unpack() {
70 - unpack ${A}
71 - cd "${S}"
72 +src_prepare() {
73 sed -i \
74 -e "/^CC=/s:=.*:=$(tc-getCC):" \
75 -e "/^CXX=/s:=.*:=$(tc-getCXX):" \
76 @@ -29,6 +27,7 @@
77 -e "s:-O2:${CFLAGS}:" \
78 GUI_unx.mak Plugin_unx.mak Makefile \
79 || die "sed failed"
80 + epatch "${FILESDIR}"/${P}-ldflags.patch
81 }
82
83 src_compile() {