blob: a0d1d8e29b0ae5cae6d67513709b8ad214973fb9 (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.7.ebuild,v 1.1 2011/03/10 07:46:00 mr_bones_ Exp $
EAPI=2
inherit autotools flag-o-matic eutils games
DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)"
HOMEPAGE="http://supertuxkart.sourceforge.net/"
SRC_URI="mirror://sourceforge/supertuxkart/SuperTuxKart/${PV}/${P}-src.tar.bz2
mirror://gentoo/${PN}.png"
LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0 CCPL-Attribution-2.0 CCPL-Sampling-Plus-1.0 public-domain as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls unicode"
RDEPEND=">=dev-games/irrlicht-1.7.2
virtual/opengl
media-libs/freeglut
virtual/glu
net-libs/enet:0
media-libs/libvorbis
media-libs/openal
virtual/libintl"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
unicode? ( dev-libs/fribidi )"
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
rm -rf src/enet
eautoreconf
}
src_configure() {
append-libs -lpng -ljpeg -lbz2
egamesconf \
--disable-dependency-tracking \
$(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" install || die
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} SuperTuxKart
dodoc AUTHORS ChangeLog README TODO
prepgamesdirs
}
|