blob: bd36914b5d445c6e5b8f0b493d4ac379cdfbb3d6 (
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
|
# Copyright 1999-2006 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.6 2006/09/27 18:28:05 nyhm 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=" http://download.berlios.de/supertux/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="opengl"
RDEPEND=">=media-libs/libsdl-1.2.4
>=media-libs/sdl-image-1.2.2
>=media-libs/sdl-mixer-1.2.5
sys-libs/zlib"
DEPEND="${RDEPEND}
|| ( x11-libs/libXt virtual/x11 )"
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() {
make DESTDIR="${D}" \
desktopdir=/usr/share/applications \
icondir=/usr/share/pixmaps \
install || die "make install failed"
dodoc AUTHORS ChangeLog LEVELDESIGN README TODO
prepgamesdirs
}
|