blob: 0224a9694daf91d2348ecd8845333da3c610a84e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/extreme-tuxracer/extreme-tuxracer-0.4.ebuild,v 1.3 2008/03/18 20:32:23 nyhm Exp $
inherit eutils games
DESCRIPTION="High speed arctic racing game based on Tux Racer"
HOMEPAGE="http://www.extremetuxracer.com/"
SRC_URI="mirror://sourceforge/${PN/-}/${P/-}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="virtual/opengl
dev-lang/tcl
virtual/glu
media-libs/libsdl
media-libs/sdl-mixer
>=media-libs/freetype-2
media-libs/libpng
x11-libs/libXmu
x11-libs/libXi"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${P/-}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog
doicon "${FILESDIR}"/${PN}.svg
make_desktop_entry etracer "Extreme Tux Racer" ${PN}
prepgamesdirs
}
|