diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-03-12 18:55:59 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-03-12 18:55:59 +0000 |
commit | 248956cd6cd0eba3d92d4a25480a8a1d4a3bd2dc (patch) | |
tree | ece1df0f8cf0fd4a9980d92f63abebd9669fe227 /games-emulation | |
parent | version bump (diff) | |
download | gentoo-2-248956cd6cd0eba3d92d4a25480a8a1d4a3bd2dc.tar.gz gentoo-2-248956cd6cd0eba3d92d4a25480a8a1d4a3bd2dc.tar.bz2 gentoo-2-248956cd6cd0eba3d92d4a25480a8a1d4a3bd2dc.zip |
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/gnuboy/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/gnuboy/gnuboy-1.0.3.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/games-emulation/gnuboy/ChangeLog b/games-emulation/gnuboy/ChangeLog index 6f770d4f8782..8b0fe991487f 100644 --- a/games-emulation/gnuboy/ChangeLog +++ b/games-emulation/gnuboy/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/gnuboy # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gnuboy/ChangeLog,v 1.16 2015/02/21 12:25:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/gnuboy/ChangeLog,v 1.17 2015/03/12 18:55:59 mr_bones_ Exp $ + + 12 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> -gnuboy-1.0.3.ebuild: + old 21 Feb 2015; Agostino Sarubbo <ago@gentoo.org> gnuboy-1.0.3-r1.ebuild: Stable for ppc, wrt bug #539394 diff --git a/games-emulation/gnuboy/gnuboy-1.0.3.ebuild b/games-emulation/gnuboy/gnuboy-1.0.3.ebuild deleted file mode 100644 index 2c96551aa868..000000000000 --- a/games-emulation/gnuboy/gnuboy-1.0.3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/gnuboy/gnuboy-1.0.3.ebuild,v 1.14 2011/07/10 02:16:07 mr_bones_ Exp $ - -EAPI=2 -inherit autotools eutils games - -DESCRIPTION="Gameboy emulator with multiple renderers" -HOMEPAGE="http://code.google.com/p/gnuboy/" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="X fbcon sdl svga" - -RDEPEND="sdl? ( media-libs/libsdl ) - !X? ( !svga? ( !fbcon? ( media-libs/libsdl ) ) ) - X? ( x11-libs/libXext ) - fbcon? ( sys-apps/fbset )" -DEPEND="${RDEPEND} - svga? ( media-libs/svgalib ) - X? ( x11-proto/xextproto - x11-proto/xproto )" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-exec-stack.patch \ - "${FILESDIR}"/${P}-linux-headers.patch - eautoreconf -} - -src_configure() { - local myconf - - if ! use X && ! use svga && ! use fbcon; then - myconf="--with-sdl" - fi - - egamesconf \ - $(use_with X x) \ - $(use_with fbcon fb) \ - $(use_with sdl) \ - $(use_with svga svgalib) \ - $(use_enable x86 asm) \ - ${myconf} \ - --disable-arch \ - --disable-optimize -} - -src_install() { - for f in fbgnuboy sdlgnuboy sgnuboy xgnuboy - do - if [[ -f ${f} ]] ; then - dogamesbin ${f} || die "dogamesbin failed" - fi - done - dodoc README docs/{CHANGES,CONFIG,CREDITS,FAQ,HACKING,WHATSNEW} - prepgamesdirs -} |