public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-strategy/scorched3d: ChangeLog scorched3d-41.ebuild
@ 2007-10-19 23:44 Tristan Heaven (nyhm)
  0 siblings, 0 replies; 2+ messages in thread
From: Tristan Heaven (nyhm) @ 2007-10-19 23:44 UTC (permalink / raw
  To: gentoo-commits

nyhm        07/10/19 23:44:20

  Modified:             ChangeLog
  Added:                scorched3d-41.ebuild
  Log:
  Version bump, bug #195981
  (Portage version: 2.1.3.15)

Revision  Changes    Path
1.46                 games-strategy/scorched3d/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	28 Sep 2007 23:52:49 -0000	1.45
+++ ChangeLog	19 Oct 2007 23:44:20 -0000	1.46
@@ -1,6 +1,11 @@
 # ChangeLog for games-strategy/scorched3d
 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/ChangeLog,v 1.45 2007/09/28 23:52:49 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/ChangeLog,v 1.46 2007/10/19 23:44:20 nyhm Exp $
+
+*scorched3d-41 (19 Oct 2007)
+
+  19 Oct 2007; Tristan Heaven <nyhm@gentoo.org> +scorched3d-41.ebuild:
+  Version bump, bug #195981
 
   28 Sep 2007; Ryan Hill <dirtyepic@gentoo.org> scorched3d-40.ebuild,
   scorched3d-40.1d.ebuild:



1.1                  games-strategy/scorched3d/scorched3d-41.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild?rev=1.1&content-type=text/plain

Index: scorched3d-41.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild,v 1.1 2007/10/19 23:44:20 nyhm Exp $

inherit eutils wxwidgets games

DESCRIPTION="Multi-player tank battle in 3D (OpenGL)"
HOMEPAGE="http://www.scorched3d.co.uk/"
SRC_URI="mirror://sourceforge/${PN}/Scorched3D-${PV}-src.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="dedicated mysql"

DEPEND="media-libs/libsdl
	media-libs/sdl-net
	media-libs/libpng
	media-libs/jpeg
	!dedicated? (
		virtual/opengl
		virtual/glu
		media-libs/libogg
		media-libs/libvorbis
		media-libs/openal
		media-libs/freealut
		=x11-libs/wxGTK-2.6*
		>=media-libs/freetype-2
		>=sci-libs/fftw-3
	)
	mysql? ( virtual/mysql )"

S=${WORKDIR}/scorched

pkg_setup() {
	games_pkg_setup
	if ! use dedicated ; then
		WX_GTK_VER="2.6" need-wxwidgets unicode
	fi
}

src_compile() {
	egamesconf \
		--disable-dependency-tracking \
		--datadir="${GAMES_DATADIR}/${PN}" \
		--with-docdir="/usr/share/doc/${PF}" \
		--with-wx-config="${WX_CONFIG}" \
		$(use_with mysql) \
		$(use_enable dedicated serveronly) \
		|| die
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	if ! use dedicated ; then
		newicon data/windows/tank.bmp ${PN}.bmp
		make_desktop_entry ${PN} "Scorched 3D" /usr/share/pixmaps/${PN}.bmp
	fi
	prepgamesdirs
}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in games-strategy/scorched3d: ChangeLog scorched3d-41.ebuild
@ 2007-10-20  2:33 Tristan Heaven (nyhm)
  0 siblings, 0 replies; 2+ messages in thread
From: Tristan Heaven (nyhm) @ 2007-10-20  2:33 UTC (permalink / raw
  To: gentoo-commits

nyhm        07/10/20 02:33:45

  Modified:             ChangeLog scorched3d-41.ebuild
  Log:
  Fix for FEATURES=userpriv, bug #196478
  (Portage version: 2.1.3.15)

Revision  Changes    Path
1.47                 games-strategy/scorched3d/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	19 Oct 2007 23:44:20 -0000	1.46
+++ ChangeLog	20 Oct 2007 02:33:45 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for games-strategy/scorched3d
 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/ChangeLog,v 1.46 2007/10/19 23:44:20 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/ChangeLog,v 1.47 2007/10/20 02:33:45 nyhm Exp $
+
+  20 Oct 2007; Tristan Heaven <nyhm@gentoo.org> scorched3d-41.ebuild:
+  Fix for FEATURES=userpriv, bug #196478
 
 *scorched3d-41 (19 Oct 2007)
 



1.2                  games-strategy/scorched3d/scorched3d-41.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild?r1=1.1&r2=1.2

Index: scorched3d-41.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scorched3d-41.ebuild	19 Oct 2007 23:44:20 -0000	1.1
+++ scorched3d-41.ebuild	20 Oct 2007 02:33:45 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild,v 1.1 2007/10/19 23:44:20 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-41.ebuild,v 1.2 2007/10/20 02:33:45 nyhm Exp $
 
 inherit eutils wxwidgets games
 
@@ -42,6 +42,9 @@
 src_compile() {
 	egamesconf \
 		--disable-dependency-tracking \
+		--with-fftw=/usr \
+		--with-ogg=/usr \
+		--with-vorbis=/usr \
 		--datadir="${GAMES_DATADIR}/${PN}" \
 		--with-docdir="/usr/share/doc/${PF}" \
 		--with-wx-config="${WX_CONFIG}" \



-- 
gentoo-commits@gentoo.org mailing list



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

end of thread, other threads:[~2007-10-20  2:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-19 23:44 [gentoo-commits] gentoo-x86 commit in games-strategy/scorched3d: ChangeLog scorched3d-41.ebuild Tristan Heaven (nyhm)
  -- strict thread matches above, loose matches on Subject: below --
2007-10-20  2:33 Tristan Heaven (nyhm)

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