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 C9BF21382C5 for ; Sun, 29 Apr 2018 11:26:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17D79E099B; Sun, 29 Apr 2018 11:26:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E5A86E099B for ; Sun, 29 Apr 2018 11:26:51 +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 F0B64335C9F for ; Sun, 29 Apr 2018 11:26:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0462A2AC for ; Sun, 29 Apr 2018 11:26:48 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1525001164.fbd8c44fbeb0ab4ba0b8eabe91b55a13aecd9089.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/gnuboy/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild X-VCS-Directories: games-emulation/gnuboy/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: fbd8c44fbeb0ab4ba0b8eabe91b55a13aecd9089 X-VCS-Branch: master Date: Sun, 29 Apr 2018 11:26:48 +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-Archives-Salt: 8f39feb2-b1a8-479c-b520-b15c342326d1 X-Archives-Hash: 6d56f244bbd1d84739b887e25b817090 commit: fbd8c44fbeb0ab4ba0b8eabe91b55a13aecd9089 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 29 10:12:37 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 29 11:26:04 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd8c44f games-emulation/gnuboy: Drop old Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild | 57 --------------------------- 1 file changed, 57 deletions(-) diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild b/games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild deleted file mode 100644 index 86111def6f7..00000000000 --- a/games-emulation/gnuboy/gnuboy-1.0.3-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils games - -DESCRIPTION="Gameboy emulator with multiple renderers" -HOMEPAGE="https://sourceforge.net/projects/gnuboy/" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="X sdl" - -RDEPEND="sdl? ( media-libs/libsdl ) - !X? ( media-libs/libsdl ) - X? ( x11-libs/libXext )" -DEPEND="${RDEPEND} - X? ( x11-proto/xextproto - x11-proto/xproto )" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-exec-stack.patch \ - "${FILESDIR}"/${P}-linux-headers.patch \ - "${FILESDIR}"/${P}-include.patch - - eautoreconf -} - -src_configure() { - local myconf - - if ! use X ; then - myconf="--with-sdl" - fi - - egamesconf \ - $(use_with X x) \ - $(use_with sdl) \ - $(use_enable x86 asm) \ - ${myconf} \ - --disable-arch \ - --disable-optimize -} - -src_install() { - for f in sdlgnuboy xgnuboy - do - if [[ -f ${f} ]] ; then - dogamesbin ${f} - fi - done - dodoc README docs/{CHANGES,CONFIG,CREDITS,FAQ,HACKING,WHATSNEW} - prepgamesdirs -}