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-action/bzflag: ChangeLog bzflag-2.4.0.ebuild
Date: Mon, 04 Jul 2011 04:39:57
Message-Id: 20110704043946.0488E2004B@flycatcher.gentoo.org
1 tupone 11/07/04 04:39:46
2
3 Modified: ChangeLog
4 Added: bzflag-2.4.0.ebuild
5 Log:
6 Version bump to 2.4.0
7
8 (Portage version: 2.1.10.3/cvs/Linux i686)
9
10 Revision Changes Path
11 1.52 games-action/bzflag/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.52&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.52&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.51&r2=1.52
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
20 retrieving revision 1.51
21 retrieving revision 1.52
22 diff -u -r1.51 -r1.52
23 --- ChangeLog 13 Aug 2010 12:18:04 -0000 1.51
24 +++ ChangeLog 4 Jul 2011 04:39:45 -0000 1.52
25 @@ -1,6 +1,11 @@
26 # ChangeLog for games-action/bzflag
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.51 2010/08/13 12:18:04 josejx Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.52 2011/07/04 04:39:45 tupone Exp $
31 +
32 +*bzflag-2.4.0 (04 Jul 2011)
33 +
34 + 04 Jul 2011; Tupone Alfredo <tupone@g.o> +bzflag-2.4.0.ebuild:
35 + Version bump to 2.4.0
36
37 13 Aug 2010; Joseph Jezak <josejx@g.o> bzflag-2.0.16.ebuild:
38 Marked ppc stable for bug #318881.
39
40
41
42 1.1 games-action/bzflag/bzflag-2.4.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bzflag-2.4.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.0.ebuild,v 1.1 2011/07/04 04:39:45 tupone Exp $
52
53 EAPI=2
54 inherit eutils flag-o-matic games
55
56 DESCRIPTION="3D tank combat simulator game"
57 HOMEPAGE="http://www.bzflag.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="dedicated sdl"
64
65 UIDEPEND="virtual/opengl
66 virtual/glu
67 media-libs/libsdl[audio,joystick,video]
68 media-libs/glew
69 x11-libs/libICE
70 x11-libs/libSM
71 x11-libs/libX11
72 x11-libs/libXau
73 x11-libs/libXdmcp
74 x11-libs/libXext
75 x11-libs/libXi
76 x11-libs/libXmu
77 x11-libs/libXt
78 x11-libs/libXxf86vm"
79
80 DEPEND=">=net-misc/curl-7.15.0
81 sys-libs/ncurses
82 net-dns/c-ares
83 sdl? ( ${UIDEPEND} )
84 !sdl? ( !dedicated? ( ${UIDEPEND} ) )"
85
86 src_configure() {
87 local myconf
88
89 if use dedicated && ! use sdl ; then
90 ewarn
91 ewarn "You are building a server-only copy of BZFlag"
92 ewarn
93 myconf="--disable-client --without-SDL"
94 fi
95 egamesconf \
96 --disable-ccachetest \
97 --disable-dependency-tracking \
98 --without-regex \
99 ${myconf}
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "emake install failed"
104 dodoc AUTHORS TODO ChangeLog BUGS PORTING DEVINFO NEWS README* RELNOTES
105
106 if use sdl || ! use dedicated ; then
107 newicon "data/bzflag-48x48.png" ${PN}.png
108 make_desktop_entry ${PN} "BZFlag"
109 fi
110
111 prepgamesdirs
112 }