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.12.0.ebuild
@ 2008-09-01  7:05 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2008-09-01  7:05 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    08/09/01 07:05:44

  Modified:             ChangeLog
  Added:                scummvm-0.12.0.ebuild
  Log:
  version bump
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.60                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	22 Jun 2008 06:43:45 -0000	1.59
+++ ChangeLog	1 Sep 2008 07:05:44 -0000	1.60
@@ -1,6 +1,12 @@
 # ChangeLog for games-engines/scummvm
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.59 2008/06/22 06:43:45 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.60 2008/09/01 07:05:44 mr_bones_ Exp $
+
+*scummvm-0.12.0 (01 Sep 2008)
+
+  01 Sep 2008; Michael Sterrett <mr_bones_@gentoo.org>
+  +scummvm-0.12.0.ebuild:
+  version bump
 
   22 Jun 2008; Markus Rothe <corsair@gentoo.org> scummvm-0.11.1.ebuild:
   Stable on ppc64; bug #225619



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.1 2008/09/01 07:05:44 mr_bones_ Exp $

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 )
	mp3? ( media-libs/libmad )
	flac? ( media-libs/flac )
	fluidsynth? ( media-sound/fluidsynth )
	zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
	x86? ( dev-lang/nasm )"

pkg_setup() {
	games_pkg_setup

	if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
		eerror ""
		eerror "To be able to build ${CATEGORY}/${PN} with ALSA support you"
		eerror "need to have built media-libs/alsa-lib with midi USE flag."
		die "Missing midi USE flag on media-libs/alsa-lib"
	fi
}

src_unpack() {
	local f

	unpack ${A}
	cd "${S}"
	# -g isn't needed for nasm here
	sed -i \
		-e '/NASMFLAGS/ s/-g//' \
		./Makefile.common \
		|| die "sed failed"
	for f in graphics/scaler/{hq3x_i386.asm,hq2x_i386.asm}
	do
	cat >> $f <<EOF
	%ifidn __OUTPUT_FORMAT__,elf
	section .note.GNU-stack noalloc noexec nowrite progbits
	%endif
EOF
	done
}

src_compile() {
	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 \
		$(use_enable debug) \
		$(use_enable alsa) \
		$(use_enable mp3 mad) \
		$(use_enable flac) \
		$(use_enable zlib) \
		$(use_enable x86 nasm) \
		${myconf} \
		|| die "configure failed"
	emake || die "emake failed"
}

src_install() {
	dogamesbin scummvm || die "dobin failed"
	doman dists/scummvm.6
	dodoc AUTHORS NEWS README TODO
	insinto "${GAMES_DATADIR}"/${PN}/engines
	doins gui/themes/modern.*
	doicon icons/scummvm.svg
	make_desktop_entry scummvm ScummVM scummvm "Game;AdventureGame"
	prepgamesdirs
}






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

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

mr_bones_    09/01/09 19:28:21

  Modified:             ChangeLog scummvm-0.12.0.ebuild
  Log:
  EAPI=2; add use-based dep for media-libs/alsa-lib
  (Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)

Revision  Changes    Path
1.61                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	1 Sep 2008 07:05:44 -0000	1.60
+++ ChangeLog	9 Jan 2009 19:28:21 -0000	1.61
@@ -1,6 +1,10 @@
 # ChangeLog for games-engines/scummvm
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.60 2008/09/01 07:05:44 mr_bones_ Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.61 2009/01/09 19:28:21 mr_bones_ Exp $
+
+  09 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  scummvm-0.12.0.ebuild:
+  EAPI=2; add use-based dep for media-libs/alsa-lib
 
 *scummvm-0.12.0 (01 Sep 2008)
 



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scummvm-0.12.0.ebuild	1 Sep 2008 07:05:44 -0000	1.1
+++ scummvm-0.12.0.ebuild	9 Jan 2009 19:28:21 -0000	1.2
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# 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.12.0.ebuild,v 1.1 2008/09/01 07:05:44 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.2 2009/01/09 19:28:21 mr_bones_ Exp $
 
+EAPI=2
 inherit eutils games
 
 DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts adventures"
@@ -18,7 +19,7 @@
 	>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 )
+	alsa? ( >=media-libs/alsa-lib-0.9[midi] )
 	mp3? ( media-libs/libmad )
 	flac? ( media-libs/flac )
 	fluidsynth? ( media-sound/fluidsynth )
@@ -26,22 +27,9 @@
 DEPEND="${RDEPEND}
 	x86? ( dev-lang/nasm )"
 
-pkg_setup() {
-	games_pkg_setup
-
-	if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
-		eerror ""
-		eerror "To be able to build ${CATEGORY}/${PN} with ALSA support you"
-		eerror "need to have built media-libs/alsa-lib with midi USE flag."
-		die "Missing midi USE flag on media-libs/alsa-lib"
-	fi
-}
-
-src_unpack() {
+src_prepare() {
 	local f
 
-	unpack ${A}
-	cd "${S}"
 	# -g isn't needed for nasm here
 	sed -i \
 		-e '/NASMFLAGS/ s/-g//' \
@@ -57,7 +45,7 @@
 	done
 }
 
-src_compile() {
+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)
@@ -81,7 +69,6 @@
 		$(use_enable x86 nasm) \
 		${myconf} \
 		|| die "configure failed"
-	emake || die "emake failed"
 }
 
 src_install() {






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

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

fmccor      09/01/21 15:28:39

  Modified:             ChangeLog scummvm-0.12.0.ebuild
  Log:
  Sparc stable, Bug #255573.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.62                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	9 Jan 2009 19:28:21 -0000	1.61
+++ ChangeLog	21 Jan 2009 15:28:39 -0000	1.62
@@ -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.61 2009/01/09 19:28:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.62 2009/01/21 15:28:39 fmccor Exp $
+
+  21 Jan 2009; Ferris McCormick <fmccor@gentoo.org> scummvm-0.12.0.ebuild:
+  Sparc stable, Bug #255573.
 
   09 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
   scummvm-0.12.0.ebuild:



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scummvm-0.12.0.ebuild	9 Jan 2009 19:28:21 -0000	1.2
+++ scummvm-0.12.0.ebuild	21 Jan 2009 15:28:39 -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.12.0.ebuild,v 1.2 2009/01/09 19:28:21 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.3 2009/01/21 15:28:39 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 zlib"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.12.0.ebuild
@ 2009-01-23 11:36 Raul Porcel (armin76)
  0 siblings, 0 replies; 7+ messages in thread
From: Raul Porcel (armin76) @ 2009-01-23 11:36 UTC (permalink / raw
  To: gentoo-commits

armin76     09/01/23 11:36:01

  Modified:             ChangeLog scummvm-0.12.0.ebuild
  Log:
  x86 stable wrt #255573
  (Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r2 ia64)

Revision  Changes    Path
1.63                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	21 Jan 2009 15:28:39 -0000	1.62
+++ ChangeLog	23 Jan 2009 11:36:01 -0000	1.63
@@ -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.62 2009/01/21 15:28:39 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.63 2009/01/23 11:36:01 armin76 Exp $
+
+  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:
   Sparc stable, Bug #255573.



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scummvm-0.12.0.ebuild	21 Jan 2009 15:28:39 -0000	1.3
+++ scummvm-0.12.0.ebuild	23 Jan 2009 11:36:01 -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.12.0.ebuild,v 1.3 2009/01/21 15:28:39 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.4 2009/01/23 11:36:01 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 zlib"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.12.0.ebuild
@ 2009-01-25 14:45 Brent Baude (ranger)
  0 siblings, 0 replies; 7+ messages in thread
From: Brent Baude (ranger) @ 2009-01-25 14:45 UTC (permalink / raw
  To: gentoo-commits

ranger      09/01/25 14:45:00

  Modified:             ChangeLog scummvm-0.12.0.ebuild
  Log:
  stable ppc64, bug 255573
  (Portage version: 2.1.6.6/cvs/Linux 2.6.24-gentoo-r3-g5-64 ppc64)

Revision  Changes    Path
1.64                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	23 Jan 2009 11:36:01 -0000	1.63
+++ ChangeLog	25 Jan 2009 14:45:00 -0000	1.64
@@ -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.63 2009/01/23 11:36:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.64 2009/01/25 14:45:00 ranger Exp $
+
+  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:
   x86 stable wrt #255573



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- scummvm-0.12.0.ebuild	23 Jan 2009 11:36:01 -0000	1.4
+++ scummvm-0.12.0.ebuild	25 Jan 2009 14:45:00 -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.12.0.ebuild,v 1.4 2009/01/23 11:36:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.5 2009/01/25 14:45:00 ranger 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 zlib"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.12.0.ebuild
@ 2009-01-25 15:25 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2009-01-25 15:25 UTC (permalink / raw
  To: gentoo-commits

maekke      09/01/25 15:25:17

  Modified:             ChangeLog scummvm-0.12.0.ebuild
  Log:
  amd64 stable, bug #255573
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.65                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	25 Jan 2009 14:45:00 -0000	1.64
+++ ChangeLog	25 Jan 2009 15:25:17 -0000	1.65
@@ -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.64 2009/01/25 14:45:00 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.65 2009/01/25 15:25:17 maekke Exp $
+
+  25 Jan 2009; Markus Meier <maekke@gentoo.org> scummvm-0.12.0.ebuild:
+  amd64 stable, bug #255573
 
   25 Jan 2009; Brent Baude <ranger@gentoo.org> scummvm-0.12.0.ebuild:
   stable ppc64, bug 255573



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- scummvm-0.12.0.ebuild	25 Jan 2009 14:45:00 -0000	1.5
+++ scummvm-0.12.0.ebuild	25 Jan 2009 15:25:17 -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.12.0.ebuild,v 1.5 2009/01/25 14:45:00 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.6 2009/01/25 15:25:17 maekke 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 zlib"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

* [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.12.0.ebuild
@ 2009-03-13 22:10 Joseph Jezak (josejx)
  0 siblings, 0 replies; 7+ messages in thread
From: Joseph Jezak (josejx) @ 2009-03-13 22:10 UTC (permalink / raw
  To: gentoo-commits

josejx      09/03/13 22:10:50

  Modified:             ChangeLog scummvm-0.12.0.ebuild
  Log:
  Marked ppc stable for bug #255573.
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.67                 games-engines/scummvm/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	2 Mar 2009 17:48:39 -0000	1.66
+++ ChangeLog	13 Mar 2009 22:10:49 -0000	1.67
@@ -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.66 2009/03/02 17:48:39 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/ChangeLog,v 1.67 2009/03/13 22:10:49 josejx Exp $
+
+  13 Mar 2009; Joseph Jezak <josejx@gentoo.org> scummvm-0.12.0.ebuild:
+  Marked ppc stable for bug #255573.
 
 *scummvm-0.13.0 (02 Mar 2009)
 



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

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

Index: scummvm-0.12.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- scummvm-0.12.0.ebuild	25 Jan 2009 15:25:17 -0000	1.6
+++ scummvm-0.12.0.ebuild	13 Mar 2009 22:10:49 -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.12.0.ebuild,v 1.6 2009/01/25 15:25:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.7 2009/03/13 22:10:49 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 zlib"
 RESTRICT="test"  # it only looks like there's a test there #77507
 






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

end of thread, other threads:[~2009-03-13 22:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-09 19:28 [gentoo-commits] gentoo-x86 commit in games-engines/scummvm: ChangeLog scummvm-0.12.0.ebuild Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-13 22:10 Joseph Jezak (josejx)
2009-01-25 15:25 Markus Meier (maekke)
2009-01-25 14:45 Brent Baude (ranger)
2009-01-23 11:36 Raul Porcel (armin76)
2009-01-21 15:28 Ferris McCormick (fmccor)
2008-09-01  7:05 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