public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-fps/openarena: ChangeLog openarena-0.8.8.ebuild
@ 2012-05-18  4:56 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2012-05-18  4:56 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    12/05/18 04:56:14

  Modified:             ChangeLog
  Added:                openarena-0.8.8.ebuild
  Log:
  version bump (bug #306617) with patches from hasufell
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 games-fps/openarena/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	25 Sep 2011 21:32:21 -0000	1.22
+++ ChangeLog	18 May 2012 04:56:13 -0000	1.23
@@ -1,6 +1,13 @@
 # ChangeLog for games-fps/openarena
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.22 2011/09/25 21:32:21 mr_bones_ Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.23 2012/05/18 04:56:13 mr_bones_ Exp $
+
+*openarena-0.8.8 (18 May 2012)
+
+  18 May 2012; Michael Sterrett <mr_bones_@gentoo.org> +openarena-0.8.8.ebuild,
+  +files/openarena-0.8.8-makefile.patch,
+  +files/openarena-0.8.8-unbundling.patch:
+  version bump (bug #306617) with patches from hasufell
 
   25 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> openarena-0.8.5.ebuild:
   sed patch to build against newer zlib (bug #384395)



1.1                  games-fps/openarena/openarena-0.8.8.ebuild

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

Index: openarena-0.8.8.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v 1.1 2012/05/18 04:56:13 mr_bones_ Exp $

EAPI=2
inherit eutils flag-o-matic versionator games

DESCRIPTION="Open-source replacement for Quake 3 Arena"
HOMEPAGE="http://openarena.ws/"
SRC_URI="mirror://sourceforge/oarena/${P}.zip
	mirror://sourceforge/oarena/src/${PN}-engine-source-${PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+curl +openal +vorbis"

RDEPEND="virtual/opengl
	media-libs/libsdl[joystick,opengl,video]
	media-libs/speex
	virtual/jpeg
	x11-libs/libXext
	x11-libs/libX11
	x11-libs/libXau
	x11-libs/libXdmcp
	curl? ( net-misc/curl )
	openal? ( media-libs/openal )
	vorbis? ( media-libs/libvorbis )"
DEPEND="${RDEPEND}
	app-arch/unzip"

MY_S=${WORKDIR}/${PN}-engine-source-${PV}
BUILD_DIR=${PN}-build
DIR=${GAMES_DATADIR}/${PN}

src_prepare() {
	cd "${WORKDIR}"
	epatch "${FILESDIR}"/${P}-makefile.patch \
		"${FILESDIR}"/${P}-unbundling.patch
	cd "${MY_S}"
	touch jpegint.h
}

src_compile() {
	local myopts

	# enable voip, disable mumble
	# also build always server and use smp by default
	myopts="USE_INTERNAL_SPEEX=0 USE_VOIP=1 USE_MUMBLE=0
		BUILD_SERVER=1 BUILD_CLIENT_SMP=1 USE_LOCAL_HEADERS=0"
	use curl || myopts="${myopts} USE_CURL=0"
	use openal || myopts="${myopts} USE_OPENAL=0"
	use vorbis || myopts="${myopts} USE_CODEC_VORBIS=0"

	cd "${MY_S}"
	emake \
		V=1 \
		DEFAULT_BASEDIR="${DIR}" \
		BR="${BUILD_DIR}" \
		${myopts} \
		OPTIMIZE= \
		|| die "emake failed"
}

src_install() {
	cd "${MY_S}"/"${BUILD_DIR}"
	newgamesbin openarena-smp.* "${PN}" || die "binary install failed"
	newgamesbin oa_ded.* "${PN}-ded" || die "dedicated binary not found"
	cd "${S}"

	insinto "${DIR}"
	doins -r baseoa missionpack || die "doins -r failed"

	dodoc CHANGES CREDITS LINUXNOTES README
	newicon "${MY_S}"/misc/quake3.png ${PN}.png
	make_desktop_entry ${PN} "OpenArena"

	prepgamesdirs
}






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

* [gentoo-commits] gentoo-x86 commit in games-fps/openarena: ChangeLog openarena-0.8.8.ebuild
@ 2012-06-20 17:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-20 17:52 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/20 17:52:47

  Modified:             ChangeLog openarena-0.8.8.ebuild
  Log:
  Stable for amd64, wrt bug #422123
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 games-fps/openarena/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	18 May 2012 04:56:13 -0000	1.23
+++ ChangeLog	20 Jun 2012 17:52:47 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for games-fps/openarena
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.23 2012/05/18 04:56:13 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.24 2012/06/20 17:52:47 ago Exp $
+
+  20 Jun 2012; Agostino Sarubbo <ago@gentoo.org> openarena-0.8.8.ebuild:
+  Stable for amd64, wrt bug #422123
 
 *openarena-0.8.8 (18 May 2012)
 



1.2                  games-fps/openarena/openarena-0.8.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild?r1=1.1&r2=1.2

Index: openarena-0.8.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- openarena-0.8.8.ebuild	18 May 2012 04:56:13 -0000	1.1
+++ openarena-0.8.8.ebuild	20 Jun 2012 17:52:47 -0000	1.2
@@ -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-fps/openarena/openarena-0.8.8.ebuild,v 1.1 2012/05/18 04:56:13 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v 1.2 2012/06/20 17:52:47 ago Exp $
 
 EAPI=2
 inherit eutils flag-o-matic versionator games
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+curl +openal +vorbis"
 
 RDEPEND="virtual/opengl






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

* [gentoo-commits] gentoo-x86 commit in games-fps/openarena: ChangeLog openarena-0.8.8.ebuild
@ 2012-07-04  3:16 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-07-04  3:16 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/07/04 03:16:53

  Modified:             ChangeLog openarena-0.8.8.ebuild
  Log:
  marked x86 per bug 422123
  
  (Portage version: 2.2.0_alpha115/cvs/Linux i686)

Revision  Changes    Path
1.25                 games-fps/openarena/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	20 Jun 2012 17:52:47 -0000	1.24
+++ ChangeLog	4 Jul 2012 03:16:53 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for games-fps/openarena
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.24 2012/06/20 17:52:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.25 2012/07/04 03:16:53 jdhore Exp $
+
+  04 Jul 2012; Jeff Horelick <jdhore@gentoo.org> openarena-0.8.8.ebuild:
+  marked x86 per bug 422123
 
   20 Jun 2012; Agostino Sarubbo <ago@gentoo.org> openarena-0.8.8.ebuild:
   Stable for amd64, wrt bug #422123



1.3                  games-fps/openarena/openarena-0.8.8.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild?r1=1.2&r2=1.3

Index: openarena-0.8.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- openarena-0.8.8.ebuild	20 Jun 2012 17:52:47 -0000	1.2
+++ openarena-0.8.8.ebuild	4 Jul 2012 03:16:53 -0000	1.3
@@ -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-fps/openarena/openarena-0.8.8.ebuild,v 1.2 2012/06/20 17:52:47 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v 1.3 2012/07/04 03:16:53 jdhore Exp $
 
 EAPI=2
 inherit eutils flag-o-matic versionator games
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+curl +openal +vorbis"
 
 RDEPEND="virtual/opengl






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

* [gentoo-commits] gentoo-x86 commit in games-fps/openarena: ChangeLog openarena-0.8.8.ebuild
@ 2015-01-31  6:38 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 4+ messages in thread
From: Alfredo Tupone (tupone) @ 2015-01-31  6:38 UTC (permalink / raw
  To: gentoo-commits

tupone      15/01/31 06:38:58

  Modified:             ChangeLog openarena-0.8.8.ebuild
  Log:
  EAPI 5
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)

Revision  Changes    Path
1.27                 games-fps/openarena/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-fps/openarena/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	31 Jan 2013 08:46:50 -0000	1.26
+++ ChangeLog	31 Jan 2015 06:38:58 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for games-fps/openarena
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.26 2013/01/31 08:46:50 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/ChangeLog,v 1.27 2015/01/31 06:38:58 tupone Exp $
+
+  30 Jan 2015; Tupone Alfredo <tupone@gentoo.org> openarena-0.8.8.ebuild:
+  EAPI 5
 
   31 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org>
   -files/openarena-0.8.5-bots-strcpy-fix.patch,



1.4                  games-fps/openarena/openarena-0.8.8.ebuild

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

Index: openarena-0.8.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- openarena-0.8.8.ebuild	4 Jul 2012 03:16:53 -0000	1.3
+++ openarena-0.8.8.ebuild	31 Jan 2015 06:38:58 -0000	1.4
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v 1.3 2012/07/04 03:16:53 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/openarena/openarena-0.8.8.ebuild,v 1.4 2015/01/31 06:38:58 tupone Exp $
 
-EAPI=2
+EAPI=5
 inherit eutils flag-o-matic versionator games
 
 DESCRIPTION="Open-source replacement for Quake 3 Arena"
@@ -58,18 +58,17 @@
 		DEFAULT_BASEDIR="${DIR}" \
 		BR="${BUILD_DIR}" \
 		${myopts} \
-		OPTIMIZE= \
-		|| die "emake failed"
+		OPTIMIZE=
 }
 
 src_install() {
 	cd "${MY_S}"/"${BUILD_DIR}"
-	newgamesbin openarena-smp.* "${PN}" || die "binary install failed"
-	newgamesbin oa_ded.* "${PN}-ded" || die "dedicated binary not found"
+	newgamesbin openarena-smp.* "${PN}"
+	newgamesbin oa_ded.* "${PN}-ded"
 	cd "${S}"
 
 	insinto "${DIR}"
-	doins -r baseoa missionpack || die "doins -r failed"
+	doins -r baseoa missionpack
 
 	dodoc CHANGES CREDITS LINUXNOTES README
 	newicon "${MY_S}"/misc/quake3.png ${PN}.png





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

end of thread, other threads:[~2015-01-31  6:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-04  3:16 [gentoo-commits] gentoo-x86 commit in games-fps/openarena: ChangeLog openarena-0.8.8.ebuild Jeff Horelick (jdhore)
  -- strict thread matches above, loose matches on Subject: below --
2015-01-31  6:38 Alfredo Tupone (tupone)
2012-06-20 17:52 Agostino Sarubbo (ago)
2012-05-18  4:56 Michael Sterrett (mr_bones_)

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