blob: d7f94a86ab9668c426fffed44c7ee282e8315cac (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.12.0.ebuild,v 1.7 2009/03/13 22:10:49 josejx Exp $
EAPI=2
inherit eutils games
DESCRIPTION="Reimplementation of the SCUMM game engine used in Lucasarts adventures"
HOMEPAGE="http://scummvm.sourceforge.net/"
SRC_URI="mirror://sourceforge/scummvm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="alsa debug flac fluidsynth mp3 ogg vorbis zlib"
RESTRICT="test" # it only looks like there's a test there #77507
RDEPEND=">=media-libs/libsdl-1.2.2
>media-libs/libmpeg2-0.3.1
ogg? ( media-libs/libogg media-libs/libvorbis )
vorbis? ( media-libs/libogg media-libs/libvorbis )
alsa? ( >=media-libs/alsa-lib-0.9[midi] )
mp3? ( media-libs/libmad )
flac? ( media-libs/flac )
fluidsynth? ( media-sound/fluidsynth )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )"
src_prepare() {
local f
# -g isn't needed for nasm here
sed -i \
-e '/NASMFLAGS/ s/-g//' \
./Makefile.common \
|| die "sed failed"
for f in graphics/scaler/{hq3x_i386.asm,hq2x_i386.asm}
do
cat >> $f <<EOF
%ifidn __OUTPUT_FORMAT__,elf
section .note.GNU-stack noalloc noexec nowrite progbits
%endif
EOF
done
}
src_configure() {
local myconf="--backend=sdl" # x11 backend no worky (bug #83502)
# let the engine find its data files in the right place (bug #178116)
myconf="${myconf} --datadir=${GAMES_DATADIR}"
( use vorbis || use ogg ) \
&& myconf="${myconf} --enable-vorbis" \
|| myconf="${myconf} --disable-vorbis --disable-mpeg2"
# bug #137547
use fluidsynth || myconf="${myconf} --disable-fluidsynth"
# NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
# mpeg2 support needs vorbis (bug #79149) so turn it off if -oggvorbis
./configure \
$(use_enable debug) \
$(use_enable alsa) \
$(use_enable mp3 mad) \
$(use_enable flac) \
$(use_enable zlib) \
$(use_enable x86 nasm) \
${myconf} \
|| die "configure failed"
}
src_install() {
dogamesbin scummvm || die "dobin failed"
doman dists/scummvm.6
dodoc AUTHORS NEWS README TODO
insinto "${GAMES_DATADIR}"/${PN}/engines
doins gui/themes/modern.*
doicon icons/scummvm.svg
make_desktop_entry scummvm ScummVM scummvm "Game;AdventureGame"
prepgamesdirs
}
|