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: Sat, 17 Jul 2021 08:16:30
Message-Id: 1626508729.bcfd1fb807cfc2108d341d58306ae8ec15918180.ionen@gentoo
1 commit: bcfd1fb807cfc2108d341d58306ae8ec15918180
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 17 07:41:52 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 17 07:58:49 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcfd1fb8
7
8 games-emulation/stella: drop 6.5.2
9
10 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
11
12 games-emulation/stella/Manifest | 1 -
13 games-emulation/stella/stella-6.5.2.ebuild | 69 ------------------------------
14 2 files changed, 70 deletions(-)
15
16 diff --git a/games-emulation/stella/Manifest b/games-emulation/stella/Manifest
17 index 3dd6eea9941..76abdf16801 100644
18 --- a/games-emulation/stella/Manifest
19 +++ b/games-emulation/stella/Manifest
20 @@ -1,2 +1 @@
21 -DIST stella-6.5.2-src.tar.xz 6220652 BLAKE2B 8bb51ff15b28436eb83b918ca6123956482e4342c4f9560dcea608a856899a65176c9012146d1a2affe22ee0a589e945424e897853890e23ff503d97b893e32f SHA512 dc7685fd166fad578bce62c961419755db7c4b8ac6e6e2e10f0edfa3b0f63bf43d64119483cc47fc86dfe95e09bc800c27392239aeb68a2ccf37d0f224d6493c
22 DIST stella-6.5.3-src.tar.xz 6221588 BLAKE2B 1cee75cd27c14db5a2eaf3a6d88af5b3d081c2577afd4b46b27ef33dd11d676cd5fe981d8ae918373b16d7f50e0151a9e0fc00765fb39370ea50f8322a90b963 SHA512 67fe45c0be510494e4c3ead91ee5f7c9a8ba7059b76beb15e794ef49144c8f0fb57d7c7476f4f299e573e37ea1c41f2fb094ca10974f3bcda797fc69c9bd2986
23
24 diff --git a/games-emulation/stella/stella-6.5.2.ebuild b/games-emulation/stella/stella-6.5.2.ebuild
25 deleted file mode 100644
26 index ae5e9b2d43b..00000000000
27 --- a/games-emulation/stella/stella-6.5.2.ebuild
28 +++ /dev/null
29 @@ -1,69 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
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 -
59 - sed -i \
60 - -e '/INSTALL/s/-s //' \
61 - -e '/STRIP/d' \
62 - -e "/icons/d" \
63 - -e '/INSTALL.*DOCDIR/d' \
64 - -e '/INSTALL.*\/applications/d' \
65 - -e '/CXXFLAGS+=/s/-fomit-frame-pointer//' \
66 - Makefile || die
67 -}
68 -
69 -src_configure() {
70 - # not an autoconf script
71 - CXX="$(tc-getCXX)" ./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 -
83 - local i
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 -
88 - domenu src/unix/stella.desktop
89 - einstalldocs
90 -}
91 -
92 -pkg_postinst() {
93 - gnome2_icon_cache_update
94 -}
95 -
96 -pkg_postrm() {
97 - gnome2_icon_cache_update
98 -}