summaryrefslogtreecommitdiff
path: root/games-emulation/stella
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-21 20:47:17 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-21 20:47:17 +0000
commit4ab6db5717ef23f29320d4c6fb9ebdb8dec1f193 (patch)
treef7640b8b96a04499f1ce44a2cad122d45a8373bd /games-emulation/stella
parent48bdeb0db9c7ffed22c6eb859ee40b55ba598b86 (diff)
gentoo resync : 21.12.2017
Diffstat (limited to 'games-emulation/stella')
-rw-r--r--games-emulation/stella/Manifest2
-rw-r--r--games-emulation/stella/stella-4.0.ebuild68
2 files changed, 0 insertions, 70 deletions
diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest
index 01f67bd75155..a3f6a5704475 100644
--- a/games-emulation/stella/Manifest
+++ b/games-emulation/stella/Manifest
@@ -1,5 +1,3 @@
-DIST stella-4.0-src.tar.gz 2283736 BLAKE2B bbc95e6c073ced1a2d79a135432f2bd11656dfdb5ab468c581df138438e6f1b0e792f5b68db26ba5aefb0ec3ff9567a2ab75a5021571b80895ce1c9987a19407 SHA512 42df4429dfbfc268e7b7d1c538641b443703ba2af4ad4e66b9df05f2b7d62a860a1895f738d95a3a0b879052865137d31a22b8611f3b93ff9746649553c099fa
DIST stella-4.7.2-src.tar.xz 1715332 BLAKE2B 7b397a4e662f8db247a67ddedb314c9b11ee4e99d55768b1cd8e2587b452fab9c5d45c840bf1577833712a2c96d42985d39437d1fac16e93c35762e015ddf445 SHA512 dcfaba9b554ab08c9ba79c8e95551bc688fae4ab0ab368df11c05f3dc7c9431d32068d5dd658ec4d1aa8cb826c7205fc4f301145a149d32369833409992455e2
-EBUILD stella-4.0.ebuild 1383 BLAKE2B 5accd9565ddc0114f17743bfbcbefabb587678d1781f5a8724a63c7312cdd5acb2f02fbcc36ae65e6f67a7e0b86d663babdc6310e214055b4b68382c78768173 SHA512 96e278d269f8a991af80834f4c57425ba6b8e48a37f65359dce80964497dc53b38ee2a8a0ed90d38c89b2be3ae147d643d9c415e9ddd2100164d263d1e6c915e
EBUILD stella-4.7.2.ebuild 1368 BLAKE2B 3d24724cb9cd50ae50e7d758d0ead4f7635fa78eb13a71c2e19205244a6f9d420900855d24e74eba55ff24878313995b039e2ee531f52c5d9023152c469de760 SHA512 897cfd1b772db34fccc1d4da35f68966fe42a804c6c6ceb4907f3527d0c5181d700f5dfa6b27341a2819035dfa433590bfb674cf6d1af26a467f7b5d561f3beb
MISC metadata.xml 329 BLAKE2B 3ee498d6ed1bda6ccdd1e6e6a7eae732766c005ae6bf4c02b09f8f5de417d9f4c20ae925a2d7d148204f0c43a4c4ef1310cd6d925dee4beb2ede0c74ae34b636 SHA512 80e6880e6edea2eab64504d6cdf4496f94f9bfb6a4ea63da347b9fb05ca3fa999d646406e22563799d8ba40c1d3d095094ea8d86a500bb490ce2034c3ff38182
diff --git a/games-emulation/stella/stella-4.0.ebuild b/games-emulation/stella/stella-4.0.ebuild
deleted file mode 100644
index 5cf6b70c7e9e..000000000000
--- a/games-emulation/stella/stella-4.0.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils games
-
-DESCRIPTION="Stella Atari 2600 VCS Emulator"
-HOMEPAGE="http://stella.sourceforge.net/"
-SRC_URI="mirror://sourceforge/stella/${P}-src.tar.gz"
-
-LICENSE="GPL-2 BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="joystick"
-
-DEPEND="media-libs/libsdl2[joystick?,opengl,video]
- media-libs/libpng:0
- sys-libs/zlib"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- sed -i \
- -e '/INSTALL/s/-s //' \
- -e '/STRIP/d' \
- -e "/icons/d" \
- -e '/INSTALL.*DOCDIR/d' \
- -e '/INSTALL.*\/applications/d' \
- -e '/CXXFLAGS+=/s/-fomit-frame-pointer//' \
- Makefile || die
-}
-
-src_configure() {
- # not an autoconf script
- ./configure \
- --prefix="/usr" \
- --bindir="${GAMES_BINDIR}" \
- --docdir="/usr/share/doc/${PF}" \
- --datadir="${GAMES_DATADIR}" \
- $(use_enable joystick) \
- || die
-}
-
-src_install() {
- local i
- for i in 16 22 24 32 48 64 128 ; do
- newicon -s ${i} src/common/stella-${i}x${i}.png stella.png
- done
-
- emake DESTDIR="${D}" install
- domenu src/unix/stella.desktop
- dohtml -r docs/*
- dodoc Announce.txt Changes.txt Copyright.txt README-SDL.txt Readme.txt Todo.txt
- prepgamesdirs
-}
-
-pkg_preinst() {
- games_pkg_preinst
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- games_pkg_postinst
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}