diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-12-12 00:14:13 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-12-12 00:14:13 +0000 |
commit | 84a07660ce309064e7069202fe69aea94365804c (patch) | |
tree | 64eaeb54d92866e2b6c1bbbdf687a39a9250eab5 /app-emulation/hatari | |
parent | fixed deps, moved 1.1.8 to use gnome2 eclass (diff) | |
download | gentoo-2-84a07660ce309064e7069202fe69aea94365804c.tar.gz gentoo-2-84a07660ce309064e7069202fe69aea94365804c.tar.bz2 gentoo-2-84a07660ce309064e7069202fe69aea94365804c.zip |
new package. Fixes #8811. Submitted by David Holm. x86 Masked
Diffstat (limited to 'app-emulation/hatari')
-rw-r--r-- | app-emulation/hatari/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/hatari/files/digest-hatari-0.20.2 | 1 | ||||
-rw-r--r-- | app-emulation/hatari/hatari-0.20.2.ebuild | 33 |
3 files changed, 42 insertions, 0 deletions
diff --git a/app-emulation/hatari/ChangeLog b/app-emulation/hatari/ChangeLog new file mode 100644 index 000000000000..0c54c8495796 --- /dev/null +++ b/app-emulation/hatari/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-emulation/hatarai +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-emulation/hatari/ChangeLog,v 1.1 2002/12/12 00:14:13 rphillips Exp $ + +*hatari-0.20.2 (11 Dec 2002) + + 11 Dec 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + initial release diff --git a/app-emulation/hatari/files/digest-hatari-0.20.2 b/app-emulation/hatari/files/digest-hatari-0.20.2 new file mode 100644 index 000000000000..f4852e096823 --- /dev/null +++ b/app-emulation/hatari/files/digest-hatari-0.20.2 @@ -0,0 +1 @@ +MD5 cf99b952aefc0b1d6e9f972b1cb35668 hatari-0.20.2.tar.gz 272351 diff --git a/app-emulation/hatari/hatari-0.20.2.ebuild b/app-emulation/hatari/hatari-0.20.2.ebuild new file mode 100644 index 000000000000..53af0c341b4c --- /dev/null +++ b/app-emulation/hatari/hatari-0.20.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: David Holm <david@realityrift.com> +# $Header: /var/cvsroot/gentoo-x86/app-emulation/hatari/hatari-0.20.2.ebuild,v 1.1 2002/12/12 00:14:13 rphillips Exp $ + +S="${WORKDIR}/${P}" +DESCRIPTION="HAtari is an Atari ST emulator" +SRC_URI="http://belnet.dl.sourceforge.net/sourceforge/hatari/${P}.tar.gz" +HOMEPAGE="http://hatari.sourceforge.net/" +LICENSE="GPL-2" +DEPEND="media-libs/libsdl" +IUSE="" +KEYWORDS="~x86" + +src_compile() { + cd ${S}/src + emake || die +} + +src_install () { + # Install binary + dobin ${S}/src/hatari || die + + # Install documentation. + dodoc authors.txt ChangeLog readme.txt +} + +pkg_postinst() { + einfo "You need a tos rom to run hatari, you can find EmuTOS here:" + einfo " http://emutos.sourceforge.net/ - Which is a free TOS implementation" + einfo "or, go here and get a real TOS:" + einfo " http://www.atari.st/" +} |