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:44 +0100 |
commit | f55890b0371295ffd10e024dbc08253efa2462c0 (patch) | |
tree | 10dd344567c68f4fef4b6349d323e7d1814644be /games-emulation | |
parent | games-emulation/mupen64plus-video-glide64mk2: Remove old (diff) | |
download | gentoo-f55890b0371295ffd10e024dbc08253efa2462c0.tar.gz gentoo-f55890b0371295ffd10e024dbc08253efa2462c0.tar.bz2 gentoo-f55890b0371295ffd10e024dbc08253efa2462c0.zip |
games-emulation/mupen64plus-video-rice: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mupen64plus-video-rice/Manifest | 1 | ||||
-rw-r--r-- | games-emulation/mupen64plus-video-rice/mupen64plus-video-rice-2.0-r1.ebuild | 80 |
2 files changed, 0 insertions, 81 deletions
diff --git a/games-emulation/mupen64plus-video-rice/Manifest b/games-emulation/mupen64plus-video-rice/Manifest index 46d27ec41921..b49ab1de5d78 100644 --- a/games-emulation/mupen64plus-video-rice/Manifest +++ b/games-emulation/mupen64plus-video-rice/Manifest @@ -1,2 +1 @@ -DIST mupen64plus-video-rice-src-2.0.tar.gz 362013 BLAKE2B 4c601e7da153dbce3b2daa054914411f2eeaebee8168d41cccf57c80a72ad91bbe9ff1cb2906548a748c1143346de2ddfaeaa65dc75e89b9dddbc961aadb9692 SHA512 bbab67be20b6d2ed6a246de8a2b955051489ac128ddecff0e3fc54782fc1d17ed8f9e1cded22d215b2c5c865b4b5fe831fffb28803247a2e494746565d23d764 DIST mupen64plus-video-rice-src-2.5.tar.gz 339012 BLAKE2B 861f350376e92c24a31955cc39ba33abef9930d4fd598619fd0a6b7ff746b1bb71e1644dfed3aebab902b09c4fcbd1a1755475b11676c6070fe92ea4f30b4802 SHA512 d3e9c3b3097ca9b9d896498bb34374a14ec1948fce8b795e755bb13a88f3066289fe2500666b4057e719bf3f1b38b840f8a60eaeccdcdddfab69b1986c953d61 diff --git a/games-emulation/mupen64plus-video-rice/mupen64plus-video-rice-2.0-r1.ebuild b/games-emulation/mupen64plus-video-rice/mupen64plus-video-rice-2.0-r1.ebuild deleted file mode 100644 index b577b8f1ac95..000000000000 --- a/games-emulation/mupen64plus-video-rice/mupen64plus-video-rice-2.0-r1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2015 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, rice video 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="cpu_flags_x86_sse" - -RDEPEND=">=games-emulation/mupen64plus-core-2.0-r1:0= - media-libs/libpng:0= - media-libs/libsdl:0=[video] - virtual/opengl:0=" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -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= - - # Package-specific stuff - - # CROSS_COMPILE causes it to look for ${CHOST}-sdl-config... - SDL_CFLAGS="$($(tc-getPKG_CONFIG) --cflags sdl)" - SDL_LDLIBS="$($(tc-getPKG_CONFIG) --libs sdl)" - - NO_ASM=$(usex cpu_flags_x86_sse 0 1) - ) - - use amd64 && MAKEARGS+=( HOST_CPU=x86_64 ) - use x86 && MAKEARGS+=( HOST_CPU=i386 ) - - emake "${MAKEARGS[@]}" all -} - -src_install() { - emake "${MAKEARGS[@]}" DESTDIR="${D}" install - einstalldocs -} |