blob: 0fc3ab8fac31b704cc7f9f581320c0cc34376636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/hatari/hatari-0.40.ebuild,v 1.3 2003/09/19 07:38:30 msterret Exp $
inherit games
DESCRIPTION="Atari ST emulator"
SRC_URI="mirror://sourceforge/hatari/${P}.tar.gz"
HOMEPAGE="http://hatari.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
SLOT="0"
DEPEND="games-emulation/emutos
media-libs/libsdl
sys-libs/zlib"
src_compile() {
cd src
emake \
CMPLRFLAGS="${CFLAGS}" \
DATADIR=${GAMES_DATADIR}/${PN} || \
die "emake failed"
}
src_install() {
dogamesbin ${S}/src/hatari || die "dogamesbin failed"
insinto ${GAMES_DATADIR}/${PN}
doins src/font8.bmp || die "doins failed"
dodoc {authors,readme}.txt doc/*.txt || die "dodoc failed"
dohtml doc/.html || die "dohtml failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "You need a TOS ROM to run hatari. EmuTOS, a free TOS implementation,"
einfo "has been installed in /usr/games/lib/ with a .img extension (there"
einfo "are several from which to choose)."
echo
einfo "Another option is to go to http://www.atari.st/ and get a real TOS:"
einfo " http://www.atari.st/"
echo
einfo "The first time you run hatari, you should configure it to find the"
einfo "TOS you prefer to use. Be sure to save your settings."
echo
}
|