diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-07-08 22:29:57 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-07-08 22:29:57 +0000 |
commit | a2b9de813e3303f5c909ec675b3461388ca20598 (patch) | |
tree | e1b885a46943bbf949ea193cdf37530c1b6be799 /games-emulation/fakenes | |
parent | clean old ebuilds; tidy (diff) | |
download | gentoo-2-a2b9de813e3303f5c909ec675b3461388ca20598.tar.gz gentoo-2-a2b9de813e3303f5c909ec675b3461388ca20598.tar.bz2 gentoo-2-a2b9de813e3303f5c909ec675b3461388ca20598.zip |
old
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-emulation/fakenes')
-rw-r--r-- | games-emulation/fakenes/fakenes-0.3.0.ebuild | 51 | ||||
-rw-r--r-- | games-emulation/fakenes/files/0.3.0-allegro.patch | 55 | ||||
-rw-r--r-- | games-emulation/fakenes/files/digest-fakenes-0.3.0 | 1 |
3 files changed, 0 insertions, 107 deletions
diff --git a/games-emulation/fakenes/fakenes-0.3.0.ebuild b/games-emulation/fakenes/fakenes-0.3.0.ebuild deleted file mode 100644 index d5733e609f42..000000000000 --- a/games-emulation/fakenes/fakenes-0.3.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/fakenes/fakenes-0.3.0.ebuild,v 1.5 2004/06/24 22:26:30 agriffis Exp $ - -inherit eutils games - -DESCRIPTION="portable, Open Source NES emulator which is written mostly in C" -HOMEPAGE="http://fakenes.sourceforge.net/" -SRC_URI="mirror://sourceforge/fakenes/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="zlib fbcon svga" - -RDEPEND=">=media-libs/allegro-4.1 - zlib? ( sys-libs/zlib ) - dev-games/hawknl" -DEPEND="${RDEPEND} - >=sys-apps/sed-4 - x86? ( dev-lang/nasm )" - -src_unpack() { - unpack ${A} - cd ${S} - chmod a+x configure - epatch ${FILESDIR}/${PV}-allegro.patch - if ! use fbcon ; then - sed -i \ - -e '/sedfbme/s:.*::' src/gui.c src/include/gui/menus.h \ - || die "sed fb failed" - fi - if ! use svga ; then - sed -i \ - -e '/sedsvgalibme/s:.*::' src/gui.c src/include/gui/menus.h \ - || die "sed svga failed" - fi -} - -src_compile() { - egamesconf `use_with zlib` || die - emake || die "emake failed" -} - -src_install() { - dogamesbin src/fakenes || die "dogamesbin failed" - insinto "${GAMES_DATADIR}/${PN}" - doins src/support/fakenes.{dat,ico,rc} || die "doins failed" - dodoc CHANGES README SOURCE SUPPORT - prepgamesdirs -} diff --git a/games-emulation/fakenes/files/0.3.0-allegro.patch b/games-emulation/fakenes/files/0.3.0-allegro.patch deleted file mode 100644 index 646fe5a6f43c..000000000000 --- a/games-emulation/fakenes/files/0.3.0-allegro.patch +++ /dev/null @@ -1,55 +0,0 @@ ---- src/gui.c.orig 2003-09-25 22:29:25.830731224 -0400 -+++ src/gui.c 2003-09-25 22:30:29.575040616 -0400 -@@ -716,9 +716,9 @@ - - TOGGLE_MENU (options_video_driver_linux_menu, 4, (gfx_driver -> id == GFX_VBEAF)); - -- TOGGLE_MENU (options_video_driver_linux_menu, 6, (gfx_driver -> id == GFX_FBCON)); -+ TOGGLE_MENU (options_video_driver_linux_menu, 6, (gfx_driver -> id == GFX_FBCON)); //sedfbme - -- TOGGLE_MENU (options_video_driver_linux_menu, 8, (gfx_driver -> id == GFX_SVGALIB)); -+ TOGGLE_MENU (options_video_driver_linux_menu, 8, (gfx_driver -> id == GFX_SVGALIB)); //sedsvgalibme - - #endif - -@@ -3238,9 +3238,9 @@ - - DRIVER_MENU_HANDLER (linux, vesa_vbe_af, GFX_VBEAF) - --DRIVER_MENU_HANDLER (linux, framebuffer, GFX_FBCON) -+DRIVER_MENU_HANDLER (linux, framebuffer, GFX_FBCON) //sedfbme - --DRIVER_MENU_HANDLER (linux, svgalib, GFX_SVGALIB) -+DRIVER_MENU_HANDLER (linux, svgalib, GFX_SVGALIB) //sedsvgalibme - - #endif - ---- src/include/gui/menus.h.orig 2003-09-25 22:29:33.099626184 -0400 -+++ src/include/gui/menus.h 2003-09-25 22:31:12.231555840 -0400 -@@ -593,9 +593,9 @@ - - static int options_video_driver_linux_menu_vesa_vbe_af (void); - --static int options_video_driver_linux_menu_framebuffer (void); -+static int options_video_driver_linux_menu_framebuffer (void); //sedfbme - --static int options_video_driver_linux_menu_svgalib (void); -+static int options_video_driver_linux_menu_svgalib (void); //sedsvgalibme - - - static MENU options_video_driver_linux_menu [] = -@@ -606,10 +606,10 @@ - { "", NIL, NIL, 0, NIL }, - { "VESA VBE/&AF", options_video_driver_linux_menu_vesa_vbe_af, NIL, 0, NIL }, - { "", NIL, NIL, 0, NIL }, -- { "&Framebuffer", options_video_driver_linux_menu_framebuffer, NIL, 0, NIL }, -- { "", NIL, NIL, 0, NIL }, -- { "&SVGAlib", options_video_driver_linux_menu_svgalib, NIL, 0, NIL }, -- { NIL, NIL, NIL, 0, NIL } -+ { "&Framebuffer", options_video_driver_linux_menu_framebuffer, NIL, 0, NIL }, //sedfbme -+ { "", NIL, NIL, 0, NIL }, //sedfbme -+ { "&SVGAlib", options_video_driver_linux_menu_svgalib, NIL, 0, NIL }, //sedsvgalibme -+ { NIL, NIL, NIL, 0, NIL } //sedsvgalibme - }; - - #else diff --git a/games-emulation/fakenes/files/digest-fakenes-0.3.0 b/games-emulation/fakenes/files/digest-fakenes-0.3.0 deleted file mode 100644 index d95cdb61fdf8..000000000000 --- a/games-emulation/fakenes/files/digest-fakenes-0.3.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 91f8e09649cb2c4e3b911e5a349acb26 fakenes-0.3.0.tar.bz2 157807 |