public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild
@ 2010-05-03 21:10 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2010-05-03 21:10 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    10/05/03 21:10:07

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

Revision  Changes    Path
1.89                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog	5 Apr 2010 16:04:45 -0000	1.88
+++ ChangeLog	3 May 2010 21:10:07 -0000	1.89
@@ -1,6 +1,12 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.88 2010/04/05 16:04:45 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.89 2010/05/03 21:10:07 mr_bones_ Exp $
+
+*scummvm-1.1.1 (03 May 2010)
+
+  03 May 2010; Michael Sterrett <mr_bones_@gentoo.org>
+  +scummvm-1.1.1.ebuild:
+  version bump
 
 *scummvm-1.1.0 (05 Apr 2010)
 



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

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

Index: scummvm-1.1.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.1 2010/05/03 21:10:07 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"
RESTRICT="test"  # it only looks like there's a test there #77507

RDEPEND=">=media-libs/libsdl-1.2.2[audio,joystick,video]
	>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 )
	mp3? ( media-libs/libmad )
	flac? ( media-libs/flac )
	fluidsynth? ( media-sound/fluidsynth )"
DEPEND="${RDEPEND}
	x86? ( dev-lang/nasm )"

S=${WORKDIR}/${P/_/}

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}"

	if use vorbis || use ogg ; then
		myconf="${myconf} --enable-vorbis"
	else
		myconf="${myconf} --disable-vorbis"
	fi

	# 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 \
		--enable-verbose-build \
		--prefix=/usr \
		--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 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] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild
@ 2010-06-24 21:16 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2010-06-24 21:16 UTC (permalink / raw
  To: gentoo-commits

pacho       10/06/24 21:16:42

  Modified:             ChangeLog scummvm-1.1.1.ebuild
  Log:
  stable amd64, bug 322633
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.90                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	3 May 2010 21:10:07 -0000	1.89
+++ ChangeLog	24 Jun 2010 21:16:42 -0000	1.90
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.89 2010/05/03 21:10:07 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.90 2010/06/24 21:16:42 pacho Exp $
+
+  24 Jun 2010; Pacho Ramos <pacho@gentoo.org> scummvm-1.1.1.ebuild:
+  stable amd64, bug 322633
 
 *scummvm-1.1.1 (03 May 2010)
 



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

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

Index: scummvm-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scummvm-1.1.1.ebuild	3 May 2010 21:10:07 -0000	1.1
+++ scummvm-1.1.1.ebuild	24 Jun 2010 21:16:42 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.1 2010/05/03 21:10:07 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.2 2010/06/24 21:16:42 pacho 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] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild
@ 2010-06-25 13:44 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-06-25 13:44 UTC (permalink / raw
  To: gentoo-commits

fauli       10/06/25 13:44:17

  Modified:             ChangeLog scummvm-1.1.1.ebuild
  Log:
  stable x86, bug 322633
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.91                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	24 Jun 2010 21:16:42 -0000	1.90
+++ ChangeLog	25 Jun 2010 13:44:17 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.90 2010/06/24 21:16:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.91 2010/06/25 13:44:17 fauli Exp $
+
+  25 Jun 2010; Christian Faulhammer <fauli@gentoo.org> scummvm-1.1.1.ebuild:
+  stable x86, bug 322633
 
   24 Jun 2010; Pacho Ramos <pacho@gentoo.org> scummvm-1.1.1.ebuild:
   stable amd64, bug 322633



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

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

Index: scummvm-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scummvm-1.1.1.ebuild	24 Jun 2010 21:16:42 -0000	1.2
+++ scummvm-1.1.1.ebuild	25 Jun 2010 13:44:17 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.2 2010/06/24 21:16:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.3 2010/06/25 13:44:17 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] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild
@ 2010-07-06 11:44 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 6+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-06 11:44 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/07/06 11:44:56

  Modified:             ChangeLog scummvm-1.1.1.ebuild
  Log:
  ppc64 stable wrt #322633
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.92                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.91&r2=1.92

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	25 Jun 2010 13:44:17 -0000	1.91
+++ ChangeLog	6 Jul 2010 11:44:56 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.91 2010/06/25 13:44:17 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.92 2010/07/06 11:44:56 ssuominen Exp $
+
+  06 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> scummvm-1.1.1.ebuild:
+  ppc64 stable wrt #322633
 
   25 Jun 2010; Christian Faulhammer <fauli@gentoo.org> scummvm-1.1.1.ebuild:
   stable x86, bug 322633



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

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

Index: scummvm-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scummvm-1.1.1.ebuild	25 Jun 2010 13:44:17 -0000	1.3
+++ scummvm-1.1.1.ebuild	6 Jul 2010 11:44:56 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.3 2010/06/25 13:44:17 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.4 2010/07/06 11:44:56 ssuominen 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] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild
@ 2010-07-11 17:57 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-11 17:57 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/11 17:57:28

  Modified:             ChangeLog scummvm-1.1.1.ebuild
  Log:
  sparc stable wrt #322633
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.93                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.93&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.93&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.92&r2=1.93

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	6 Jul 2010 11:44:56 -0000	1.92
+++ ChangeLog	11 Jul 2010 17:57:28 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.92 2010/07/06 11:44:56 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.93 2010/07/11 17:57:28 armin76 Exp $
+
+  11 Jul 2010; Raúl Porcel <armin76@gentoo.org> scummvm-1.1.1.ebuild:
+  sparc stable wrt #322633
 
   06 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> scummvm-1.1.1.ebuild:
   ppc64 stable wrt #322633



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

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

Index: scummvm-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- scummvm-1.1.1.ebuild	6 Jul 2010 11:44:56 -0000	1.4
+++ scummvm-1.1.1.ebuild	11 Jul 2010 17:57:28 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.4 2010/07/06 11:44:56 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.5 2010/07/11 17:57:28 armin76 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] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild
@ 2010-07-19 18:59 Joseph Jezak (josejx)
  0 siblings, 0 replies; 6+ messages in thread
From: Joseph Jezak (josejx) @ 2010-07-19 18:59 UTC (permalink / raw
  To: gentoo-commits

josejx      10/07/19 18:59:06

  Modified:             ChangeLog scummvm-1.1.1.ebuild
  Log:
  Marked ppc stable for bug #322633.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.94                 games-engines/scummvm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.94&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?rev=1.94&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/scummvm/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	11 Jul 2010 17:57:28 -0000	1.93
+++ ChangeLog	19 Jul 2010 18:59:05 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.93 2010/07/11 17:57:28 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.94 2010/07/19 18:59:05 josejx Exp $
+
+  19 Jul 2010; Joseph Jezak <josejx@gentoo.org> scummvm-1.1.1.ebuild:
+  Marked ppc stable for bug #322633.
 
   11 Jul 2010; Raúl Porcel <armin76@gentoo.org> scummvm-1.1.1.ebuild:
   sparc stable wrt #322633



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

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

Index: scummvm-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- scummvm-1.1.1.ebuild	11 Jul 2010 17:57:28 -0000	1.5
+++ scummvm-1.1.1.ebuild	19 Jul 2010 18:59:05 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.5 2010/07/11 17:57:28 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-1.1.1.ebuild,v 1.6 2010/07/19 18:59:05 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] 6+ messages in thread

end of thread, other threads:[~2010-07-19 18:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-06 11:44 [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-1.1.1.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2010-07-19 18:59 Joseph Jezak (josejx)
2010-07-11 17:57 Raul Porcel (armin76)
2010-06-25 13:44 Christian Faulhammer (fauli)
2010-06-24 21:16 Pacho Ramos (pacho)
2010-05-03 21:10 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