public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2009-04-25  1:43 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-04-25  1:43 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/04/25 01:43:06

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

Revision  Changes    Path
1.25                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	24 Jul 2008 16:23:40 -0000	1.24
+++ ChangeLog	25 Apr 2009 01:43:06 -0000	1.25
@@ -1,6 +1,12 @@
 # ChangeLog for games-emulation/atari800
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.24 2008/07/24 16:23:40 armin76 Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.25 2009/04/25 01:43:06 mr_bones_ Exp $
+
+*atari800-2.1.0 (25 Apr 2009)
+
+  25 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  +atari800-2.1.0.ebuild:
+  version bump
 
   24 Jul 2008; Raúl Porcel <armin76@gentoo.org> atari800-2.0.3.ebuild:
   alpha/sparc/x86 stable wrt #232298



1.1                  games-emulation/atari800/atari800-2.1.0.ebuild

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

Index: atari800-2.1.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.1 2009/04/25 01:43:06 mr_bones_ Exp $

EAPI=2
inherit games

DESCRIPTION="Atari 800 emulator"
HOMEPAGE="http://atari800.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
	mirror://sourceforge/${PN}/xf25.zip"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="sdl"

RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )
	!sdl? ( x11-libs/libX11 )"
DEPEND="${RDEPEND}
	!sdl? (
		x11-libs/libXt
		x11-libs/libX11
		x11-proto/xextproto
		x11-proto/xproto )
	app-arch/unzip"

src_prepare() {
	# remove some not-so-interesting ones
	rm -f DOC/{INSTALL.*,*.in,CHANGES.OLD}
	sed -i \
		-e "/CFG_FILE/s:/etc:${GAMES_SYSCONFDIR}:" \
		src/atari.c \
		|| die "sed failed"
	sed -i \
		-e 's/LDFLAGS="-s"/:/' \
		-e 's/-ltermcap//' \
		src/configure \
		|| die "sed failed"
}

src_configure() {
	local target="x11"
	use sdl && target="sdl"

	cd src && \
	egamesconf \
		--enable-crashmenu \
		--enable-break \
		--enable-hints \
		--enable-asm \
		--enable-cursorblk \
		--enable-led \
		--enable-displayled \
		--enable-sndclip \
		--enable-linuxjoy \
		--enable-sound \
		--target=${target}
}

src_compile() {
	emake -C src || die "emake failed"
}

src_install () {
	dogamesbin src/atari800 || die "dogamesbin failed"
	newman src/atari800.man atari800.6
	dodoc README.1ST DOC/*
	insinto "${GAMES_DATADIR}/${PN}"
	doins "${WORKDIR}/"*.ROM || die "doins failed (ROM)"
	sed "s:/usr/share/games:${GAMES_DATADIR}:" \
		"${FILESDIR}"/atari800.cfg > "${T}"/atari800.cfg \
		|| die "sed failed"
	insinto "${GAMES_SYSCONFDIR}"
	doins "${T}"/atari800.cfg || die "doins failed (cfg)"
	prepgamesdirs
}






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2009-04-25 16:51 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-04-25 16:51 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/04/25 16:51:39

  Modified:             ChangeLog atari800-2.1.0.ebuild
  Log:
  add readline use flag; tidy
  (Portage version: 2.1.6.7/cvs/Linux i686)

Revision  Changes    Path
1.26                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	25 Apr 2009 01:43:06 -0000	1.25
+++ ChangeLog	25 Apr 2009 16:51:39 -0000	1.26
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/atari800
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.25 2009/04/25 01:43:06 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.26 2009/04/25 16:51:39 mr_bones_ Exp $
+
+  25 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org>
+  atari800-2.1.0.ebuild:
+  add readline use flag; tidy
 
 *atari800-2.1.0 (25 Apr 2009)
 



1.2                  games-emulation/atari800/atari800-2.1.0.ebuild

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

Index: atari800-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- atari800-2.1.0.ebuild	25 Apr 2009 01:43:06 -0000	1.1
+++ atari800-2.1.0.ebuild	25 Apr 2009 16:51:39 -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-emulation/atari800/atari800-2.1.0.ebuild,v 1.1 2009/04/25 01:43:06 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.2 2009/04/25 16:51:39 mr_bones_ Exp $
 
 EAPI=2
 inherit games
@@ -13,10 +13,12 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="sdl"
+IUSE="readline sdl"
 
 RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )
-	!sdl? ( x11-libs/libX11 )"
+	!sdl? ( x11-libs/libX11 )
+	media-libs/libpng
+	readline? ( sys-libs/readline )"
 DEPEND="${RDEPEND}
 	!sdl? (
 		x11-libs/libXt
@@ -37,6 +39,9 @@
 		-e 's/-ltermcap//' \
 		src/configure \
 		|| die "sed failed"
+	sed "s:/usr/share/games:${GAMES_DATADIR}:" \
+		"${FILESDIR}"/atari800.cfg > "${T}"/atari800.cfg \
+		|| die "sed failed"
 }
 
 src_configure() {
@@ -45,6 +50,7 @@
 
 	cd src && \
 	egamesconf \
+		$(use_enable readline) \
 		--enable-crashmenu \
 		--enable-break \
 		--enable-hints \
@@ -68,9 +74,6 @@
 	dodoc README.1ST DOC/*
 	insinto "${GAMES_DATADIR}/${PN}"
 	doins "${WORKDIR}/"*.ROM || die "doins failed (ROM)"
-	sed "s:/usr/share/games:${GAMES_DATADIR}:" \
-		"${FILESDIR}"/atari800.cfg > "${T}"/atari800.cfg \
-		|| die "sed failed"
 	insinto "${GAMES_SYSCONFDIR}"
 	doins "${T}"/atari800.cfg || die "doins failed (cfg)"
 	prepgamesdirs






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2009-10-24 14:46 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-10-24 14:46 UTC (permalink / raw
  To: gentoo-commits

klausman    09/10/24 14:46:33

  Modified:             ChangeLog atari800-2.1.0.ebuild
  Log:
  Stable on alpha, bug #288658
  (Portage version: 2.1.7.1/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	25 Apr 2009 16:51:39 -0000	1.26
+++ ChangeLog	24 Oct 2009 14:46:33 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/atari800
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.26 2009/04/25 16:51:39 mr_bones_ Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.27 2009/10/24 14:46:33 klausman Exp $
+
+  24 Oct 2009; Tobias Klausmann <klausman@gentoo.org> atari800-2.1.0.ebuild:
+  Stable on alpha, bug #288658
 
   25 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org>
   atari800-2.1.0.ebuild:



1.3                  games-emulation/atari800/atari800-2.1.0.ebuild

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

Index: atari800-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- atari800-2.1.0.ebuild	25 Apr 2009 16:51:39 -0000	1.2
+++ atari800-2.1.0.ebuild	24 Oct 2009 14:46:33 -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-emulation/atari800/atari800-2.1.0.ebuild,v 1.2 2009/04/25 16:51:39 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.3 2009/10/24 14:46:33 klausman Exp $
 
 EAPI=2
 inherit games
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~ppc ~sparc ~x86"
 IUSE="readline sdl"
 
 RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2009-11-18 18:46 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2009-11-18 18:46 UTC (permalink / raw
  To: gentoo-commits

armin76     09/11/18 18:46:25

  Modified:             ChangeLog atari800-2.1.0.ebuild
  Log:
  sparc stable wrt #288658
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.28                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	24 Oct 2009 14:46:33 -0000	1.27
+++ ChangeLog	18 Nov 2009 18:46:25 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/atari800
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.27 2009/10/24 14:46:33 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.28 2009/11/18 18:46:25 armin76 Exp $
+
+  18 Nov 2009; Raúl Porcel <armin76@gentoo.org> atari800-2.1.0.ebuild:
+  sparc stable wrt #288658
 
   24 Oct 2009; Tobias Klausmann <klausman@gentoo.org> atari800-2.1.0.ebuild:
   Stable on alpha, bug #288658



1.4                  games-emulation/atari800/atari800-2.1.0.ebuild

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

Index: atari800-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- atari800-2.1.0.ebuild	24 Oct 2009 14:46:33 -0000	1.3
+++ atari800-2.1.0.ebuild	18 Nov 2009 18:46:25 -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-emulation/atari800/atari800-2.1.0.ebuild,v 1.3 2009/10/24 14:46:33 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.4 2009/11/18 18:46:25 armin76 Exp $
 
 EAPI=2
 inherit games
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~ppc sparc ~x86"
 IUSE="readline sdl"
 
 RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2009-11-20 15:21 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2009-11-20 15:21 UTC (permalink / raw
  To: gentoo-commits

maekke      09/11/20 15:21:22

  Modified:             ChangeLog atari800-2.1.0.ebuild
  Log:
  x86 stable, bug #288658
  (Portage version: 2.2_rc50/cvs/Linux x86_64)

Revision  Changes    Path
1.29                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	18 Nov 2009 18:46:25 -0000	1.28
+++ ChangeLog	20 Nov 2009 15:21:22 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/atari800
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.28 2009/11/18 18:46:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.29 2009/11/20 15:21:22 maekke Exp $
+
+  20 Nov 2009; Markus Meier <maekke@gentoo.org> atari800-2.1.0.ebuild:
+  x86 stable, bug #288658
 
   18 Nov 2009; Raúl Porcel <armin76@gentoo.org> atari800-2.1.0.ebuild:
   sparc stable wrt #288658



1.5                  games-emulation/atari800/atari800-2.1.0.ebuild

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

Index: atari800-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- atari800-2.1.0.ebuild	18 Nov 2009 18:46:25 -0000	1.4
+++ atari800-2.1.0.ebuild	20 Nov 2009 15:21: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-emulation/atari800/atari800-2.1.0.ebuild,v 1.4 2009/11/18 18:46:25 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.5 2009/11/20 15:21:22 maekke Exp $
 
 EAPI=2
 inherit games
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~ppc sparc ~x86"
+KEYWORDS="alpha ~amd64 ~ppc sparc x86"
 IUSE="readline sdl"
 
 RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2010-01-05 19:41 Joseph Jezak (josejx)
  0 siblings, 0 replies; 8+ messages in thread
From: Joseph Jezak (josejx) @ 2010-01-05 19:41 UTC (permalink / raw
  To: gentoo-commits

josejx      10/01/05 19:41:16

  Modified:             ChangeLog atari800-2.1.0.ebuild
  Log:
  Marked ppc stable for bug #288658.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	20 Nov 2009 15:21:22 -0000	1.29
+++ ChangeLog	5 Jan 2010 19:41:15 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/atari800
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.29 2009/11/20 15:21:22 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.30 2010/01/05 19:41:15 josejx Exp $
+
+  05 Jan 2010; Joseph Jezak <josejx@gentoo.org> atari800-2.1.0.ebuild:
+  Marked ppc stable for bug #288658.
 
   20 Nov 2009; Markus Meier <maekke@gentoo.org> atari800-2.1.0.ebuild:
   x86 stable, bug #288658



1.6                  games-emulation/atari800/atari800-2.1.0.ebuild

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

Index: atari800-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- atari800-2.1.0.ebuild	20 Nov 2009 15:21:22 -0000	1.5
+++ atari800-2.1.0.ebuild	5 Jan 2010 19:41:15 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.5 2009/11/20 15:21:22 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.6 2010/01/05 19:41:15 josejx Exp $
 
 EAPI=2
 inherit games
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~ppc sparc x86"
+KEYWORDS="alpha ~amd64 ppc sparc x86"
 IUSE="readline sdl"
 
 RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2010-06-05 23:07 Maciej Mrozowski (reavertm)
  0 siblings, 0 replies; 8+ messages in thread
From: Maciej Mrozowski (reavertm) @ 2010-06-05 23:07 UTC (permalink / raw
  To: gentoo-commits

reavertm    10/06/05 23:07:29

  Modified:             ChangeLog atari800-2.1.0.ebuild
  Log:
  amd64 stable, bug 288658
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	5 Jan 2010 19:41:15 -0000	1.30
+++ ChangeLog	5 Jun 2010 23:07:29 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/atari800
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.30 2010/01/05 19:41:15 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.31 2010/06/05 23:07:29 reavertm Exp $
+
+  05 Jun 2010; Maciej Mrozowski <reavertm@gentoo.org> atari800-2.1.0.ebuild:
+  amd64 stable, bug 288658
 
   05 Jan 2010; Joseph Jezak <josejx@gentoo.org> atari800-2.1.0.ebuild:
   Marked ppc stable for bug #288658.



1.7                  games-emulation/atari800/atari800-2.1.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild?r1=1.6&r2=1.7

Index: atari800-2.1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- atari800-2.1.0.ebuild	5 Jan 2010 19:41:15 -0000	1.6
+++ atari800-2.1.0.ebuild	5 Jun 2010 23:07:29 -0000	1.7
@@ -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-emulation/atari800/atari800-2.1.0.ebuild,v 1.6 2010/01/05 19:41:15 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-2.1.0.ebuild,v 1.7 2010/06/05 23:07:29 reavertm Exp $
 
 EAPI=2
 inherit games
@@ -12,12 +12,12 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ppc sparc x86"
+KEYWORDS="alpha amd64 ppc sparc x86"
 IUSE="readline sdl"
 
 RDEPEND="sdl? ( >=media-libs/libsdl-1.2.0 )
 	!sdl? ( x11-libs/libX11 )
-	media-libs/libpng
+	media-libs/libpng:0
 	readline? ( sys-libs/readline )"
 DEPEND="${RDEPEND}
 	!sdl? (






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

* [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild
@ 2013-03-25 18:23 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2013-03-25 18:23 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    13/03/25 18:23:00

  Modified:             ChangeLog
  Removed:              atari800-2.1.0.ebuild
  Log:
  old
  
  (Portage version: 2.1.11.55/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.36                 games-emulation/atari800/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/atari800/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	10 Jan 2012 20:39:19 -0000	1.35
+++ ChangeLog	25 Mar 2013 18:23:00 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/atari800
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.35 2012/01/10 20:39:19 ranger Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/ChangeLog,v 1.36 2013/03/25 18:23:00 mr_bones_ Exp $
+
+  25 Mar 2013; Michael Sterrett <mr_bones_@gentoo.org> -atari800-2.1.0.ebuild:
+  old
 
   10 Jan 2012; Brent Baude <ranger@gentoo.org> atari800-2.2.1.ebuild:
   Marking atari800-2.2.1 ppc for bug 375695





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

end of thread, other threads:[~2013-03-25 18:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-05 23:07 [gentoo-commits] gentoo-x86 commit in games-emulation/atari800: ChangeLog atari800-2.1.0.ebuild Maciej Mrozowski (reavertm)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-25 18:23 Michael Sterrett (mr_bones_)
2010-01-05 19:41 Joseph Jezak (josejx)
2009-11-20 15:21 Markus Meier (maekke)
2009-11-18 18:46 Raul Porcel (armin76)
2009-10-24 14:46 Tobias Klausmann (klausman)
2009-04-25 16:51 Michael Sterrett (mr_bones_)
2009-04-25  1:43 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