summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2007-10-01 23:52:25 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2007-10-01 23:52:25 +0000
commit2f0d733348f7a47994a4d7d4bc63a1b8778b1f1a (patch)
tree0d14e225d0770f32b03ed949983ff5b6279fd36b /games-emulation/fbzx
parentstable for x86 (diff)
downloadgentoo-2-2f0d733348f7a47994a4d7d4bc63a1b8778b1f1a.tar.gz
gentoo-2-2f0d733348f7a47994a4d7d4bc63a1b8778b1f1a.tar.bz2
gentoo-2-2f0d733348f7a47994a4d7d4bc63a1b8778b1f1a.zip
old
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-emulation/fbzx')
-rw-r--r--games-emulation/fbzx/fbzx-1.4.ebuild39
-rw-r--r--games-emulation/fbzx/fbzx-1.7.ebuild40
-rw-r--r--games-emulation/fbzx/files/1.4-endian.patch13
-rw-r--r--games-emulation/fbzx/files/digest-fbzx-1.43
-rw-r--r--games-emulation/fbzx/files/digest-fbzx-1.73
5 files changed, 0 insertions, 98 deletions
diff --git a/games-emulation/fbzx/fbzx-1.4.ebuild b/games-emulation/fbzx/fbzx-1.4.ebuild
deleted file mode 100644
index 6d0cb5ab0445..000000000000
--- a/games-emulation/fbzx/fbzx-1.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/fbzx/fbzx-1.4.ebuild,v 1.9 2006/12/06 17:14:00 wolf31o2 Exp $
-
-inherit eutils toolchain-funcs games
-
-DESCRIPTION="A Sinclair Spectrum emulator, designed to work at full screen using the FrameBuffer"
-HOMEPAGE="http://www.rastersoft.com/fbzx.html"
-SRC_URI="http://www.rastersoft.com/programas/fbzx/${PN}14.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc x86"
-IUSE=""
-
-RDEPEND="media-libs/libsdl"
-
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i \
- -e "s|/usr/share/spectrum|${GAMES_DATADIR}/${PN}|g" \
- emulator.c || die "sed failed"
- sed -i \
- -e "s:gcc:$(tc-getCC):" \
- -e "s:-O2:${CFLAGS}:" \
- Makefile
- epatch ${FILESDIR}/${PV}-endian.patch
-}
-
-src_install() {
- dogamesbin fbzx || die "dogamesbin failed"
- insinto "${GAMES_DATADIR}/${PN}/roms"
- doins roms/* || die "doins failed"
- dodoc CAPABILITIES FAQ PORTS README* TODO VERSIONS
- prepgamesdirs
-}
diff --git a/games-emulation/fbzx/fbzx-1.7.ebuild b/games-emulation/fbzx/fbzx-1.7.ebuild
deleted file mode 100644
index a64bbc3a391f..000000000000
--- a/games-emulation/fbzx/fbzx-1.7.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/fbzx/fbzx-1.7.ebuild,v 1.1 2006/10/02 15:20:16 nyhm Exp $
-
-inherit eutils toolchain-funcs games
-
-DESCRIPTION="A Sinclair Spectrum emulator, designed to work at full screen using the FrameBuffer"
-HOMEPAGE="http://www.rastersoft.com/fbzx.html"
-SRC_URI="http://www.rastersoft.com/descargas/${PN}${PV//./}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -i \
- -e "s|/usr/share/spectrum|${GAMES_DATADIR}/${PN}|g" \
- emulator.c || die "sed failed"
- sed -i \
- -e "/^CC/s:gcc:$(tc-getCC):" \
- -e "s/^\(CC =\).*/\1 $(tc-getCC) ${CFLAGS}/" \
- -e "s:-O2:${CFLAGS}:" \
- Makefile || die "sed failed"
-}
-
-src_install() {
- dogamesbin fbzx || die "dogamesbin failed"
- insinto "${GAMES_DATADIR}/${PN}/roms"
- doins roms/* || die "doins failed"
- dodoc CAPABILITIES FAQ PORTS README* TODO VERSIONS
- prepgamesdirs
-}
diff --git a/games-emulation/fbzx/files/1.4-endian.patch b/games-emulation/fbzx/files/1.4-endian.patch
deleted file mode 100644
index f62dc67c5d5f..000000000000
--- a/games-emulation/fbzx/files/1.4-endian.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- fbzx/Z80.h 2003-12-19 21:37:22.000000000 +0100
-+++ fbzx.new/Z80.h 2004-08-24 18:26:50.696481080 +0200
-@@ -12,7 +12,10 @@
- /*************************************************************/
- #ifndef Z80_H
- #define Z80_H
-+#include <endian.h>
-+#if __BYTE_ORDER == __LITTLE_ENDIAN
- #define LSB_FIRST
-+#endif
- /* Compilation options: */
- /* #define DEBUG */ /* Compile debugging version */
- /* #define LSB_FIRST */ /* Compile for low-endian CPU */
diff --git a/games-emulation/fbzx/files/digest-fbzx-1.4 b/games-emulation/fbzx/files/digest-fbzx-1.4
deleted file mode 100644
index 1a64ae7bed65..000000000000
--- a/games-emulation/fbzx/files/digest-fbzx-1.4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 28eedfdaa211e06f615d6bf07bee5813 fbzx14.tar.gz 208050
-RMD160 8567fc6d363ab012be1c2606ce92fae19483ee34 fbzx14.tar.gz 208050
-SHA256 4dd3f412ef57f874ca59e7c611770882c519223266be9577958a14de78c2771f fbzx14.tar.gz 208050
diff --git a/games-emulation/fbzx/files/digest-fbzx-1.7 b/games-emulation/fbzx/files/digest-fbzx-1.7
deleted file mode 100644
index 7f375fcdc1ae..000000000000
--- a/games-emulation/fbzx/files/digest-fbzx-1.7
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 7f1f84841a18c45083fbb4ad89ec22ee fbzx17.tar.bz2 193161
-RMD160 2a186bc369dd2b6ad038a71e37326916d095af65 fbzx17.tar.bz2 193161
-SHA256 a635a3c3b821fdfcbecf076872bd2852a2e54a43d7d6f19d8cba07057dc7d549 fbzx17.tar.bz2 193161