blob: aaaf615acf0e01be1695c7442b00b56818b9ebea (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm/scummvm-0.7.0.ebuild,v 1.8 2005/02/28 02:50:31 mr_bones_ Exp $
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 sparc x86"
IUSE="alsa debug flac mad oggvorbis sdl zlib"
RESTRICT="maketest" # it only looks like there's a test there #77507
RDEPEND="virtual/libc
>=media-libs/libsdl-1.2.2
>media-libs/libmpeg2-0.3.1
oggvorbis? (
media-libs/libogg
media-libs/libvorbis
)
alsa? ( >=media-libs/alsa-lib-0.9 )
mad? ( media-libs/libmad )
flac? ( media-libs/flac )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-configure.patch"
}
src_compile() {
local myconf="--backend=sdl" # x11 backend no worky (bug #83502)
use debug \
|| myconf="${myconf} --disable-debug"
use oggvorbis \
|| myconf="${myconf} --disable-mpeg2"
# NOT AN AUTOCONF SCRIPT SO DONT CALL ECONF
# mpeg2 support needs vorbis (bug #79149) so turn it off if -oggvorbis
./configure \
$(use_enable alsa) \
$(use_enable mad) \
$(use_enable flac) \
$(use_enable oggvorbis vorbis) \
$(use_enable zlib) \
$(use_enable x86 nasm) \
${myconf} \
|| die "configure failed"
emake || die "emake failed"
}
src_install() {
dogamesbin scummvm || die "dobin failed"
doman scummvm.6
dodoc NEWS README TODO
doicon scummvm.xpm
make_desktop_entry scummvm ScummVM
prepgamesdirs
}
|