summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2019-02-12 12:48:18 +0300
committerMikle Kolyada <zlogene@gentoo.org>2019-02-12 12:48:18 +0300
commit164f2130680cd0bd936410588e90b6787d6979d8 (patch)
tree298a63179cc786a020bf2c9c517cb0ae42ea89b6 /app-emulation/spectemu
parentapp-emulation/spectemu: amd64 stable wrt bug #676398 (diff)
downloadgentoo-164f2130680cd0bd936410588e90b6787d6979d8.tar.gz
gentoo-164f2130680cd0bd936410588e90b6787d6979d8.tar.bz2
gentoo-164f2130680cd0bd936410588e90b6787d6979d8.zip
app-emulation/spectemu: Drop old
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'app-emulation/spectemu')
-rw-r--r--app-emulation/spectemu/spectemu-0.99.3.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/app-emulation/spectemu/spectemu-0.99.3.ebuild b/app-emulation/spectemu/spectemu-0.99.3.ebuild
deleted file mode 100644
index bb18f8ec2727..000000000000
--- a/app-emulation/spectemu/spectemu-0.99.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-### Several versions of specemu exist, xspect & vgaspect, utilising X11
-### and/or svgalib. libreadline provides optional runtime features.
-### The ./configure script automagically figures out which binaries to build
-### so the run/compiletime dependancies here are use dependant
-
-inherit eutils
-
-DESCRIPTION="48k ZX Spectrum Emulator"
-HOMEPAGE="http://kempelen.iit.bme.hu/~mszeredi/spectemu/spectemu.html"
-SRC_URI="http://www.inf.bme.hu/~mszeredi/spectemu/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="X readline svga"
-
-DEPEND="X? ( x11-base/xorg-proto
- >=x11-libs/libX11-1.0.0
- >=x11-libs/libXext-1.0.0
- >=x11-libs/libXxf86vm-1.0.0 )
- readline? ( sys-libs/readline )"
-RDEPEND="svga? ( media-libs/svgalib )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-qa.patch
-}
-
-src_compile() {
- econf \
- $(use_with readline) \
- $(use_with X x)
- emake CC="$(tc-getCC)" \
- CPP="$(tc-getCPP)" \
- || die "emake failed"
-}
-
-src_install() {
- # Parallel install bug #255777
- emake -j1 install_root="${D}" install || die "emake install failed"
-}