public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.6.0.ebuild ChangeLog
@ 2012-03-09 18:30 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 2+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2012-03-09 18:30 UTC (permalink / raw
  To: gentoo-commits

scarabeus    12/03/09 18:30:11

  Modified:             ChangeLog
  Added:                xonotic-0.6.0.ebuild
  Log:
  Version bump to 0.6.0. No factical changes apart from bumped dep on d0_blind_id and einfo on media-libs/libtxc_dxtn. Fixes bug#407531.
  
  (Portage version: 2.2.0_alpha90/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  games-fps/xonotic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	11 Nov 2011 09:20:06 -0000	1.4
+++ ChangeLog	9 Mar 2012 18:30:11 -0000	1.5
@@ -1,6 +1,12 @@
 # ChangeLog for games-fps/xonotic
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.4 2011/11/11 09:20:06 phajdan.jr Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.5 2012/03/09 18:30:11 scarabeus Exp $
+
+*xonotic-0.6.0 (09 Mar 2012)
+
+  09 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> +xonotic-0.6.0.ebuild:
+  Version bump to 0.6.0. No factical changes apart from bumped dep on
+  d0_blind_id and einfo on media-libs/libtxc_dxtn. Fixes bug#407531.
 
   11 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xonotic-0.5.0.ebuild:
   x86 stable wrt bug #389269



1.1                  games-fps/xonotic/xonotic-0.6.0.ebuild

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

Index: xonotic-0.6.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.6.0.ebuild,v 1.1 2012/03/09 18:30:11 scarabeus Exp $

EAPI=3
inherit eutils check-reqs games

MY_PN="${PN^}"
DESCRIPTION="Fork of Nexuiz, Deathmatch FPS based on DarkPlaces, an advanced Quake 1 engine"
HOMEPAGE="http://www.xonotic.org/"
SRC_URI="http://dl.xonotic.org/${P}.zip"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa debug dedicated doc sdl"

UIRDEPEND="
	media-libs/libogg
	media-libs/libtheora
	media-libs/libvorbis
	media-libs/libmodplug
	x11-libs/libX11
	x11-libs/libXau
	x11-libs/libXdmcp
	x11-libs/libXext
	x11-libs/libXxf86dga
	x11-libs/libXxf86vm
	virtual/opengl
	media-libs/freetype:2
	alsa? ( media-libs/alsa-lib )
	sdl? ( media-libs/libsdl[X,audio,joystick,opengl,video,alsa?] )"
UIDEPEND="
	x11-proto/xextproto
	x11-proto/xf86dgaproto
	x11-proto/xf86vidmodeproto
	x11-proto/xproto"
RDEPEND="
	sys-libs/zlib
	virtual/jpeg
	media-libs/libpng
	net-misc/curl
	~dev-libs/d0_blind_id-0.5
	!dedicated? ( ${UIRDEPEND} )"
DEPEND="${RDEPEND}
	!dedicated? ( ${UIDEPEND} )"

S=${WORKDIR}/${MY_PN}

pkg_setup() {
	CHECKREQS_DISK_BUILD="1200M"
	CHECKREQS_DISK_USR="950M"
	check-reqs_pkg_setup
	games_pkg_setup
}

src_prepare() {
	rm -rf misc/buildfiles/ # use system libs

	sed -i \
		-e "/^EXE_/s:darkplaces:${PN}:" \
		-e "s:-O3:${CFLAGS}:" \
		-e "/-lm/s:$: ${LDFLAGS}:" \
		-e '/^STRIP/s/strip/true/' \
		source/darkplaces/makefile.inc || die

	if ! use alsa; then
		sed -i \
			-e "/DEFAULT_SNDAPI/s:ALSA:OSS:" \
			source/darkplaces/makefile || die
	fi
}

src_compile() {
	local t="$(use debug && echo debug || echo release)"
	local d

	for d in sv-${t} $(use !dedicated && echo "cl-${t} $(use sdl && echo sdl-${t})")
	do
		emake \
			DP_LINK_TO_LIBJPEG=1 DP_FS_BASEDIR="${GAMES_DATADIR}/${PN}" \
			-C source/darkplaces ${d} || die
	done
}

src_install() {
	if ! use dedicated; then
		dogamesbin source/darkplaces/${PN}-glx || die
		newicon misc/logos/${PN}_icon.svg ${PN}.svg
		make_desktop_entry ${PN}-glx "${MY_PN} (GLX)"

		if use sdl; then
			dogamesbin source/darkplaces/${PN}-sdl || die
			make_desktop_entry ${PN}-sdl "${MY_PN} (SDL)"
		fi
	fi
	dogamesbin source/darkplaces/${PN}-dedicated || die

	dodoc Docs/*.txt
	use doc && dohtml -r Docs

	insinto "${GAMES_DATADIR}/${PN}"
	doins -r key_0.d0pk server data || die
	prepgamesdirs

	einfo "If you are using opensource drivers you should condider installing: "
	einfo "    media-libs/libtxc_dxtn"
}






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

* [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.6.0.ebuild ChangeLog
@ 2012-09-13 21:14 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2012-09-13 21:14 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    12/09/13 21:14:57

  Modified:             xonotic-0.6.0.ebuild ChangeLog
  Log:
  add x11-libs/libXpm dep (bug #434934)
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  games-fps/xonotic/xonotic-0.6.0.ebuild

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

Index: xonotic-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.6.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xonotic-0.6.0.ebuild	1 Jun 2012 06:13:05 -0000	1.3
+++ xonotic-0.6.0.ebuild	13 Sep 2012 21:14:57 -0000	1.4
@@ -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/xonotic/xonotic-0.6.0.ebuild,v 1.3 2012/06/01 06:13:05 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/xonotic-0.6.0.ebuild,v 1.4 2012/09/13 21:14:57 mr_bones_ Exp $
 
 EAPI=3
 inherit eutils check-reqs games
@@ -22,8 +22,9 @@
 	media-libs/libmodplug
 	x11-libs/libX11
 	x11-libs/libXau
-	x11-libs/libXdmcp
+	x11-libs/libXpm
 	x11-libs/libXext
+	x11-libs/libXdmcp
 	x11-libs/libXxf86dga
 	x11-libs/libXxf86vm
 	virtual/opengl



1.8                  games-fps/xonotic/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	1 Jun 2012 06:13:05 -0000	1.7
+++ ChangeLog	13 Sep 2012 21:14:57 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for games-fps/xonotic
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.7 2012/06/01 06:13:05 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/xonotic/ChangeLog,v 1.8 2012/09/13 21:14:57 mr_bones_ Exp $
+
+  13 Sep 2012; Michael Sterrett <mr_bones_@gentoo.org> xonotic-0.6.0.ebuild:
+  add x11-libs/libXpm dep (bug #434934)
 
   01 Jun 2012; Jeff Horelick <jdhore@gentoo.org> xonotic-0.6.0.ebuild:
   marked x86 per bug 418085
@@ -28,4 +31,3 @@
   16 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> +xonotic-0.5.0.ebuild,
   +metadata.xml:
   Initial commit - ebuild based on the one submitted by Nikoli (bug #324159)
-





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

end of thread, other threads:[~2012-09-13 21:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-13 21:14 [gentoo-commits] gentoo-x86 commit in games-fps/xonotic: xonotic-0.6.0.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-09 18:30 Tomas Chvatal (scarabeus)

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