Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/stella/
Date: Sun, 29 Apr 2018 13:07:05
Message-Id: 1525007193.f54b3fd4719507680fb27bae91ecb590e3b15649.pacho@gentoo
1 commit: f54b3fd4719507680fb27bae91ecb590e3b15649
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 12:19:30 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 13:06:33 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54b3fd4
7
8 games-emulation/stella: Drop old
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-emulation/stella/stella-4.7.2.ebuild | 69 ------------------------------
13 1 file changed, 69 deletions(-)
14
15 diff --git a/games-emulation/stella/stella-4.7.2.ebuild b/games-emulation/stella/stella-4.7.2.ebuild
16 deleted file mode 100644
17 index fdad7813c4b..00000000000
18 --- a/games-emulation/stella/stella-4.7.2.ebuild
19 +++ /dev/null
20 @@ -1,69 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit eutils gnome2-utils games
26 -
27 -DESCRIPTION="Stella Atari 2600 VCS Emulator"
28 -HOMEPAGE="http://stella.sourceforge.net/"
29 -SRC_URI="mirror://sourceforge/stella/${P}-src.tar.xz"
30 -
31 -LICENSE="GPL-2+ BSD"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="joystick"
35 -
36 -DEPEND="media-libs/libsdl2[joystick?,opengl,video]
37 - media-libs/libpng:0
38 - sys-libs/zlib"
39 -RDEPEND=${DEPEND}
40 -
41 -src_prepare() {
42 - sed -i \
43 - -e '/INSTALL/s/-s //' \
44 - -e '/STRIP/d' \
45 - -e "/icons/d" \
46 - -e '/INSTALL.*DOCDIR/d' \
47 - -e '/INSTALL.*\/applications/d' \
48 - -e '/CXXFLAGS+=/s/-fomit-frame-pointer//' \
49 - Makefile || die
50 -}
51 -
52 -src_configure() {
53 - # not an autoconf script
54 - ./configure \
55 - --prefix="/usr" \
56 - --bindir="${GAMES_BINDIR}" \
57 - --docdir="/usr/share/doc/${PF}" \
58 - --datadir="${GAMES_DATADIR}" \
59 - $(use_enable joystick) \
60 - || die
61 -}
62 -
63 -src_install() {
64 - local i
65 -
66 - DOCS="Announce.txt Changes.txt Copyright.txt README-SDL.txt Readme.txt Todo.txt" \
67 - default
68 -
69 - for i in 16 22 24 32 48 64 128 ; do
70 - newicon -s ${i} src/common/stella-${i}x${i}.png stella.png
71 - done
72 - domenu src/unix/stella.desktop
73 - dohtml -r docs/*
74 - prepgamesdirs
75 -}
76 -
77 -pkg_preinst() {
78 - games_pkg_preinst
79 - gnome2_icon_savelist
80 -}
81 -
82 -pkg_postinst() {
83 - games_pkg_postinst
84 - gnome2_icon_cache_update
85 -}
86 -
87 -pkg_postrm() {
88 - gnome2_icon_cache_update
89 -}