Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/stella/
Date: Sun, 04 Jul 2021 11:53:36
Message-Id: 1625399140.ea8c587a99c5af055cb60f155b767b5c30e5c4c7.ionen@gentoo
1 commit: ea8c587a99c5af055cb60f155b767b5c30e5c4c7
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 06:21:55 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 11:45:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea8c587a
7
8 games-emulation/stella: drop 5.1.3
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-emulation/stella/Manifest | 1 -
13 games-emulation/stella/stella-5.1.3.ebuild | 63 ------------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest
17 index 7fc59ace4a2..7736606d3b5 100644
18 --- a/games-emulation/stella/Manifest
19 +++ b/games-emulation/stella/Manifest
20 @@ -1,2 +1 @@
21 -DIST stella-5.1.3-src.tar.xz 1828448 BLAKE2B 1588e4da3c21ab51d967aa3fae49b14ef5f3121e3907aa83629dbabeab5c190660ad5a53319429f721cc93560c212f530a58675b7c543c9a3fed3e395669c145 SHA512 9aaf6118c999e90e4947e490f61ccebb82ba1ebeccb29b2e4ec1226bdeef83bb36d944791d6f915522c5c6fec74a0bd17ac5ce8fcc5f369281f9cedf06a380a5
22 DIST stella-6.5.2-src.tar.xz 6220652 BLAKE2B 8bb51ff15b28436eb83b918ca6123956482e4342c4f9560dcea608a856899a65176c9012146d1a2affe22ee0a589e945424e897853890e23ff503d97b893e32f SHA512 dc7685fd166fad578bce62c961419755db7c4b8ac6e6e2e10f0edfa3b0f63bf43d64119483cc47fc86dfe95e09bc800c27392239aeb68a2ccf37d0f224d6493c
23
24 diff --git a/games-emulation/stella/stella-5.1.3.ebuild b/games-emulation/stella/stella-5.1.3.ebuild
25 deleted file mode 100644
26 index e1a6bdf39dd..00000000000
27 --- a/games-emulation/stella/stella-5.1.3.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit desktop gnome2-utils toolchain-funcs
36 -
37 -DESCRIPTION="Multi-platform Atari 2600 VCS Emulator"
38 -HOMEPAGE="https://stella-emu.github.io"
39 -SRC_URI="https://github.com/stella-emu/${PN}/releases/download/${PV}/${P}-src.tar.xz"
40 -
41 -LICENSE="GPL-2+ BSD"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE="joystick"
45 -
46 -RDEPEND="
47 - media-libs/libsdl2[joystick?,opengl,video]
48 - media-libs/libpng:0=
49 - sys-libs/zlib
50 -"
51 -DEPEND="${RDEPEND}"
52 -
53 -DOCS=(Announce.txt Changes.txt Copyright.txt README-SDL.txt Readme.txt Todo.txt)
54 -HTML_DOCS=(docs/.)
55 -
56 -src_prepare() {
57 - default
58 - sed -i \
59 - -e '/INSTALL/s/-s //' \
60 - -e '/STRIP/d' \
61 - -e "/icons/d" \
62 - -e '/INSTALL.*DOCDIR/d' \
63 - -e '/INSTALL.*\/applications/d' \
64 - -e '/CXXFLAGS+=/s/-fomit-frame-pointer//' \
65 - Makefile || die
66 -}
67 -
68 -src_configure() {
69 - # not an autoconf script
70 - CXX=$(tc-getCXX) \
71 - ./configure \
72 - --prefix="/usr" \
73 - --bindir="/usr/bin" \
74 - --docdir="/usr/share/doc/${PF}" \
75 - --datadir="/usr/share" \
76 - $(use_enable joystick) \
77 - || die
78 -}
79 -
80 -src_install() {
81 - default
82 - local i
83 -
84 - for i in 16 22 24 32 48 64 128 ; do
85 - newicon -s ${i} src/common/stella-${i}x${i}.png stella.png
86 - done
87 - domenu src/unix/stella.desktop
88 - einstalldocs
89 -}
90 -
91 -pkg_postinst() { gnome2_icon_cache_update; }
92 -pkg_postrm() { gnome2_icon_cache_update; }