summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2007-10-02 00:45:30 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2007-10-02 00:45:30 +0000
commit6d748e4a0e13a9ce25eca50164ab61c4d7d09f1a (patch)
tree392aedf6b72fa22f607bfe945e3220f804a1b33b /games-emulation
parentVarious xen-tools ebuild fixes. (diff)
downloadgentoo-2-6d748e4a0e13a9ce25eca50164ab61c4d7d09f1a.tar.gz
gentoo-2-6d748e4a0e13a9ce25eca50164ab61c4d7d09f1a.tar.bz2
gentoo-2-6d748e4a0e13a9ce25eca50164ab61c4d7d09f1a.zip
old
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/hatari/files/digest-hatari-0.903
-rw-r--r--games-emulation/hatari/hatari-0.90.ebuild62
2 files changed, 0 insertions, 65 deletions
diff --git a/games-emulation/hatari/files/digest-hatari-0.90 b/games-emulation/hatari/files/digest-hatari-0.90
deleted file mode 100644
index 787a612ab7b3..000000000000
--- a/games-emulation/hatari/files/digest-hatari-0.90
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 2e5d1e329ebbf6c75ccab8c4f9a78f11 hatari-0.90.tar.gz 687029
-RMD160 914b97dd914329af858c6c0630671399b5231d78 hatari-0.90.tar.gz 687029
-SHA256 1dc883e06af223944c8bb5394134aa6f539623f5a31a505404e893c39e6cafda hatari-0.90.tar.gz 687029
diff --git a/games-emulation/hatari/hatari-0.90.ebuild b/games-emulation/hatari/hatari-0.90.ebuild
deleted file mode 100644
index 0cc6f860c5c9..000000000000
--- a/games-emulation/hatari/hatari-0.90.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/hatari-0.90.ebuild,v 1.3 2007/03/12 13:58:33 genone Exp $
-
-inherit games
-
-DESCRIPTION="Atari ST emulator"
-HOMEPAGE="http://hatari.sourceforge.net/"
-SRC_URI="mirror://sourceforge/hatari/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl
- sys-libs/zlib"
-RDEPEND="${DEPEND}
- games-emulation/emutos"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- sed -i \
- -e '/^CC/d' \
- -e "/^CFLAGS/ s:=.*:=${CFLAGS}:" \
- -e "/^DATADIR/ s:=.*:= ${GAMES_DATADIR}/${PN}:" Makefile.cnf \
- || die "sed Makefile.cnf failed"
-}
-
-src_compile() {
- # broken deps in the makefiles - bug #164068
- emake -C src/uae-cpu gencpu || die "emake failed"
- emake -C src/uae-cpu all || die "emake failed"
- emake -C src || die "emake failed"
-}
-
-src_install() {
- dogamesbin "${S}/src/hatari" || die "dogamesbin failed"
- insinto "${GAMES_DATADIR}/${PN}"
- doins src/gui-sdl/font5x8.bmp src/gui-sdl/font10x16.bmp \
- || die "doins failed"
- dodoc readme.txt doc/*.txt
- dohtml -r doc/
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- echo
- elog "You need a TOS ROM to run hatari. EmuTOS, a free TOS implementation,"
- elog "has been installed in /usr/games/lib/ with a .img extension (there"
- elog "are several from which to choose)."
- elog
- elog "Another option is to go to http://www.atari.st/ and get a real TOS:"
- elog " http://www.atari.st/"
- elog
- elog "The first time you run hatari, you should configure it to find the"
- elog "TOS you prefer to use. Be sure to save your settings."
- echo
-}