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/gnuboy/
Date: Sun, 29 Apr 2018 11:26:54
Message-Id: 1525001164.fbd8c44fbeb0ab4ba0b8eabe91b55a13aecd9089.pacho@gentoo
1 commit: fbd8c44fbeb0ab4ba0b8eabe91b55a13aecd9089
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 10:12:37 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 11:26:04 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd8c44f
7
8 games-emulation/gnuboy: Drop old
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild | 57 ---------------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild b/games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild
16 deleted file mode 100644
17 index 86111def6f7..00000000000
18 --- a/games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -inherit autotools eutils games
26 -
27 -DESCRIPTION="Gameboy emulator with multiple renderers"
28 -HOMEPAGE="https://sourceforge.net/projects/gnuboy/"
29 -SRC_URI="mirror://gentoo/${P}.tar.gz"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="X sdl"
35 -
36 -RDEPEND="sdl? ( media-libs/libsdl )
37 - !X? ( media-libs/libsdl )
38 - X? ( x11-libs/libXext )"
39 -DEPEND="${RDEPEND}
40 - X? ( x11-proto/xextproto
41 - x11-proto/xproto )"
42 -
43 -src_prepare() {
44 - epatch \
45 - "${FILESDIR}"/${P}-exec-stack.patch \
46 - "${FILESDIR}"/${P}-linux-headers.patch \
47 - "${FILESDIR}"/${P}-include.patch
48 -
49 - eautoreconf
50 -}
51 -
52 -src_configure() {
53 - local myconf
54 -
55 - if ! use X ; then
56 - myconf="--with-sdl"
57 - fi
58 -
59 - egamesconf \
60 - $(use_with X x) \
61 - $(use_with sdl) \
62 - $(use_enable x86 asm) \
63 - ${myconf} \
64 - --disable-arch \
65 - --disable-optimize
66 -}
67 -
68 -src_install() {
69 - for f in sdlgnuboy xgnuboy
70 - do
71 - if [[ -f ${f} ]] ; then
72 - dogamesbin ${f}
73 - fi
74 - done
75 - dodoc README docs/{CHANGES,CONFIG,CREDITS,FAQ,HACKING,WHATSNEW}
76 - prepgamesdirs
77 -}