public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-04-28 18:20 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-04-28 18:20 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/04/28 18:20:21

  Modified:             ChangeLog
  Added:                scummvm-0.13.1.ebuild
  Log:
  version bump
  (Portage version: 2.1.6.7/cvs/Linux i686)

Revision  Changes    Path
1.68                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	13 Mar 2009 22:10:49 -0000	1.67
+++ ChangeLog	28 Apr 2009 18:20:21 -0000	1.68
@@ -1,6 +1,12 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.67 2009/03/13 22:10:49 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.68 2009/04/28 18:20:21 mr_bones_ Exp $
+
+*scummvm-0.13.1 (28 Apr 2009)
+
+  28 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  +scummvm-0.13.1.ebuild:
+  version bump
 
   13 Mar 2009; Joseph Jezak <josejx@gentoo.org> scummvm-0.12.0.ebuild:
   Marked ppc stable for bug #255573.



1.1                  games-engines/scummvm/scummvm-0.13.1.ebuild

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

Index: scummvm-0.13.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.1 2009/04/28 18:20:21 mr_bones_ Exp $

EAPI=2
inherit eutils games

DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts adventures"
HOMEPAGE="http://scummvm.sourceforge.net/"
SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="alsa debug flac fluidsynth mp3 ogg vorbis zlib"
RESTRICT="test"  # it only looks like there's a test there #77507

RDEPEND=">=media-libs/libsdl-1.2.2
	>media-libs/libmpeg2-0.3.1
	ogg? ( media-libs/libogg media-libs/libvorbis )
	vorbis? ( media-libs/libogg media-libs/libvorbis )
	alsa? ( >=media-libs/alsa-lib-0.9[midi] )
	mp3? ( media-libs/libmad )
	flac? ( media-libs/flac )
	fluidsynth? ( media-sound/fluidsynth )
	zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
	x86? ( dev-lang/nasm )"

src_prepare() {
	# -g isn't needed for nasm here
	sed -i \
		-e '/NASMFLAGS/ s/-g//' \
		Makefile.common \
		|| die "sed failed"
	sed -i \
		-e '/INSTALL.*doc\//d' \
		-e '/INSTALL.*\/pixmaps/d' \
		-e 's/-s //' \
		ports.mk \
		|| die "sed failed"
}

src_configure() {
	local myconf="--backend=sdl" # x11 backend no worky (bug #83502)

	# let the engine find its data files in the right place (bug #178116)
	myconf="${myconf} --datadir=${GAMES_DATADIR}"

	( use vorbis || use ogg ) \
		&& myconf="${myconf} --enable-vorbis" \
		|| myconf="${myconf} --disable-vorbis --disable-mpeg2"

	# bug #137547
	use fluidsynth || myconf="${myconf} --disable-fluidsynth"

	# NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
	# mpeg2 support needs vorbis (bug #79149) so turn it off if -oggvorbis
	./configure \
		--prefix=/usr \
		--bindir="${GAMES_BINDIR}" \
		--datadir="${GAMES_DATADIR}" \
		--libdir="${GAMES_LIBDIR}" \
		$(use_enable debug) \
		$(use_enable alsa) \
		$(use_enable mp3 mad) \
		$(use_enable flac) \
		$(use_enable zlib) \
		$(use_enable x86 nasm) \
		${myconf} \
		|| die "configure failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS NEWS README TODO
	doicon icons/scummvm.svg
	make_desktop_entry scummvm ScummVM scummvm "Game;AdventureGame"
	prepgamesdirs
}






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-05-25 13:42 Alfredo Tupone (tupone)
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone (tupone) @ 2009-05-25 13:42 UTC (permalink / raw
  To: gentoo-commits

tupone      09/05/25 13:42:31

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  Fix build with USE=alsa and glibc-2.10. Bug #270700
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.69                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	28 Apr 2009 18:20:21 -0000	1.68
+++ ChangeLog	25 May 2009 13:42:31 -0000	1.69
@@ -1,6 +1,10 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.68 2009/04/28 18:20:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.69 2009/05/25 13:42:31 tupone Exp $
+
+  25 May 2009; Alfredo Tupone <tupone@gentoo.org>
+  +files/scummvm-0.13.1-glibc210.patch, scummvm-0.13.1.ebuild:
+  Fix build with USE=alsa and glibc-2.10. Bug #270700 by Francisco J. Vazquez
 
 *scummvm-0.13.1 (28 Apr 2009)
 
@@ -23,7 +27,7 @@
   25 Jan 2009; Brent Baude <ranger@gentoo.org> scummvm-0.12.0.ebuild:
   stable ppc64, bug 255573
 
-  23 Jan 2009; Raúl Porcel <armin76@gentoo.org> scummvm-0.12.0.ebuild:
+  23 Jan 2009; Raúl Porcel <armin76@gentoo.org> scummvm-0.12.0.ebuild:
   x86 stable wrt #255573
 
   21 Jan 2009; Ferris McCormick <fmccor@gentoo.org> scummvm-0.12.0.ebuild:
@@ -48,10 +52,10 @@
   11 Jun 2008; nixnut <nixnut@gentoo.org> scummvm-0.11.1.ebuild:
   Stable on ppc wrt bug 225619
 
-  10 Jun 2008; Raúl Porcel <armin76@gentoo.org> scummvm-0.11.1.ebuild:
+  10 Jun 2008; Raúl Porcel <armin76@gentoo.org> scummvm-0.11.1.ebuild:
   sparc/x86 stable wrt #225619
 
-  09 Jun 2008; Raúl Porcel <armin76@gentoo.org> scummvm-0.10.0.ebuild:
+  09 Jun 2008; Raúl Porcel <armin76@gentoo.org> scummvm-0.10.0.ebuild:
   sparc stable
 
   24 May 2008; Joseph Jezak <josejx@gentoo.org> scummvm-0.10.0.ebuild:
@@ -77,7 +81,7 @@
   scummvm-0.10.0.ebuild:
   make the nasm call more yasm friendly
 
-  06 Jul 2007; Diego Pettenò <flameeyes@gentoo.org> scummvm-0.10.0.ebuild:
+  06 Jul 2007; Diego Pettenò <flameeyes@gentoo.org> scummvm-0.10.0.ebuild:
   Add a pkg_setup check for midi USE flag in alsa-lib.
 
   05 Jul 2007; Markus Rothe <corsair@gentoo.org> scummvm-0.10.0.ebuild:
@@ -123,7 +127,7 @@
   27 Oct 2006; Steve Dibb <beandog@gentoo.org> scummvm-0.9.0.ebuild:
   amd64 stable, bug 144170
 
-  19 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> scummvm-0.8.1.ebuild,
+  19 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> scummvm-0.8.1.ebuild,
   scummvm-0.9.0.ebuild:
   Depend on 1.1.2 version of flac, as the 1.1.3 version changes API.
 
@@ -239,7 +243,7 @@
 
   01 Jun 2004; Mike Frysinger <vapier@gentoo.org> +files/0.6.0-gcc34.patch,
   scummvm-0.6.0.ebuild:
-  Add gcc-3.4 patch #49304 by Robert Führicht.
+  Add gcc-3.4 patch #49304 by Robert Führicht.
 
   11 Apr 2004; Jason Wever <weeve@gentoo.org> scummvm-0.6.0.ebuild:
   Added ~sparc keyword.
@@ -309,10 +313,10 @@
   23 Sep 2002; Mike Frysinger <vapier@gentoo.org> :
   Changed SRC_URI to use mirror: and updated LICENSE
 
-  17 Jul 2002; Jose Alberto Suárez López <bass@gentoo.org> scummvm-0.2.0.ebuild :
+  17 Jul 2002; Jose Alberto Suárez López <bass@gentoo.org> scummvm-0.2.0.ebuild :
   Added KEYWORDS, SLOT.
 
-  17 Jul 2002; Jose Alberto Suárez López <bass@gentoo.org> scummvm-0.2.0-r1.ebuild :
+  17 Jul 2002; Jose Alberto Suárez López <bass@gentoo.org> scummvm-0.2.0-r1.ebuild :
   Added KEYWORDS, SLOT.
 
   17 Jun 2002; Ryan Phillips <rphillips@gentoo.org> scummvm-0.2.0-r1.ebuild :



1.2                  games-engines/scummvm/scummvm-0.13.1.ebuild

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

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scummvm-0.13.1.ebuild	28 Apr 2009 18:20:21 -0000	1.1
+++ scummvm-0.13.1.ebuild	25 May 2009 13:42:31 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.1 2009/04/28 18:20:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.2 2009/05/25 13:42:31 tupone Exp $
 
 EAPI=2
 inherit eutils games
@@ -39,6 +39,7 @@
 		-e 's/-s //' \
 		ports.mk \
 		|| die "sed failed"
+	epatch "${FILESDIR}"/${P}-glibc210.patch
 }
 
 src_configure() {






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-07-01 19:01 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-07-01 19:01 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/07/01 19:01:40

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  zlib is required
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.71                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	26 May 2009 06:48:38 -0000	1.70
+++ ChangeLog	1 Jul 2009 19:01:40 -0000	1.71
@@ -1,6 +1,10 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.70 2009/05/26 06:48:38 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.71 2009/07/01 19:01:40 mr_bones_ Exp $
+
+  01 Jul 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  scummvm-0.13.1.ebuild:
+  zlib is required
 
   25 May 2009; Alfredo Tupone <tupone@gentoo.org>
   +files/scummvm-0.13.1-glibc210.patch, scummvm-0.13.1.ebuild:



1.3                  games-engines/scummvm/scummvm-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?r1=1.2&r2=1.3

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scummvm-0.13.1.ebuild	25 May 2009 13:42:31 -0000	1.2
+++ scummvm-0.13.1.ebuild	1 Jul 2009 19:01:40 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.2 2009/05/25 13:42:31 tupone Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.3 2009/07/01 19:01:40 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils games
@@ -12,18 +12,18 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="alsa debug flac fluidsynth mp3 ogg vorbis zlib"
+IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
 RESTRICT="test"  # it only looks like there's a test there #77507
 
 RDEPEND=">=media-libs/libsdl-1.2.2
 	>media-libs/libmpeg2-0.3.1
+	sys-libs/zlib
 	ogg? ( media-libs/libogg media-libs/libvorbis )
 	vorbis? ( media-libs/libogg media-libs/libvorbis )
 	alsa? ( >=media-libs/alsa-lib-0.9[midi] )
 	mp3? ( media-libs/libmad )
 	flac? ( media-libs/flac )
-	fluidsynth? ( media-sound/fluidsynth )
-	zlib? ( sys-libs/zlib )"
+	fluidsynth? ( media-sound/fluidsynth )"
 DEPEND="${RDEPEND}
 	x86? ( dev-lang/nasm )"
 
@@ -62,11 +62,11 @@
 		--bindir="${GAMES_BINDIR}" \
 		--datadir="${GAMES_DATADIR}" \
 		--libdir="${GAMES_LIBDIR}" \
+		--enable-zlib \
 		$(use_enable debug) \
 		$(use_enable alsa) \
 		$(use_enable mp3 mad) \
 		$(use_enable flac) \
-		$(use_enable zlib) \
 		$(use_enable x86 nasm) \
 		${myconf} \
 		|| die "configure failed"






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-07-01 19:52 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 8+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-07-01 19:52 UTC (permalink / raw
  To: gentoo-commits

fauli       09/07/01 19:52:48

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  stable x86, bug 276010
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.72                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.72&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.72&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.71&r2=1.72

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	1 Jul 2009 19:01:40 -0000	1.71
+++ ChangeLog	1 Jul 2009 19:52:48 -0000	1.72
@@ -1,6 +1,10 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.71 2009/07/01 19:01:40 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.72 2009/07/01 19:52:48 fauli Exp $
+
+  01 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
+  scummvm-0.13.1.ebuild:
+  stable x86, bug 276010
 
   01 Jul 2009; Michael Sterrett <mr_bones_@gentoo.org>
   scummvm-0.13.1.ebuild:



1.4                  games-engines/scummvm/scummvm-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?r1=1.3&r2=1.4

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scummvm-0.13.1.ebuild	1 Jul 2009 19:01:40 -0000	1.3
+++ scummvm-0.13.1.ebuild	1 Jul 2009 19:52:48 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.3 2009/07/01 19:01:40 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.4 2009/07/01 19:52:48 fauli Exp $
 
 EAPI=2
 inherit eutils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-07-07 15:45 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 8+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-07-07 15:45 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/07/07 15:45:22

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  Sparc stable, Bug #276010.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.73                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	1 Jul 2009 19:52:48 -0000	1.72
+++ ChangeLog	7 Jul 2009 15:45:22 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.72 2009/07/01 19:52:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.73 2009/07/07 15:45:22 fmccor Exp $
+
+  07 Jul 2009; Ferris McCormick <fmccor@gentoo.org> scummvm-0.13.1.ebuild:
+  Sparc stable, Bug #276010.
 
   01 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
   scummvm-0.13.1.ebuild:



1.5                  games-engines/scummvm/scummvm-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?r1=1.4&r2=1.5

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- scummvm-0.13.1.ebuild	1 Jul 2009 19:52:48 -0000	1.4
+++ scummvm-0.13.1.ebuild	7 Jul 2009 15:45:22 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.4 2009/07/01 19:52:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.5 2009/07/07 15:45:22 fmccor Exp $
 
 EAPI=2
 inherit eutils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-07-07 18:15 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-07-07 18:15 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/07/07 18:15:25

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  add use-based deps for libsdl (bug #276968)
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.74                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	7 Jul 2009 15:45:22 -0000	1.73
+++ ChangeLog	7 Jul 2009 18:15:25 -0000	1.74
@@ -1,6 +1,10 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.73 2009/07/07 15:45:22 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.74 2009/07/07 18:15:25 mr_bones_ Exp $
+
+  07 Jul 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  scummvm-0.13.1.ebuild:
+  add use-based deps for libsdl (bug #276968)
 
   07 Jul 2009; Ferris McCormick <fmccor@gentoo.org> scummvm-0.13.1.ebuild:
   Sparc stable, Bug #276010.



1.6                  games-engines/scummvm/scummvm-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?r1=1.5&r2=1.6

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- scummvm-0.13.1.ebuild	7 Jul 2009 15:45:22 -0000	1.5
+++ scummvm-0.13.1.ebuild	7 Jul 2009 18:15:25 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.5 2009/07/07 15:45:22 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.6 2009/07/07 18:15:25 mr_bones_ Exp $
 
 EAPI=2
 inherit eutils games
@@ -15,7 +15,7 @@
 IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
 RESTRICT="test"  # it only looks like there's a test there #77507
 
-RDEPEND=">=media-libs/libsdl-1.2.2
+RDEPEND=">=media-libs/libsdl-1.2.2[joystick,video]
 	>media-libs/libmpeg2-0.3.1
 	sys-libs/zlib
 	ogg? ( media-libs/libogg media-libs/libvorbis )






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-07-13 17:58 Joseph Jezak (josejx)
  0 siblings, 0 replies; 8+ messages in thread
From: Joseph Jezak (josejx) @ 2009-07-13 17:58 UTC (permalink / raw
  To: gentoo-commits

josejx      09/07/13 17:58:30

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  Marked ppc/ppc64 stable for bug #276010.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.75                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	7 Jul 2009 18:15:25 -0000	1.74
+++ ChangeLog	13 Jul 2009 17:58:30 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.74 2009/07/07 18:15:25 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.75 2009/07/13 17:58:30 josejx Exp $
+
+  13 Jul 2009; Joseph Jezak <josejx@gentoo.org> scummvm-0.13.1.ebuild:
+  Marked ppc/ppc64 stable for bug #276010.
 
   07 Jul 2009; Michael Sterrett <mr_bones_@gentoo.org>
   scummvm-0.13.1.ebuild:



1.7                  games-engines/scummvm/scummvm-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?r1=1.6&r2=1.7

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- scummvm-0.13.1.ebuild	7 Jul 2009 18:15:25 -0000	1.6
+++ scummvm-0.13.1.ebuild	13 Jul 2009 17:58:30 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.6 2009/07/07 18:15:25 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.7 2009/07/13 17:58:30 josejx Exp $
 
 EAPI=2
 inherit eutils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild
@ 2009-08-01 23:55 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 8+ messages in thread
From: Tony Vroon (chainsaw) @ 2009-08-01 23:55 UTC (permalink / raw
  To: gentoo-commits

chainsaw    09/08/01 23:55:29

  Modified:             ChangeLog scummvm-0.13.1.ebuild
  Log:
  Marked stable on AMD64 as requested by Michael "Mr. Bones" Sterrett <mr_bones_@gentoo.org> in bug #276010. Compile-tested on a dual hex-core Opteron with USE="alsa flac mp3 ogg vorbis -debug -fluidsynth".
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.77                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	1 Aug 2009 06:47:44 -0000	1.76
+++ ChangeLog	1 Aug 2009 23:55:29 -0000	1.77
@@ -1,6 +1,11 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.76 2009/08/01 06:47:44 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.77 2009/08/01 23:55:29 chainsaw Exp $
+
+  01 Aug 2009; <chainsaw@gentoo.org> scummvm-0.13.1.ebuild:
+  Marked stable on AMD64 as requested by Michael "Mr. Bones" Sterrett
+  <mr_bones_@gentoo.org> in bug #276010. Compile-tested on a dual hex-core
+  Opteron with USE="alsa flac mp3 ogg vorbis -debug -fluidsynth".
 
   01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> scummvm-0.12.0.ebuild,
   scummvm-0.13.1.ebuild:



1.9                  games-engines/scummvm/scummvm-0.13.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild?r1=1.8&r2=1.9

Index: scummvm-0.13.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- scummvm-0.13.1.ebuild	1 Aug 2009 06:47:44 -0000	1.8
+++ scummvm-0.13.1.ebuild	1 Aug 2009 23:55:29 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.8 2009/08/01 06:47:44 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.13.1.ebuild,v 1.9 2009/08/01 23:55:29 chainsaw Exp $
 
 EAPI=2
 inherit eutils games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="alsa debug flac fluidsynth mp3 ogg vorbis"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

end of thread, other threads:[~2009-08-01 23:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-01 19:01 [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.13.1.ebuild Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-01 23:55 Tony Vroon (chainsaw)
2009-07-13 17:58 Joseph Jezak (josejx)
2009-07-07 18:15 Michael Sterrett (mr_bones_)
2009-07-07 15:45 Ferris McCormick (fmccor)
2009-07-01 19:52 Christian Faulhammer (fauli)
2009-05-25 13:42 Alfredo Tupone (tupone)
2009-04-28 18:20 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