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 5FEAD138331 for ; Sun, 29 Apr 2018 11:26:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87DAEE0991; Sun, 29 Apr 2018 11:26:50 +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 68548E0991 for ; Sun, 29 Apr 2018 11:26:50 +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 E065C335C9C for ; Sun, 29 Apr 2018 11:26:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FC8129F for ; Sun, 29 Apr 2018 11:26:47 +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: <1525001134.1d4bf242850b54b935760e55fbfad16c67e6c42d.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/gambatte/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/gambatte/gambatte-0.5.0_p20131102-r1.ebuild X-VCS-Directories: games-emulation/gambatte/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 1d4bf242850b54b935760e55fbfad16c67e6c42d X-VCS-Branch: master Date: Sun, 29 Apr 2018 11:26:47 +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: 167a65f3-8cc9-454f-8dcd-108fea47c4b5 X-Archives-Hash: a0e3e9ee94b4f2f8008508d479b1f1d1 commit: 1d4bf242850b54b935760e55fbfad16c67e6c42d Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 29 09:35:30 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 29 11:25:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d4bf242 games-emulation/gambatte: Drop old Package-Manager: Portage-2.3.31, Repoman-2.3.9 .../gambatte/gambatte-0.5.0_p20131102-r1.ebuild | 76 ---------------------- 1 file changed, 76 deletions(-) diff --git a/games-emulation/gambatte/gambatte-0.5.0_p20131102-r1.ebuild b/games-emulation/gambatte/gambatte-0.5.0_p20131102-r1.ebuild deleted file mode 100644 index 5f6d72d5af7..00000000000 --- a/games-emulation/gambatte/gambatte-0.5.0_p20131102-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit scons-utils games - -DESCRIPTION="An accuracy-focused Gameboy / Gameboy Color emulator" -HOMEPAGE="https://sourceforge.net/projects/gambatte" -SRC_URI="https://dev.gentoo.org/~hasufell/distfiles/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - media-libs/libsdl[X,sound,joystick,video] - sys-libs/zlib" -DEPEND="${RDEPEND} - app-arch/xz-utils" - -fix_scons() { - local i - for i; do - cat >> $i << END -import os -import SCons.Util - -if os.environ.has_key('AR'): - env['AR'] = os.environ['AR'] -if os.environ.has_key('RANLIB'): - env['RANLIB'] = os.environ['RANLIB'] -if os.environ.has_key('CC'): - env['CC'] = os.environ['CC'] -if os.environ.has_key('CFLAGS'): - env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CFLAGS']) -if os.environ.has_key('CXX'): - env['CXX'] = os.environ['CXX'] -if os.environ.has_key('CXXFLAGS'): - env['CXXFLAGS'] += SCons.Util.CLVar(os.environ['CXXFLAGS']) -if os.environ.has_key('CPPFLAGS'): - env['CCFLAGS'] += SCons.Util.CLVar(os.environ['CPPFLAGS']) -if os.environ.has_key('LDFLAGS'): - env['LINKFLAGS'] += SCons.Util.CLVar(os.environ['LDFLAGS']) -END - done -} - -src_prepare() { - # Fix zlib/minizip build error - sed -i \ - -e '1i#define OF(x) x' \ - libgambatte/src/file/unzip/{unzip,ioapi}.h \ - || die "sed iompi.h failed" - - fix_scons {gambatte_sdl,libgambatte}/SConstruct -} - -src_compile() { - # build core library - cd "${S}"/libgambatte || die - escons - - # build sdl frontend - cd "${S}"/gambatte_sdl || die - escons -} - -src_install() { - dogamesbin gambatte_sdl/gambatte_sdl - - dodoc README changelog - - prepgamesdirs -}