blob: 9d48f9234e4f49ab29418f3c91a7084b1b3f640a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/supertux/supertux-0.1.3.ebuild,v 1.10 2007/04/09 21:40:03 welp Exp $
GAMES_USE_SDL="nojoystick" #bug #100372
inherit eutils games
DESCRIPTION="A game similar to Super Mario Bros."
HOMEPAGE="http://super-tux.sourceforge.net"
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 sparc x86 ~x86-fbsd"
IUSE="opengl"
DEPEND="media-libs/libsdl
media-libs/sdl-image
media-libs/sdl-mixer
x11-libs/libXt"
pkg_setup() {
if ! built_with_use media-libs/sdl-mixer mikmod ; then
die "Please emerge sdl-mixer with USE=mikmod"
fi
games_pkg_setup
}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-gcc41.patch
}
src_compile() {
egamesconf \
--disable-dependency-tracking \
--disable-debug \
$(use_enable opengl) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" \
desktopdir=/usr/share/applications \
icondir=/usr/share/pixmaps \
install || die "emake install failed"
dodoc AUTHORS ChangeLog LEVELDESIGN README TODO
prepgamesdirs
}
|