Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spectemu/
Date: Tue, 12 Feb 2019 09:48:39
Message-Id: 1549964898.164f2130680cd0bd936410588e90b6787d6979d8.zlogene@gentoo
1 commit: 164f2130680cd0bd936410588e90b6787d6979d8
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 12 09:48:18 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 12 09:48:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164f2130
7
8 app-emulation/spectemu: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-emulation/spectemu/spectemu-0.99.3.ebuild | 47 ---------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/app-emulation/spectemu/spectemu-0.99.3.ebuild b/app-emulation/spectemu/spectemu-0.99.3.ebuild
17 deleted file mode 100644
18 index bb18f8ec272..00000000000
19 --- a/app-emulation/spectemu/spectemu-0.99.3.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -### Several versions of specemu exist, xspect & vgaspect, utilising X11
28 -### and/or svgalib. libreadline provides optional runtime features.
29 -### The ./configure script automagically figures out which binaries to build
30 -### so the run/compiletime dependancies here are use dependant
31 -
32 -inherit eutils
33 -
34 -DESCRIPTION="48k ZX Spectrum Emulator"
35 -HOMEPAGE="http://kempelen.iit.bme.hu/~mszeredi/spectemu/spectemu.html"
36 -SRC_URI="http://www.inf.bme.hu/~mszeredi/spectemu/${P}.tar.gz"
37 -
38 -LICENSE="GPL-2"
39 -SLOT="0"
40 -KEYWORDS="amd64 ppc x86"
41 -IUSE="X readline svga"
42 -
43 -DEPEND="X? ( x11-base/xorg-proto
44 - >=x11-libs/libX11-1.0.0
45 - >=x11-libs/libXext-1.0.0
46 - >=x11-libs/libXxf86vm-1.0.0 )
47 - readline? ( sys-libs/readline )"
48 -RDEPEND="svga? ( media-libs/svgalib )"
49 -
50 -src_unpack() {
51 - unpack ${A}
52 - cd "${S}"
53 - epatch "${FILESDIR}"/${P}-qa.patch
54 -}
55 -
56 -src_compile() {
57 - econf \
58 - $(use_with readline) \
59 - $(use_with X x)
60 - emake CC="$(tc-getCC)" \
61 - CPP="$(tc-getCPP)" \
62 - || die "emake failed"
63 -}
64 -
65 -src_install() {
66 - # Parallel install bug #255777
67 - emake -j1 install_root="${D}" install || die "emake install failed"
68 -}