Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/bzflag: bzflag-2.0.12.ebuild ChangeLog
Date: Mon, 19 Jan 2009 17:27:55
Message-Id: E1LOxui-0000nt-EN@stork.gentoo.org
1 mr_bones_ 09/01/19 17:27:52
2
3 Modified: bzflag-2.0.12.ebuild ChangeLog
4 Log:
5 EAPI=2; add use-based dep; tidy
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
7
8 Revision Changes Path
9 1.6 games-action/bzflag/bzflag-2.0.12.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/bzflag/bzflag-2.0.12.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/bzflag/bzflag-2.0.12.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/bzflag/bzflag-2.0.12.ebuild?r1=1.5&r2=1.6
14
15 Index: bzflag-2.0.12.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.0.12.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- bzflag-2.0.12.ebuild 21 Sep 2008 13:51:22 -0000 1.5
22 +++ bzflag-2.0.12.ebuild 19 Jan 2009 17:27:52 -0000 1.6
23 @@ -1,7 +1,8 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.0.12.ebuild,v 1.5 2008/09/21 13:51:22 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.0.12.ebuild,v 1.6 2009/01/19 17:27:52 mr_bones_ Exp $
29
30 +EAPI=2
31 inherit eutils flag-o-matic games
32
33 DESCRIPTION="3D tank combat simulator game"
34 @@ -28,7 +29,7 @@
35 x11-libs/libXt
36 x11-libs/libXxf86vm"
37
38 -DEPEND=">=net-misc/curl-7.15.0
39 +DEPEND=">=net-misc/curl-7.15.0[ares]
40 sys-libs/ncurses
41 net-dns/c-ares
42 sdl? ( ${UIDEPEND} )
43 @@ -37,15 +38,10 @@
44 pkg_setup() {
45 # Only do the libsdl checks for !dedicated - bug #107792
46 use dedicated || GAMES_USE_SDL="nojoystick"
47 - if ! built_with_use net-misc/curl ares; then
48 - ewarn "net-misc/curl is not built with c-ares support"
49 - ewarn "To avoid undesired glitch during play consider"
50 - ewarn "emerging net-misc/curl with USE=\"ares\"."
51 - fi
52 games_pkg_setup
53 }
54
55 -src_compile() {
56 +src_configure() {
57 local myconf
58
59 if use dedicated && ! use sdl ; then
60 @@ -59,16 +55,15 @@
61 --without-regex \
62 ${myconf} \
63 || die "egamesconf failed"
64 - emake || die "emake failed"
65 }
66
67 src_install() {
68 - make DESTDIR="${D}" install || die "make install failed"
69 + emake DESTDIR="${D}" install || die "emake install failed"
70 dodoc AUTHORS TODO ChangeLog BUGS PORTING DEVINFO NEWS README* RELNOTES
71
72 if use sdl || ! use dedicated ; then
73 - doicon "data/bzflag-48x48.png"
74 - make_desktop_entry ${PN} "BZFlag" ${PN}-48x48
75 + newicon "data/bzflag-48x48.png" ${PN}.png
76 + make_desktop_entry ${PN} "BZFlag"
77 fi
78
79 prepgamesdirs
80
81
82
83 1.40 games-action/bzflag/ChangeLog
84
85 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.40&view=markup
86 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.40&content-type=text/plain
87 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.39&r2=1.40
88
89 Index: ChangeLog
90 ===================================================================
91 RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
92 retrieving revision 1.39
93 retrieving revision 1.40
94 diff -u -r1.39 -r1.40
95 --- ChangeLog 21 Sep 2008 13:51:22 -0000 1.39
96 +++ ChangeLog 19 Jan 2009 17:27:52 -0000 1.40
97 @@ -1,6 +1,9 @@
98 # ChangeLog for games-action/bzflag
99 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
100 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.39 2008/09/21 13:51:22 ranger Exp $
101 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
102 +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.40 2009/01/19 17:27:52 mr_bones_ Exp $
103 +
104 + 19 Jan 2009; Michael Sterrett <mr_bones_@g.o> bzflag-2.0.12.ebuild:
105 + EAPI=2; add use-based dep; tidy
106
107 21 Sep 2008; Brent Baude <ranger@g.o> bzflag-2.0.12.ebuild:
108 stable ppc, bug 238056