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/generator/
Date: Sun, 29 Apr 2018 11:26:53
Message-Id: 1525001143.457dd2f67611dd2793bb863b04849f5012e3e2fb.pacho@gentoo
1 commit: 457dd2f67611dd2793bb863b04849f5012e3e2fb
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 09:43:02 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 11:25:43 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=457dd2f6
7
8 games-emulation/generator: Drop old
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-emulation/generator/generator-0.35_p4.ebuild | 51 ----------------------
13 1 file changed, 51 deletions(-)
14
15 diff --git a/games-emulation/generator/generator-0.35_p4.ebuild b/games-emulation/generator/generator-0.35_p4.ebuild
16 deleted file mode 100644
17 index e77ec243163..00000000000
18 --- a/games-emulation/generator/generator-0.35_p4.ebuild
19 +++ /dev/null
20 @@ -1,51 +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 toolchain-funcs games
26 -
27 -MY_P=${PN}-${PV/_p/-cbiere-r}
28 -DESCRIPTION="Sega Genesis / Mega Drive emulator"
29 -HOMEPAGE="http://www.squish.net/generator/"
30 -SRC_URI="http://www.squish.net/generator/cbiere/generator/${MY_P}.tar.bz2"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -IUSE="+sdlaudio"
36 -
37 -DEPEND="virtual/jpeg:0
38 - media-libs/libsdl[joystick,video]
39 - sdlaudio? ( media-libs/libsdl[sound] )"
40 -RDEPEND=${DEPEND}
41 -
42 -S=${WORKDIR}/${MY_P}
43 -
44 -src_prepare() {
45 - epatch \
46 - "${FILESDIR}"/${P}-configure.patch \
47 - "${FILESDIR}"/${P}-underlink.patch
48 -
49 - sed -i -e 's/@GTK_CFLAGS@//g' main/Makefile.am || die
50 - eautoreconf
51 -}
52 -
53 -src_configure() {
54 - egamesconf \
55 - --with-cmz80 \
56 - --with-sdl \
57 - --without-tcltk \
58 - --with-gcc=$(gcc-major-version) \
59 - $(use_with sdlaudio sdl-audio)
60 -}
61 -
62 -src_compile() {
63 - [[ -f Makefile ]] && emake clean
64 - emake -j1
65 -}
66 -
67 -src_install() {
68 - dogamesbin main/generator-sdl
69 - dodoc AUTHORS ChangeLog NEWS README TODO docs/*
70 - prepgamesdirs
71 -}