[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2023-12-29 Thread Michał Górny
commit: 52c3c2c200b4cff030abe601f431e8df1f99610d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 30 04:52:11 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 30 05:00:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52c3c2c2

games-emulation/atari800: Bump to 5.2.0

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/Manifest  |  1 +
 games-emulation/atari800/atari800-5.2.0.ebuild | 90 ++
 2 files changed, 91 insertions(+)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index b5bcfce00463..0c526c385d6e 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,4 +1,5 @@
 DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
 DIST atari800-5.0.0-src.tgz 1847596 BLAKE2B 
315afa4fc8d88c2267c3da04f50a541a871f2d9d0867030b30e8f5d22b421f73f89de85ea1c7d6bc41202304de43d482f5d0fd9a081b4e493b3bba1363ce1e71
 SHA512 
2469561cdfe185ad26fd0fff8d589c528ca267e0195dab58a0fe739674f7445b53c21070f6bcb838c1d776b9803b1e2874ecf58a36b2d6df04bd9eb38855bfac
 DIST atari800-5.1.0-src.tgz 1919193 BLAKE2B 
5dbd5af3aae29ddd1dbe2e7e8864c71f17fcd616f5ad422a503d4bf667a50f18b680456014e785ba9f963043f9a43eeea7fad858d8a480f01dd158a185d5522a
 SHA512 
404216336e44e34d8cb83c9a78884c26ae985c873a0ab6583d2101ccc832506606c8a9b1d7ac8350c85c04850ce9921f6325f376d04a96c1d7bd8c737183e585
+DIST atari800-5.2.0-src.tgz 1935364 BLAKE2B 
39974262d8b12668752716fa470a07e8f9f696b72dd4649383e1dbad86fbb6b6e9310501dbda40e284550922389bcb441f5c8b3b168854d7c77173ca63f02e50
 SHA512 
c1ac728cb0733937175040bbdb4d5653cdbedeaa1ab399165dd1a9c841ba6930953801da65c0f747e28d293c26ad85e5e014947ebb5090ec03aef77cbd1d2627
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/atari800-5.2.0.ebuild 
b/games-emulation/atari800/atari800-5.2.0.ebuild
new file mode 100644
index ..140d1478d089
--- /dev/null
+++ b/games-emulation/atari800/atari800-5.2.0.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop
+
+DESCRIPTION="Emulator of Atari 8-bit computer systems and 5200 game console"
+HOMEPAGE="
+   https://atari800.github.io/
+   https://github.com/atari800/atari800/
+"
+SRC_URI="
+   
https://github.com/atari800/atari800/releases/download/ATARI800_${PV//./_}/${P}-src.tgz
+   
https://sourceforge.net/projects/atari800/files/ROM/Original%20XL%20ROM/xf25.zip
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="encode-mp3 opengl readline +sdl +sound"
+REQUIRED_USE="
+   encode-mp3? ( sound )
+   opengl? ( sdl )
+"
+
+DEPEND="
+   encode-mp3? (
+   media-sound/lame
+   )
+   sdl? (
+   >=media-libs/libsdl-1.2.0[joystick,opengl?,sound?,video]
+   )
+   !sdl? (
+   sys-libs/ncurses:=
+   )
+   readline? (
+   sys-libs/readline:=
+   sys-libs/ncurses:=
+   )
+   media-libs/libpng:=
+   sys-libs/zlib
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   app-arch/unzip
+"
+
+src_prepare() {
+   local PATCHES=(
+   # Bug 544608
+   "${FILESDIR}"/atari800-3.1.0-tgetent-detection.patch
+   )
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local video=ncurses
+   local sound=no
+
+   if use sdl; then
+   video=sdl
+   use sound && sound=sdl
+   elif use sound; then
+   sound=oss
+   fi
+
+   local myconf=(
+   $(use_with opengl)
+   $(use_with readline)
+   $(use_with encode-mp3 mp3)
+   --with-video=${video}
+   --with-sound=${sound}
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   insinto "/usr/share/${PN}"
+   doins "${WORKDIR}/"*.ROM
+   insinto /etc
+   newins "${FILESDIR}"/atari800-4.2.0.cfg atari800.cfg
+   newicon data/atari2.svg ${PN}.svg
+   make_desktop_entry ${PN} "Atari 800 emulator"
+}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2023-12-28 Thread Michał Górny
commit: 310c0332e2e77bd0153f5f7c6fb4ccb453c5c63a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 28 16:47:02 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 28 16:47:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=310c0332

games-emulation/atari800: Bump to 5.1.0

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/Manifest  |  1 +
 games-emulation/atari800/atari800-5.1.0.ebuild | 90 ++
 2 files changed, 91 insertions(+)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index a5f28f5de9c0..b5bcfce00463 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,3 +1,4 @@
 DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
 DIST atari800-5.0.0-src.tgz 1847596 BLAKE2B 
315afa4fc8d88c2267c3da04f50a541a871f2d9d0867030b30e8f5d22b421f73f89de85ea1c7d6bc41202304de43d482f5d0fd9a081b4e493b3bba1363ce1e71
 SHA512 
2469561cdfe185ad26fd0fff8d589c528ca267e0195dab58a0fe739674f7445b53c21070f6bcb838c1d776b9803b1e2874ecf58a36b2d6df04bd9eb38855bfac
+DIST atari800-5.1.0-src.tgz 1919193 BLAKE2B 
5dbd5af3aae29ddd1dbe2e7e8864c71f17fcd616f5ad422a503d4bf667a50f18b680456014e785ba9f963043f9a43eeea7fad858d8a480f01dd158a185d5522a
 SHA512 
404216336e44e34d8cb83c9a78884c26ae985c873a0ab6583d2101ccc832506606c8a9b1d7ac8350c85c04850ce9921f6325f376d04a96c1d7bd8c737183e585
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/atari800-5.1.0.ebuild 
b/games-emulation/atari800/atari800-5.1.0.ebuild
new file mode 100644
index ..140d1478d089
--- /dev/null
+++ b/games-emulation/atari800/atari800-5.1.0.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop
+
+DESCRIPTION="Emulator of Atari 8-bit computer systems and 5200 game console"
+HOMEPAGE="
+   https://atari800.github.io/
+   https://github.com/atari800/atari800/
+"
+SRC_URI="
+   
https://github.com/atari800/atari800/releases/download/ATARI800_${PV//./_}/${P}-src.tgz
+   
https://sourceforge.net/projects/atari800/files/ROM/Original%20XL%20ROM/xf25.zip
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="encode-mp3 opengl readline +sdl +sound"
+REQUIRED_USE="
+   encode-mp3? ( sound )
+   opengl? ( sdl )
+"
+
+DEPEND="
+   encode-mp3? (
+   media-sound/lame
+   )
+   sdl? (
+   >=media-libs/libsdl-1.2.0[joystick,opengl?,sound?,video]
+   )
+   !sdl? (
+   sys-libs/ncurses:=
+   )
+   readline? (
+   sys-libs/readline:=
+   sys-libs/ncurses:=
+   )
+   media-libs/libpng:=
+   sys-libs/zlib
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   app-arch/unzip
+"
+
+src_prepare() {
+   local PATCHES=(
+   # Bug 544608
+   "${FILESDIR}"/atari800-3.1.0-tgetent-detection.patch
+   )
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local video=ncurses
+   local sound=no
+
+   if use sdl; then
+   video=sdl
+   use sound && sound=sdl
+   elif use sound; then
+   sound=oss
+   fi
+
+   local myconf=(
+   $(use_with opengl)
+   $(use_with readline)
+   $(use_with encode-mp3 mp3)
+   --with-video=${video}
+   --with-sound=${sound}
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   insinto "/usr/share/${PN}"
+   doins "${WORKDIR}/"*.ROM
+   insinto /etc
+   newins "${FILESDIR}"/atari800-4.2.0.cfg atari800.cfg
+   newicon data/atari2.svg ${PN}.svg
+   make_desktop_entry ${PN} "Atari 800 emulator"
+}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2022-05-29 Thread Michał Górny
commit: 650236e9939157e369d959bba9704bd5d0613b2b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun May 29 07:05:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May 29 07:09:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=650236e9

games-emulation/atari800: Bump to 5.0.0

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/Manifest  |  1 +
 games-emulation/atari800/atari800-5.0.0.ebuild | 86 ++
 games-emulation/atari800/metadata.xml  |  5 +-
 3 files changed, 91 insertions(+), 1 deletion(-)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index 8955c0ab3425..a5f28f5de9c0 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,2 +1,3 @@
 DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
+DIST atari800-5.0.0-src.tgz 1847596 BLAKE2B 
315afa4fc8d88c2267c3da04f50a541a871f2d9d0867030b30e8f5d22b421f73f89de85ea1c7d6bc41202304de43d482f5d0fd9a081b4e493b3bba1363ce1e71
 SHA512 
2469561cdfe185ad26fd0fff8d589c528ca267e0195dab58a0fe739674f7445b53c21070f6bcb838c1d776b9803b1e2874ecf58a36b2d6df04bd9eb38855bfac
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/atari800-5.0.0.ebuild 
b/games-emulation/atari800/atari800-5.0.0.ebuild
new file mode 100644
index ..8ad5a7e21a69
--- /dev/null
+++ b/games-emulation/atari800/atari800-5.0.0.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop
+
+DESCRIPTION="Atari 800 emulator"
+HOMEPAGE="https://atari800.github.io/;
+SRC_URI="
+   
https://github.com/atari800/atari800/releases/download/ATARI800_${PV//./_}/${P}-src.tgz
+   
https://sourceforge.net/projects/${PN}/files/ROM/Original%20XL%20ROM/xf25.zip;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="encode-mp3 opengl readline +sdl +sound"
+REQUIRED_USE="
+   encode-mp3? ( sound )
+   opengl? ( sdl )
+"
+
+DEPEND="
+   encode-mp3? (
+   media-sound/lame
+   )
+   sdl? (
+   >=media-libs/libsdl-1.2.0[joystick,opengl?,sound?,video]
+   )
+   !sdl? (
+   sys-libs/ncurses:=
+   )
+   readline? (
+   sys-libs/readline:=
+   sys-libs/ncurses:=
+   )
+   media-libs/libpng:=
+   sys-libs/zlib
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   app-arch/unzip
+"
+
+src_prepare() {
+   local PATCHES=(
+   # Bug 544608
+   "${FILESDIR}"/atari800-3.1.0-tgetent-detection.patch
+   )
+
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local video=ncurses
+   local sound=no
+
+   if use sdl; then
+   video=sdl
+   use sound && sound=sdl
+   elif use sound; then
+   sound=oss
+   fi
+
+   local myconf=(
+   $(use_with opengl)
+   $(use_with readline)
+   $(use_with encode-mp3 mp3)
+   --with-video=${video}
+   --with-sound=${sound}
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   insinto "/usr/share/${PN}"
+   doins "${WORKDIR}/"*.ROM
+   insinto /etc
+   newins "${FILESDIR}"/atari800-4.2.0.cfg atari800.cfg
+   newicon data/atari2.svg ${PN}.svg
+   make_desktop_entry ${PN} "Atari 800 emulator"
+}

diff --git a/games-emulation/atari800/metadata.xml 
b/games-emulation/atari800/metadata.xml
index 93a5cf72aa74..70220fb60e13 100644
--- a/games-emulation/atari800/metadata.xml
+++ b/games-emulation/atari800/metadata.xml
@@ -26,9 +26,12 @@ ways :
 * SDL (many different platforms and systems)
 * WinCE
 * MacOS X
-
+  
   
 atari800
 atari800/atari800
   
+  
+Support recording sound in MP3 format
+  
 



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/, games-emulation/atari800/files/

2021-08-19 Thread Michał Górny
commit: db2118a278a6fadabc9d565225e87e92fedda8bc
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 19 07:33:34 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 19 07:34:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db2118a2

games-emulation/atari800: Fix some basisms in configure

Closes: https://bugs.gentoo.org/808945
Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/atari800-4.2.0-r1.ebuild  |  2 +
 .../atari800/files/atari800-4.2.0-bashisms.patch   | 47 ++
 2 files changed, 49 insertions(+)

diff --git a/games-emulation/atari800/atari800-4.2.0-r1.ebuild 
b/games-emulation/atari800/atari800-4.2.0-r1.ebuild
index 7e119486988..25d867bd821 100644
--- a/games-emulation/atari800/atari800-4.2.0-r1.ebuild
+++ b/games-emulation/atari800/atari800-4.2.0-r1.ebuild
@@ -40,6 +40,8 @@ src_prepare() {
local PATCHES=(
# Bug 544608
"${FILESDIR}"/atari800-3.1.0-tgetent-detection.patch
+   # https://github.com/atari800/atari800/pull/140
+   "${FILESDIR}"/${P}-bashisms.patch
)
 
default

diff --git a/games-emulation/atari800/files/atari800-4.2.0-bashisms.patch 
b/games-emulation/atari800/files/atari800-4.2.0-bashisms.patch
new file mode 100644
index 000..117bf1feee8
--- /dev/null
+++ b/games-emulation/atari800/files/atari800-4.2.0-bashisms.patch
@@ -0,0 +1,47 @@
+From 92b1d0d2ea8cc87bf6a9b9084aa76ca3580d5e4e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Thu, 19 Aug 2021 09:26:41 +0200
+Subject: [PATCH] configure.ac: Fix compatibility with dash shell
+
+Fix the compatibility of the configure script with the dash shell
+by replacing the use of bash-specific '==' operator with plain '='.
+The calls in question do not utilize the pattern-matching behavior
+of '=='.
+---
+ configure.ac | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index c872a9b3..283c90e2 100644
+--- a/configure.ac
 b/configure.ac
+@@ -709,7 +709,7 @@ AC_DEFUN([A8_OPTION],[
+ fi
+ ])
+ 
+-if [[ "$a8_target" == "libatari800" ]]; then
++if [[ "$a8_target" = "libatari800" ]]; then
+ WANT_NEW_CYCLE_EXACT=yes
+ WANT_VERY_SLOW=no
+ WANT_CRASH_MENU=no
+@@ -1040,7 +1040,7 @@ if [[ "$with_sound" != no ]]; then
+   VOICEBOX,[Define to emulate the Alien Group Voice Box.]
+  )
+ 
+-if [[ "$with_sound" == "libatari800" ]]; then
++if [[ "$with_sound" = "libatari800" ]]; then
+ WANT_SOUND_CALLBACK=no
+ WANT_CONSOLE_SOUND=yes
+ WANT_SERIO_SOUND=yes
+@@ -1094,7 +1094,7 @@ A8_OPTION(pokeyrec,$WANT_POKEYREC,
+   [Provide Pokey registers recording (default=ON)],
+   POKEYREC,[Define to add Pokey registers recording.]
+  )
+-if [[ "$WANT_POKEYREC" == "yes" ]]; then
++if [[ "$WANT_POKEYREC" = "yes" ]]; then
+ AC_SYS_LARGEFILE
+ fi
+ AM_CONDITIONAL([WANT_POKEYREC], test "$WANT_POKEYREC" = "yes")
+-- 
+2.33.0
+



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/files/, games-emulation/atari800/

2021-08-19 Thread Michał Górny
commit: cedb9aa7c5f9978ffce04f0f2579e39a1c0f6064
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 19 07:30:46 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 19 07:34:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedb9aa7

games-emulation/atari800: Update the patch to work against -p1

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/atari800-4.2.0-r1.ebuild | 8 +---
 .../atari800/files/atari800-3.1.0-tgetent-detection.patch | 4 ++--
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/games-emulation/atari800/atari800-4.2.0-r1.ebuild 
b/games-emulation/atari800/atari800-4.2.0-r1.ebuild
index a791f33ba0c..7e119486988 100644
--- a/games-emulation/atari800/atari800-4.2.0-r1.ebuild
+++ b/games-emulation/atari800/atari800-4.2.0-r1.ebuild
@@ -37,10 +37,12 @@ BDEPEND="
 "
 
 src_prepare() {
-   default
+   local PATCHES=(
+   # Bug 544608
+   "${FILESDIR}"/atari800-3.1.0-tgetent-detection.patch
+   )
 
-   # Bug 544608
-   eapply -p2 "${FILESDIR}/atari800-3.1.0-tgetent-detection.patch"
+   default
eautoreconf
 }
 

diff --git 
a/games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch 
b/games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch
index 018e423af6b..487577e5b1a 100644
--- a/games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch
+++ b/games-emulation/atari800/files/atari800-3.1.0-tgetent-detection.patch
@@ -1,6 +1,6 @@
 diff -ruN atari800-3.1.0/src/configure.ac new/src/configure.ac
 atari800-3.1.0/src/configure.ac2014-04-12 15:58:16.0 +0200
-+++ new/src/configure.ac   2015-03-26 23:36:24.419178078 +0100
+--- src/configure.ac   2014-04-12 15:58:16.0 +0200
 src/configure.ac   2015-03-26 23:36:24.419178078 +0100
 @@ -982,7 +982,7 @@
  dnl existence of the tgetent symbol in readline. If not, we search for tgetent
  dnl in a few other libraries. All done with a single AC_SEARCH_LIBS statement.



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2021-08-18 Thread Sam James
commit: 40525db8127cb999419390aa0ada2fdf2c787c1a
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 18 23:50:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:38:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40525db8

games-emulation/atari800: add missing libsdl[joystick] dependency

Closes: https://bugs.gentoo.org/737948
Signed-off-by: Sam James  gentoo.org>

 .../atari800/{atari800-4.2.0.ebuild => atari800-4.2.0-r1.ebuild}   | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/games-emulation/atari800/atari800-4.2.0.ebuild 
b/games-emulation/atari800/atari800-4.2.0-r1.ebuild
similarity index 92%
rename from games-emulation/atari800/atari800-4.2.0.ebuild
rename to games-emulation/atari800/atari800-4.2.0-r1.ebuild
index f49f59bcd44..a791f33ba0c 100644
--- a/games-emulation/atari800/atari800-4.2.0.ebuild
+++ b/games-emulation/atari800/atari800-4.2.0-r1.ebuild
@@ -2,7 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-inherit desktop autotools
+
+inherit autotools desktop
 
 DESCRIPTION="Atari 800 emulator"
 HOMEPAGE="https://atari800.github.io/;
@@ -18,7 +19,7 @@ REQUIRED_USE="opengl? ( sdl )"
 
 RDEPEND="
sdl? (
-   >=media-libs/libsdl-1.2.0[opengl?,sound?,video]
+   >=media-libs/libsdl-1.2.0[joystick,opengl?,sound?,video]
)
!sdl? (
sys-libs/ncurses:=
@@ -30,7 +31,7 @@ RDEPEND="
media-libs/libpng:=
sys-libs/zlib
 "
-DEPEND=${RDEPEND}
+DEPEND="${RDEPEND}"
 BDEPEND="
app-arch/unzip
 "



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2021-02-11 Thread Michał Górny
commit: fc5d983c57b50078edb18569b0635223694d1bed
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 11 12:51:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 11 12:51:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc5d983c

games-emulation/atari800: Require sdl for opengl support

Closes: https://bugs.gentoo.org/770052
Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/atari800-4.2.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/games-emulation/atari800/atari800-4.2.0.ebuild 
b/games-emulation/atari800/atari800-4.2.0.ebuild
index dd100857854..f49f59bcd44 100644
--- a/games-emulation/atari800/atari800-4.2.0.ebuild
+++ b/games-emulation/atari800/atari800-4.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,6 +14,7 @@ LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="opengl readline +sdl +sound"
+REQUIRED_USE="opengl? ( sdl )"
 
 RDEPEND="
sdl? (



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/files/, games-emulation/atari800/

2020-09-18 Thread Michał Górny
commit: 4d041609add28fd1be05fbc487c7ccfefc596c29
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep 18 09:30:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep 18 09:38:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d041609

games-emulation/atari800: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/Manifest |  1 -
 games-emulation/atari800/atari800-3.1.0-r1.ebuild | 92 ---
 games-emulation/atari800/files/atari800.cfg   | 24 --
 3 files changed, 117 deletions(-)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index c03a9b49edc..8955c0ab342 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,3 +1,2 @@
-DIST atari800-3.1.0.tar.gz 1492289 BLAKE2B 
cad7a3111bf714321d01aff1f8b30408efc1eca0876d9b795395d62d18eabdf78b71d3b2af887e8ba03e33e3824fcd5b45070e39cddd0e5ad0bda2d853f724b1
 SHA512 
c8f035c9be000c67dd854a14a236d165e6e2d30b5138f8772c6ea5c5290b0410525570e3ed9dcb2f9bcb129f97a36e6eef5993f0a5ad3cc993c6b59b127bcabe
 DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/atari800-3.1.0-r1.ebuild 
b/games-emulation/atari800/atari800-3.1.0-r1.ebuild
deleted file mode 100644
index 559671226b0..000
--- a/games-emulation/atari800/atari800-3.1.0-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit desktop autotools
-
-DESCRIPTION="Atari 800 emulator"
-HOMEPAGE="https://atari800.github.io/;
-SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz
-   
https://sourceforge.net/projects/${PN}/files/ROM/Original%20XL%20ROM/xf25.zip;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ncurses oss opengl readline +sdl +sound"
-
-NOTSDL_DEPS="
-   sys-libs/ncurses:0=
-   sound? (
-   !oss? ( media-libs/libsdl[sound] )
-   )
-"
-RDEPEND="
-   sdl? ( >=media-libs/libsdl-1.2.0[opengl?,sound?,video] )
-   ncurses? ( ${NOTSDL_DEPS} )
-   !sdl? ( !ncurses? ( ${NOTSDL_DEPS} ) )
-   readline? (
-   sys-libs/readline:0=
-   sys-libs/ncurses:0= )
-   media-libs/libpng:0=
-   sys-libs/zlib
-"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-"
-
-src_prepare() {
-   default
-
-   # remove some not-so-interesting ones
-   rm -f DOC/{INSTALL.*,*.in,CHANGES.OLD} || die
-   sed -i \
-   -e '1s/ 1 / 6 /' \
-   src/atari800.man || die
-   sed "s:/usr/share/games:/usr/share:" \
-   "${FILESDIR}"/atari800.cfg > "${T}"/atari800.cfg || die
-
-   # Bug 544608
-   eapply "${FILESDIR}/${P}-tgetent-detection.patch"
-   pushd src > /dev/null && eautoreconf
-   popd > /dev/null
-}
-
-src_configure() {
-   local video="ncurses"
-   local sound=no
-
-   use sdl && video="sdl"
-   if use sound ; then
-   if use sdl ; then
-   sound=sdl
-   elif use oss ; then
-   sound=oss
-   else
-   echo
-   elog "Sound requested but neither sdl nor oss 
specified."
-   elog "Disabling sound suport."
-   fi
-   fi
-
-   cd src && \
-   econf \
-   $(use_with readline) \
-   --with-video=${video} \
-   --with-sound=${sound}
-}
-
-src_compile() {
-   emake -C src
-}
-
-src_install() {
-   dobin src/atari800
-   newman src/atari800.man atari800.6
-   dodoc README.1ST DOC/*
-   insinto "/usr/share/${PN}"
-   doins "${WORKDIR}/"*.ROM
-   insinto /etc
-   doins "${T}"/atari800.cfg
-   newicon data/atari2.svg ${PN}.svg
-   make_desktop_entry ${PN} "Atari 800 emulator"
-}

diff --git a/games-emulation/atari800/files/atari800.cfg 
b/games-emulation/atari800/files/atari800.cfg
deleted file mode 100644
index b31c67de095..000
--- a/games-emulation/atari800/files/atari800.cfg
+++ /dev/null
@@ -1,24 +0,0 @@
-Atari 800 Emulator, Version 1.2.2
-OS/A_ROM=atariosa.rom
-OS/B_ROM=/usr/share/games/atari800/ATARIOSB.ROM
-XL/XE_ROM=/usr/share/games/atari800/ATARIXL.ROM
-BASIC_ROM=/usr/share/games/atari800/ATARIBAS.ROM

[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/files/, games-emulation/atari800/

2020-06-15 Thread Michał Górny
commit: c54581f067392f4c49be7def53230f6d7b84ab66
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun 15 12:49:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 15 15:06:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54581f0

games-emulation/atari800: Bump to 4.2.0

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/Manifest |  1 +
 games-emulation/atari800/atari800-4.2.0.ebuild| 73 +++
 games-emulation/atari800/files/atari800-4.2.0.cfg | 31 ++
 3 files changed, 105 insertions(+)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index 825004ae740..c03a9b49edc 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,2 +1,3 @@
 DIST atari800-3.1.0.tar.gz 1492289 BLAKE2B 
cad7a3111bf714321d01aff1f8b30408efc1eca0876d9b795395d62d18eabdf78b71d3b2af887e8ba03e33e3824fcd5b45070e39cddd0e5ad0bda2d853f724b1
 SHA512 
c8f035c9be000c67dd854a14a236d165e6e2d30b5138f8772c6ea5c5290b0410525570e3ed9dcb2f9bcb129f97a36e6eef5993f0a5ad3cc993c6b59b127bcabe
+DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/atari800-4.2.0.ebuild 
b/games-emulation/atari800/atari800-4.2.0.ebuild
new file mode 100644
index 000..dd100857854
--- /dev/null
+++ b/games-emulation/atari800/atari800-4.2.0.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit desktop autotools
+
+DESCRIPTION="Atari 800 emulator"
+HOMEPAGE="https://atari800.github.io/;
+SRC_URI="
+   
https://github.com/atari800/atari800/releases/download/ATARI800_${PV//./_}/${P}-src.tgz
+   
https://sourceforge.net/projects/${PN}/files/ROM/Original%20XL%20ROM/xf25.zip;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="opengl readline +sdl +sound"
+
+RDEPEND="
+   sdl? (
+   >=media-libs/libsdl-1.2.0[opengl?,sound?,video]
+   )
+   !sdl? (
+   sys-libs/ncurses:=
+   )
+   readline? (
+   sys-libs/readline:=
+   sys-libs/ncurses:=
+   )
+   media-libs/libpng:=
+   sys-libs/zlib
+"
+DEPEND=${RDEPEND}
+BDEPEND="
+   app-arch/unzip
+"
+
+src_prepare() {
+   default
+
+   # Bug 544608
+   eapply -p2 "${FILESDIR}/atari800-3.1.0-tgetent-detection.patch"
+   eautoreconf
+}
+
+src_configure() {
+   local video=ncurses
+   local sound=no
+
+   if use sdl; then
+   video=sdl
+   use sound && sound=sdl
+   elif use sound; then
+   sound=oss
+   fi
+
+   local myconf=(
+   $(use_with opengl)
+   $(use_with readline)
+   --with-video=${video}
+   --with-sound=${sound}
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   insinto "/usr/share/${PN}"
+   doins "${WORKDIR}/"*.ROM
+   insinto /etc
+   newins "${FILESDIR}"/atari800-4.2.0.cfg atari800.cfg
+   newicon data/atari2.svg ${PN}.svg
+   make_desktop_entry ${PN} "Atari 800 emulator"
+}

diff --git a/games-emulation/atari800/files/atari800-4.2.0.cfg 
b/games-emulation/atari800/files/atari800-4.2.0.cfg
new file mode 100644
index 000..6e79c110dbd
--- /dev/null
+++ b/games-emulation/atari800/files/atari800-4.2.0.cfg
@@ -0,0 +1,31 @@
+Atari 800 Emulator, Version 4.2.0
+ROM_OS_A_NTSC=
+ROM_OS_A_PAL=
+ROM_OS_B_NTSC=
+ROM_OS_AA00R10=
+ROM_OS_AA00R11=
+ROM_OS_BB00R1=
+ROM_OS_BB01R2=/usr/share/atari800/ATARIXL.ROM
+ROM_OS_BB02R3=
+ROM_OS_BB02R3V4=
+ROM_OS_CC01R4=
+ROM_OS_BB01R3=
+ROM_OS_BB01R4=
+ROM_OS_BB01R59=
+ROM_OS_BB01R59A=
+ROM_5200=
+ROM_5200_A=
+ROM_BASIC_A=
+ROM_BASIC_B=
+ROM_BASIC_C=/usr/share/atari800/ATARIBAS.ROM
+ROM_XEGAME=
+ROM_400/800_CUSTOM=/usr/share/atari800/ATARIOSB.ROM
+ROM_XL/XE_CUSTOM=/usr/share/atari800/ATARIXL.ROM
+ROM_5200_CUSTOM=
+ROM_BASIC_CUSTOM=/usr/share/atari800/ATARIBAS.ROM
+ROM_XEGAME_CUSTOM=
+OS_400/800_VERSION=AUTO
+OS_XL/XE_VERSION=AUTO
+OS_5200_VERSION=AUTO
+BASIC_VERSION=AUTO
+XEGS_GAME_VERSION=AUTO



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/files/, games-emulation/atari800/

2020-06-15 Thread Mike Gilbert
commit: 1ff944183f6920455aa9c807f1cc00c3a5a5c658
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 15 15:04:28 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jun 15 15:04:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff94418

Revert "games-emulation/atari800: Bump to 4.2.0"

The new ebuild was not included in this commit.

Reverts: 376f45cb0c0a960b24c34437d267f7306bedc24b
Signed-off-by: Mike Gilbert  gentoo.org>

 games-emulation/atari800/Manifest |  1 -
 games-emulation/atari800/files/atari800-4.2.0.cfg | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index c03a9b49edc..825004ae740 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,3 +1,2 @@
 DIST atari800-3.1.0.tar.gz 1492289 BLAKE2B 
cad7a3111bf714321d01aff1f8b30408efc1eca0876d9b795395d62d18eabdf78b71d3b2af887e8ba03e33e3824fcd5b45070e39cddd0e5ad0bda2d853f724b1
 SHA512 
c8f035c9be000c67dd854a14a236d165e6e2d30b5138f8772c6ea5c5290b0410525570e3ed9dcb2f9bcb129f97a36e6eef5993f0a5ad3cc993c6b59b127bcabe
-DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/files/atari800-4.2.0.cfg 
b/games-emulation/atari800/files/atari800-4.2.0.cfg
deleted file mode 100644
index 6e79c110dbd..000
--- a/games-emulation/atari800/files/atari800-4.2.0.cfg
+++ /dev/null
@@ -1,31 +0,0 @@
-Atari 800 Emulator, Version 4.2.0
-ROM_OS_A_NTSC=
-ROM_OS_A_PAL=
-ROM_OS_B_NTSC=
-ROM_OS_AA00R10=
-ROM_OS_AA00R11=
-ROM_OS_BB00R1=
-ROM_OS_BB01R2=/usr/share/atari800/ATARIXL.ROM
-ROM_OS_BB02R3=
-ROM_OS_BB02R3V4=
-ROM_OS_CC01R4=
-ROM_OS_BB01R3=
-ROM_OS_BB01R4=
-ROM_OS_BB01R59=
-ROM_OS_BB01R59A=
-ROM_5200=
-ROM_5200_A=
-ROM_BASIC_A=
-ROM_BASIC_B=
-ROM_BASIC_C=/usr/share/atari800/ATARIBAS.ROM
-ROM_XEGAME=
-ROM_400/800_CUSTOM=/usr/share/atari800/ATARIOSB.ROM
-ROM_XL/XE_CUSTOM=/usr/share/atari800/ATARIXL.ROM
-ROM_5200_CUSTOM=
-ROM_BASIC_CUSTOM=/usr/share/atari800/ATARIBAS.ROM
-ROM_XEGAME_CUSTOM=
-OS_400/800_VERSION=AUTO
-OS_XL/XE_VERSION=AUTO
-OS_5200_VERSION=AUTO
-BASIC_VERSION=AUTO
-XEGS_GAME_VERSION=AUTO



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/, games-emulation/atari800/files/

2020-06-15 Thread Michał Górny
commit: 376f45cb0c0a960b24c34437d267f7306bedc24b
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun 15 12:49:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 15 13:17:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376f45cb

games-emulation/atari800: Bump to 4.2.0

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/Manifest |  1 +
 games-emulation/atari800/files/atari800-4.2.0.cfg | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/games-emulation/atari800/Manifest 
b/games-emulation/atari800/Manifest
index 825004ae740..c03a9b49edc 100644
--- a/games-emulation/atari800/Manifest
+++ b/games-emulation/atari800/Manifest
@@ -1,2 +1,3 @@
 DIST atari800-3.1.0.tar.gz 1492289 BLAKE2B 
cad7a3111bf714321d01aff1f8b30408efc1eca0876d9b795395d62d18eabdf78b71d3b2af887e8ba03e33e3824fcd5b45070e39cddd0e5ad0bda2d853f724b1
 SHA512 
c8f035c9be000c67dd854a14a236d165e6e2d30b5138f8772c6ea5c5290b0410525570e3ed9dcb2f9bcb129f97a36e6eef5993f0a5ad3cc993c6b59b127bcabe
+DIST atari800-4.2.0-src.tgz 7047710 BLAKE2B 
eac4b2da03d2ff5ec9e18dda41e0345975ed16c1cee23d15d2633211b7d4835b7a26c79fbf1672bb9ce3b82d52c7273e717371a0065ba29807f76d823eeb9855
 SHA512 
1236a8e05bf878e4514ae8e9f1556e0961a7f11ff0333eef415af455d217f712d5c6ededdd343dff6ba1aab777e19997bf9ecb859408187d69fc141301ecba31
 DIST xf25.zip 188942 BLAKE2B 
c10b9108eebc571ac334ea6fca76d227e3d2fcde1595e8823a3d178dc31d9efa9b209572ee03875461289093615470192cf5c9a06cf0b4363d097a9eac201db4
 SHA512 
306612fc2af41ed10d76103af83e141cfd8bd3ba2ea3cbd1d0b81d4d5b0108c06948a5c626648c8a2424536757a42a3f8b9af1fb63fa3c31096447ffed0f9923

diff --git a/games-emulation/atari800/files/atari800-4.2.0.cfg 
b/games-emulation/atari800/files/atari800-4.2.0.cfg
new file mode 100644
index 000..6e79c110dbd
--- /dev/null
+++ b/games-emulation/atari800/files/atari800-4.2.0.cfg
@@ -0,0 +1,31 @@
+Atari 800 Emulator, Version 4.2.0
+ROM_OS_A_NTSC=
+ROM_OS_A_PAL=
+ROM_OS_B_NTSC=
+ROM_OS_AA00R10=
+ROM_OS_AA00R11=
+ROM_OS_BB00R1=
+ROM_OS_BB01R2=/usr/share/atari800/ATARIXL.ROM
+ROM_OS_BB02R3=
+ROM_OS_BB02R3V4=
+ROM_OS_CC01R4=
+ROM_OS_BB01R3=
+ROM_OS_BB01R4=
+ROM_OS_BB01R59=
+ROM_OS_BB01R59A=
+ROM_5200=
+ROM_5200_A=
+ROM_BASIC_A=
+ROM_BASIC_B=
+ROM_BASIC_C=/usr/share/atari800/ATARIBAS.ROM
+ROM_XEGAME=
+ROM_400/800_CUSTOM=/usr/share/atari800/ATARIOSB.ROM
+ROM_XL/XE_CUSTOM=/usr/share/atari800/ATARIXL.ROM
+ROM_5200_CUSTOM=
+ROM_BASIC_CUSTOM=/usr/share/atari800/ATARIBAS.ROM
+ROM_XEGAME_CUSTOM=
+OS_400/800_VERSION=AUTO
+OS_XL/XE_VERSION=AUTO
+OS_5200_VERSION=AUTO
+BASIC_VERSION=AUTO
+XEGS_GAME_VERSION=AUTO



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2020-06-15 Thread Michał Górny
commit: 4c0fb6983e542c3b4a3896143d9ccd43b56d28b8
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun 15 12:49:46 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 15 13:17:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c0fb698

games-emulation/atari800: Take as primary maint

Signed-off-by: Michał Górny  gentoo.org>

 games-emulation/atari800/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/games-emulation/atari800/metadata.xml 
b/games-emulation/atari800/metadata.xml
index 610c1b8077a..4c367c3a4cc 100644
--- a/games-emulation/atari800/metadata.xml
+++ b/games-emulation/atari800/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+  
+mgo...@gentoo.org
+Michał Górny
+  
   
 ga...@gentoo.org
 Gentoo Games Project



[gentoo-commits] repo/gentoo:master commit in: games-emulation/atari800/

2019-04-22 Thread James Le Cuirot
commit: d35acb5171233f59cab58ec83428def6beb5ecc2
Author: Wim Muskee  gmail  com>
AuthorDate: Sat Apr 20 05:56:10 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Apr 22 20:14:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d35acb51

games-emulation/atari800: update HOMEPAGE, SRC_URI, metadata

Closes: https://bugs.gentoo.org/683648
Signed-off-by: Wim Muskee  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11750
Signed-off-by: James Le Cuirot  gentoo.org>

 games-emulation/atari800/atari800-3.1.0-r1.ebuild | 8 
 games-emulation/atari800/metadata.xml | 1 +
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/games-emulation/atari800/atari800-3.1.0-r1.ebuild 
b/games-emulation/atari800/atari800-3.1.0-r1.ebuild
index 31aa318cdeb..9373e100a2a 100644
--- a/games-emulation/atari800/atari800-3.1.0-r1.ebuild
+++ b/games-emulation/atari800/atari800-3.1.0-r1.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 inherit desktop autotools
 
 DESCRIPTION="Atari 800 emulator"
-HOMEPAGE="http://atari800.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-   mirror://sourceforge/${PN}/xf25.zip"
+HOMEPAGE="https://atari800.github.io/;
+SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz
+   
https://sourceforge.net/projects/${PN}/files/ROM/Original%20XL%20ROM/xf25.zip;
 
 LICENSE="GPL-2+"
 SLOT="0"

diff --git a/games-emulation/atari800/metadata.xml 
b/games-emulation/atari800/metadata.xml
index 6489dd5ca13..610c1b8077a 100644
--- a/games-emulation/atari800/metadata.xml
+++ b/games-emulation/atari800/metadata.xml
@@ -25,5 +25,6 @@ ways :
 
   
 atari800
+atari800/atari800