public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-action/bzflag: ChangeLog bzflag-2.4.2.ebuild
@ 2012-09-14  7:48 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone (tupone) @ 2012-09-14  7:48 UTC (permalink / raw
  To: gentoo-commits

tupone      12/09/14 07:48:38

  Modified:             ChangeLog
  Added:                bzflag-2.4.2.ebuild
  Log:
  Version bump to 2.4.2
  
  (Portage version: 2.1.11.16/cvs/Linux i686)

Revision  Changes    Path
1.57                 games-action/bzflag/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	10 Jan 2012 20:34:57 -0000	1.56
+++ ChangeLog	14 Sep 2012 07:48:37 -0000	1.57
@@ -1,6 +1,11 @@
 # ChangeLog for games-action/bzflag
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.56 2012/01/10 20:34:57 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.57 2012/09/14 07:48:37 tupone Exp $
+
+*bzflag-2.4.2 (14 Sep 2012)
+
+  14 Sep 2012; Tupone Alfredo <tupone@gentoo.org> +bzflag-2.4.2.ebuild:
+  Version bump to 2.4.2
 
   10 Jan 2012; Brent Baude <ranger@gentoo.org> bzflag-2.4.0.ebuild:
   Marking bzflag-2.4.0 ppc for bug 377575



1.1                  games-action/bzflag/bzflag-2.4.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.1&content-type=text/plain

Index: bzflag-2.4.2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.1 2012/09/14 07:48:38 tupone Exp $

EAPI=2
inherit eutils flag-o-matic games

DESCRIPTION="3D tank combat simulator game"
HOMEPAGE="http://www.bzflag.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dedicated sdl upnp"

UIDEPEND="virtual/opengl
	virtual/glu
	media-libs/libsdl[audio,joystick,video]
	media-libs/glew
	x11-libs/libICE
	x11-libs/libSM
	x11-libs/libX11
	x11-libs/libXau
	x11-libs/libXdmcp
	x11-libs/libXext
	x11-libs/libXi
	x11-libs/libXmu
	x11-libs/libXt
	x11-libs/libXxf86vm"

DEPEND=">=net-misc/curl-7.15.0
	sys-libs/ncurses
	net-dns/c-ares
	upnp? ( net-libs/miniupnpc )
	sdl? ( ${UIDEPEND} )
	!sdl? ( !dedicated? ( ${UIDEPEND} ) )"

src_configure() {
	local myconf

	if use dedicated && ! use sdl ; then
		ewarn
		ewarn "You are building a server-only copy of BZFlag"
		ewarn
		myconf="--disable-client --without-SDL"
	fi
	egamesconf \
		--disable-ccachetest \
		--disable-dependency-tracking \
		--without-regex \
		$(use_enable upnp UPnP) \
		${myconf}
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS TODO ChangeLog BUGS PORTING DEVINFO NEWS README*

	if use sdl || ! use dedicated ; then
		newicon "data/bzflag-48x48.png" ${PN}.png
		make_desktop_entry ${PN} "BZFlag"
	fi

	prepgamesdirs
}





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-action/bzflag: ChangeLog bzflag-2.4.2.ebuild
@ 2012-10-22 12:43 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 5+ messages in thread
From: Alfredo Tupone (tupone) @ 2012-10-22 12:43 UTC (permalink / raw
  To: gentoo-commits

tupone      12/10/22 12:43:40

  Modified:             ChangeLog bzflag-2.4.2.ebuild
  Log:
  Removing mtune from CXXFLAGS. Bug #439064
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.60                 games-action/bzflag/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	18 Oct 2012 19:51:23 -0000	1.59
+++ ChangeLog	22 Oct 2012 12:43:40 -0000	1.60
@@ -1,6 +1,10 @@
 # ChangeLog for games-action/bzflag
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.59 2012/10/18 19:51:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.60 2012/10/22 12:43:40 tupone Exp $
+
+  22 Oct 2012; Alfredo Tupone <tupone@gentoo.org> bzflag-2.4.2.ebuild,
+  +files/bzflag-2.4.2-nocxxflags.patch:
+  Removing mtune from CXXFLAGS. Bug #439064 by Vicente Olivert Riera
 
   18 Oct 2012; Anthony G. Basile <blueness@gentoo.org> bzflag-2.4.2.ebuild:
   stable ppc, bug #438546



1.4                  games-action/bzflag/bzflag-2.4.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?r1=1.3&r2=1.4

Index: bzflag-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bzflag-2.4.2.ebuild	18 Oct 2012 19:51:23 -0000	1.3
+++ bzflag-2.4.2.ebuild	22 Oct 2012 12:43:40 -0000	1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.3 2012/10/18 19:51:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.4 2012/10/22 12:43:40 tupone Exp $
 
-EAPI=2
-inherit eutils flag-o-matic games
+EAPI=4
+inherit autotools eutils flag-o-matic games
 
 DESCRIPTION="3D tank combat simulator game"
 HOMEPAGE="http://www.bzflag.org/"
@@ -36,6 +36,11 @@
 	sdl? ( ${UIDEPEND} )
 	!sdl? ( !dedicated? ( ${UIDEPEND} ) )"
 
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-nocxxflags.patch
+	eautoreconf
+}
+
 src_configure() {
 	local myconf
 
@@ -47,15 +52,14 @@
 	fi
 	egamesconf \
 		--disable-ccachetest \
-		--disable-dependency-tracking \
 		--without-regex \
 		$(use_enable upnp UPnP) \
 		${myconf}
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-	dodoc AUTHORS TODO ChangeLog BUGS PORTING DEVINFO NEWS README*
+	default
+	dodoc PORTING DEVINFO
 
 	if use sdl || ! use dedicated ; then
 		newicon "data/bzflag-48x48.png" ${PN}.png





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-action/bzflag: ChangeLog bzflag-2.4.2.ebuild
@ 2012-10-30 12:01 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-10-30 12:01 UTC (permalink / raw
  To: gentoo-commits

ago         12/10/30 12:01:01

  Modified:             ChangeLog bzflag-2.4.2.ebuild
  Log:
  Stable for amd64, wrt bug #438546
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.61                 games-action/bzflag/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	22 Oct 2012 12:43:40 -0000	1.60
+++ ChangeLog	30 Oct 2012 12:01:01 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for games-action/bzflag
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.60 2012/10/22 12:43:40 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.61 2012/10/30 12:01:01 ago Exp $
+
+  30 Oct 2012; <ago@gentoo.org> bzflag-2.4.2.ebuild:
+  Stable for amd64, wrt bug #438546
 
   22 Oct 2012; Alfredo Tupone <tupone@gentoo.org> bzflag-2.4.2.ebuild,
   +files/bzflag-2.4.2-nocxxflags.patch:



1.5                  games-action/bzflag/bzflag-2.4.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?r1=1.4&r2=1.5

Index: bzflag-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- bzflag-2.4.2.ebuild	22 Oct 2012 12:43:40 -0000	1.4
+++ bzflag-2.4.2.ebuild	30 Oct 2012 12:01:01 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.4 2012/10/22 12:43:40 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.5 2012/10/30 12:01:01 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="dedicated sdl upnp"
 
 UIDEPEND="virtual/opengl





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-action/bzflag: ChangeLog bzflag-2.4.2.ebuild
@ 2012-11-22 10:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-22 10:07 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/22 10:07:48

  Modified:             ChangeLog bzflag-2.4.2.ebuild
  Log:
  Stable for x86, tested by Vincent Olivert Riera <peratu@carrosses.com>, wrt bug #438546
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.62                 games-action/bzflag/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	30 Oct 2012 12:01:01 -0000	1.61
+++ ChangeLog	22 Nov 2012 10:07:47 -0000	1.62
@@ -1,6 +1,10 @@
 # ChangeLog for games-action/bzflag
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.61 2012/10/30 12:01:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.62 2012/11/22 10:07:47 ago Exp $
+
+  22 Nov 2012; Agostino Sarubbo <ago@gentoo.org> bzflag-2.4.2.ebuild:
+  Stable for x86, tested by Vincent Olivert Riera <peratu@carrosses.com>, wrt
+  bug #438546
 
   30 Oct 2012; <ago@gentoo.org> bzflag-2.4.2.ebuild:
   Stable for amd64, wrt bug #438546



1.6                  games-action/bzflag/bzflag-2.4.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?r1=1.5&r2=1.6

Index: bzflag-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- bzflag-2.4.2.ebuild	30 Oct 2012 12:01:01 -0000	1.5
+++ bzflag-2.4.2.ebuild	22 Nov 2012 10:07:47 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.5 2012/10/30 12:01:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.6 2012/11/22 10:07:47 ago Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic games
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="dedicated sdl upnp"
 
 UIDEPEND="virtual/opengl





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-action/bzflag: ChangeLog bzflag-2.4.2.ebuild
@ 2014-05-15 16:20 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 5+ messages in thread
From: Ulrich Mueller (ulm) @ 2014-05-15 16:20 UTC (permalink / raw
  To: gentoo-commits

ulm         14/05/15 16:20:29

  Modified:             ChangeLog bzflag-2.4.2.ebuild
  Log:
  Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to "sound", bug 357661.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)

Revision  Changes    Path
1.65                 games-action/bzflag/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	12 May 2013 12:32:27 -0000	1.64
+++ ChangeLog	15 May 2014 16:20:29 -0000	1.65
@@ -1,6 +1,10 @@
 # ChangeLog for games-action/bzflag
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.64 2013/05/12 12:32:27 tupone Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.65 2014/05/15 16:20:29 ulm Exp $
+
+  15 May 2014; Ulrich Müller <ulm@gentoo.org> bzflag-2.4.2.ebuild:
+  Fix USE dependency on media-libs/libsdl, "audio" USE flag was renamed to
+  "sound", bug 357661.
 
   12 May 2013; Alfredo Tupone <tupone@gentoo.org>
   files/bzflag-2.4.2-nocxxflags.patch:



1.7                  games-action/bzflag/bzflag-2.4.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild?r1=1.6&r2=1.7

Index: bzflag-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- bzflag-2.4.2.ebuild	22 Nov 2012 10:07:47 -0000	1.6
+++ bzflag-2.4.2.ebuild	15 May 2014 16:20:29 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.6 2012/11/22 10:07:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-2.4.2.ebuild,v 1.7 2014/05/15 16:20:29 ulm Exp $
 
 EAPI=4
 inherit autotools eutils flag-o-matic games
@@ -16,7 +16,7 @@
 
 UIDEPEND="virtual/opengl
 	virtual/glu
-	media-libs/libsdl[audio,joystick,video]
+	media-libs/libsdl[sound,joystick,video]
 	media-libs/glew
 	x11-libs/libICE
 	x11-libs/libSM





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-15 16:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-30 12:01 [gentoo-commits] gentoo-x86 commit in games-action/bzflag: ChangeLog bzflag-2.4.2.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-05-15 16:20 Ulrich Mueller (ulm)
2012-11-22 10:07 Agostino Sarubbo (ago)
2012-10-22 12:43 Alfredo Tupone (tupone)
2012-09-14  7:48 Alfredo Tupone (tupone)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox