From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2AEC2138334 for ; Tue, 12 Feb 2019 09:48:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48707E0825; Tue, 12 Feb 2019 09:48:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15BDEE0825 for ; Tue, 12 Feb 2019 09:48:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A88D335D71 for ; Tue, 12 Feb 2019 09:48:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14A97523 for ; Tue, 12 Feb 2019 09:48:35 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1549964898.164f2130680cd0bd936410588e90b6787d6979d8.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spectemu/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/spectemu/spectemu-0.99.3.ebuild X-VCS-Directories: app-emulation/spectemu/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 164f2130680cd0bd936410588e90b6787d6979d8 X-VCS-Branch: master Date: Tue, 12 Feb 2019 09:48:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0e48d2aa-fd6b-4896-b5d8-9359e81ce236 X-Archives-Hash: 83717a19dbc22b6c50e51b89b3798550 commit: 164f2130680cd0bd936410588e90b6787d6979d8 Author: Mikle Kolyada gentoo org> AuthorDate: Tue Feb 12 09:48:18 2019 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Tue Feb 12 09:48:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164f2130 app-emulation/spectemu: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-emulation/spectemu/spectemu-0.99.3.ebuild | 47 --------------------------- 1 file changed, 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 bb18f8ec272..00000000000 --- 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" -}