blob: 24305dfb90ad3337d4d67f8ab3f73a02493384a3 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/atari800/atari800-1.3.1.ebuild,v 1.5 2004/06/24 22:23:50 agriffis Exp $
inherit games
DESCRIPTION="Atari 800 emulator"
HOMEPAGE="http://atari800.sourceforge.net/"
SRC_URI="mirror://sourceforge/atari800/${P}.tar.gz
mirror://sourceforge/atari800/xf25.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha"
IUSE="sdl"
RDEPEND="virtual/x11
sdl? ( >=media-libs/libsdl-1.2.0 )"
DEPEND="${RDEPEND}
app-arch/unzip"
src_compile() {
local target
target="x11"
use sdl && target="sdl"
local myconf
myconf="--enable-crashmenu --enable-break --enable-hints \
--enable-asm --enable-cursorblk --enable-led --enable-displayled \
--enable-sndclip --enable-linuxjoy --enable-sound"
cd src
egamesconf \
--enable-crashmenu \
--enable-break \
--enable-hints \
--enable-asm \
--enable-cursorblk \
--enable-led \
--enable-displayled \
--enable-sndclip \
--enable-linuxjoy \
--enable-sound \
--target=${target} \
|| die
emake || die "emake failed"
}
src_install () {
dogamesbin src/atari800
newman src/atari800.man atari800.6
dodoc README.1ST DOC/*
insinto ${GAMES_DATADIR}/${PN}
doins ${WORKDIR}/*.ROM
insinto /etc
doins ${FILESDIR}/atari800.cfg
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if use sdl ; then
echo
echo
einfo 'The emulator has been compiled using the SDL libraries. By default,'
einfo 'atari800 switches to fullscreen mode, so a 400x300 entry in your'
einfo 'XF86Config-4 file is recommended. Otherwise, the emulated Atari'
einfo 'screen is postage-stamp sized in the middle of your display.'
echo
einfo 'For example, in the "Screen" section of your /etc/XF86Config-4 file,'
einfo 'add the entry "400x300" to the end of the list of modes:'
echo
einfo ' Section "Screen"'
einfo ' [...]'
einfo
einfo ' Subsection "Display"'
einfo ' Depth 16'
einfo ' Modes "1600x1200" "1024x768" "400x300"'
einfo ' ViewPort 0 0'
einfo ' EndSubsection'
einfo ' EndSection'
echo
einfo 'You should not need to specify a modeline for this mode,'
einfo 'since in most cases it is a standard mode calculated by'
einfo 'the X server.'
echo
echo
echo
fi
}
|