diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:18 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:40:26 +0100 |
commit | 3abceef74f810a705caf3c045acb1cfc251c6be8 (patch) | |
tree | b13f5434388272d7792dc04c75dfdf55421c82f5 /games-emulation | |
parent | games-emulation/mupen64plus-input-sdl: Remove old (diff) | |
download | gentoo-3abceef74f810a705caf3c045acb1cfc251c6be8.tar.gz gentoo-3abceef74f810a705caf3c045acb1cfc251c6be8.tar.bz2 gentoo-3abceef74f810a705caf3c045acb1cfc251c6be8.zip |
games-emulation/mupen64plus-rsp-hle: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mupen64plus-rsp-hle/Manifest | 1 | ||||
-rw-r--r-- | games-emulation/mupen64plus-rsp-hle/mupen64plus-rsp-hle-2.0-r1.ebuild | 68 |
2 files changed, 0 insertions, 69 deletions
diff --git a/games-emulation/mupen64plus-rsp-hle/Manifest b/games-emulation/mupen64plus-rsp-hle/Manifest index eb15913a3dfc..e9d855d3812f 100644 --- a/games-emulation/mupen64plus-rsp-hle/Manifest +++ b/games-emulation/mupen64plus-rsp-hle/Manifest @@ -1,2 +1 @@ -DIST mupen64plus-rsp-hle-src-2.0.tar.gz 46291 BLAKE2B a150bb8da00be27fedb0141eb39cccc895668bafc8553aa65f37a6b3abd2988b72bae8cbdfe64c0a997a558a472d3bedaee0a81e8733e73a7efe687268bd6321 SHA512 e1caa121d377be0856708fa5c13c234abc0bbb2cab90f40963983baf6230a1d4a4b7da9af0fa2ed6737538265b6392d8a43e9e537ccbd63bbb6ee44da8b29fdf DIST mupen64plus-rsp-hle-src-2.5.tar.gz 46998 BLAKE2B 3bb5ee627fa4c367e7dd1ef0ac0a1eae1267cf82ac66a35f4dcd972703b9cba832224cab1be20c75e9f61af2afae0c8eb7dd6ba806a47c57eef6e6c5da9e8a5a SHA512 564d96050890cc61df05163f99a0be8198e870f0d4071e87828bf58b283b2be8ca7de20ed03482ea8c45725bdd6f6baea618c068cced407892cf2add6ef373c6 diff --git a/games-emulation/mupen64plus-rsp-hle/mupen64plus-rsp-hle-2.0-r1.ebuild b/games-emulation/mupen64plus-rsp-hle/mupen64plus-rsp-hle-2.0-r1.ebuild deleted file mode 100644 index b326e6251588..000000000000 --- a/games-emulation/mupen64plus-rsp-hle/mupen64plus-rsp-hle-2.0-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -MY_P=${PN}-src-${PV} -inherit eutils multilib toolchain-funcs - -DESCRIPTION="A fork of Mupen64 Nintendo 64 emulator, HLE RSP plugin" -HOMEPAGE="http://www.mupen64plus.org/" -SRC_URI="https://github.com/mupen64plus/${PN}/releases/download/${PV}/${MY_P}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=games-emulation/mupen64plus-core-2.0-r1:0=" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch_user - - # avoid implicitly appending CPU flags - sed -i -e 's:-mmmx::g' -e 's:-msse::g' projects/unix/Makefile || die -} - -src_compile() { - MAKEARGS=( - # Note: please keep this in sync in all of mupen64plus-* packages - - -C projects/unix - - # this basically means: GNU userspace - UNAME=Linux - - # verbose output - V=1 - - CROSS_COMPILE="${CHOST}-" - CC="$(tc-getCC)" - CXX="$(tc-getCXX)" - PKG_CONFIG="$(tc-getPKG_CONFIG)" - # usual CFLAGS, CXXFLAGS and LDFLAGS are respected - # so we can leave OPTFLAGS empty - OPTFLAGS= - - # paths, some of them are used at compile time - PREFIX=/usr - LIBDIR=/usr/$(get_libdir) - - # disable unwanted magic - LDCONFIG=: - INSTALL_STRIP_FLAG= - ) - - use amd64 && MAKEARGS+=( HOST_CPU=x86_64 ) - use x86 && MAKEARGS+=( HOST_CPU=i386 ) - - emake "${MAKEARGS[@]}" all -} - -src_install() { - emake "${MAKEARGS[@]}" DESTDIR="${D}" install - einstalldocs -} |