blob: fc7e8ec87cd889e9e650cba766be2560af5d297a (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/ppracer/ppracer-0.3.1.ebuild,v 1.8 2006/01/13 22:07:01 genstef Exp $
inherit flag-o-matic gnuconfig games multilib
DESCRIPTION="take on the role of Tux, the Linux Penguin, as he races down steep, snow-covered mountains"
HOMEPAGE="http://developer.berlios.de/projects/ppracer/"
SRC_URI="http://download.berlios.de/ppracer/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="X"
DEPEND="virtual/opengl
virtual/glu
X? (
|| (
( x11-libs/libXt
media-libs/mesa )
virtual/x11
)
)
>=dev-lang/tcl-8.4
media-libs/libsdl
media-libs/sdl-mixer
media-libs/libpng
>=media-libs/freetype-2
sys-libs/zlib"
RDEPEND="${DEPEND}
|| (
( x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
x11-libs/libXmu )
virtual/x11
)"
src_unpack() {
unpack ${A}
cd "${S}"
epatch ${FILESDIR}/ppracer-0.3.1-gcc41.patch
gnuconfig_update
autoconf || die "autoconf failed"
}
src_compile() {
# alpha needs -mieee for this game to avoid FPE
use alpha && append-flags -mieee
egamesconf \
--disable-dependency-tracking \
--with-data-dir="${GAMES_DATADIR}/${PN}" \
--with-tcl=/usr/$(get_libdir) \
$(use_with X x) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog
dohtml -r html/*
prepgamesdirs
}
|