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-puzzle/ngstar: ngstar-2.1.8-r2.ebuild ChangeLog
Date: Fri, 10 Sep 2010 07:36:14
Message-Id: 20100910073608.936F620054@flycatcher.gentoo.org
1 tupone 10/09/10 07:36:08
2
3 Modified: ngstar-2.1.8-r2.ebuild ChangeLog
4 Log:
5 Respect LDFLAGS. Bug #336111
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.6 games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild?r1=1.5&r2=1.6
14
15 Index: ngstar-2.1.8-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ngstar-2.1.8-r2.ebuild 2 May 2008 19:44:34 -0000 1.5
22 +++ ngstar-2.1.8-r2.ebuild 10 Sep 2010 07:36:08 -0000 1.6
23 @@ -1,6 +1,7 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild,v 1.5 2008/05/02 19:44:34 nyhm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/ngstar/ngstar-2.1.8-r2.ebuild,v 1.6 2010/09/10 07:36:08 tupone Exp $
29 +EAPI="2"
30
31 inherit eutils games
32
33 @@ -16,25 +17,24 @@
34 DEPEND="sys-libs/ncurses
35 sys-libs/gpm"
36
37 -src_unpack() {
38 - unpack ${A}
39 - cd "${S}"
40 +src_prepare() {
41 epatch \
42 "${FILESDIR}"/${P}-gentoo-path.patch \
43 - "${FILESDIR}"/${P}-gcc43.patch
44 + "${FILESDIR}"/${P}-gcc43.patch \
45 + "${FILESDIR}"/${P}-ldflags.patch
46 sed -i \
47 -e "s:@GENTOO_DATA@:${GAMES_DATADIR}:" \
48 -e "s:@GENTOO_BIN@:${GAMES_BINDIR}:" \
49 -e "/^CPPFLAGS/s:+=:+= ${CXXFLAGS}:" \
50 + -e "/SILENT/d" \
51 configure || die "sed configure failed"
52 sed -i '/strip/d' src/Makefile || die "sed makefile failed"
53 }
54
55 -src_compile() {
56 +src_configure() {
57 ./configure \
58 --prefix "" \
59 --without-fltk2 || die "configure failed"
60 - emake || die "emake failed"
61 }
62
63 src_install() {
64
65
66
67 1.8 games-puzzle/ngstar/ChangeLog
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/ngstar/ChangeLog?rev=1.8&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/ngstar/ChangeLog?rev=1.8&content-type=text/plain
71 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-puzzle/ngstar/ChangeLog?r1=1.7&r2=1.8
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/ngstar/ChangeLog,v
76 retrieving revision 1.7
77 retrieving revision 1.8
78 diff -u -r1.7 -r1.8
79 --- ChangeLog 2 May 2008 19:44:34 -0000 1.7
80 +++ ChangeLog 10 Sep 2010 07:36:08 -0000 1.8
81 @@ -1,6 +1,10 @@
82 # ChangeLog for games-puzzle/ngstar
83 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/ngstar/ChangeLog,v 1.7 2008/05/02 19:44:34 nyhm Exp $
85 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
86 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/ngstar/ChangeLog,v 1.8 2010/09/10 07:36:08 tupone Exp $
87 +
88 + 10 Sep 2010; Tupone Alfredo <tupone@g.o> ngstar-2.1.8-r2.ebuild,
89 + +files/ngstar-2.1.8-ldflags.patch:
90 + Respect LDFLAGS. Bug #336111 by flameeyes@g.o
91
92 02 May 2008; Tristan Heaven <nyhm@g.o>
93 +files/ngstar-2.1.8-gcc43.patch, ngstar-2.1.8-r2.ebuild: