blob: 556ef57349f1461211950cf0026bc0c600769208 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.1a.ebuild,v 1.3 2009/05/31 17:08:06 mr_bones_ Exp $
EAPI=2
inherit autotools eutils games
DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)"
HOMEPAGE="http://supertuxkart.sourceforge.net/"
SRC_URI="mirror://sourceforge/supertuxkart/${P}.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=""
DEPEND=">=media-libs/plib-1.8.4
virtual/opengl
virtual/glut
net-libs/enet
media-libs/libmikmod
media-libs/libvorbis
media-libs/openal
media-libs/libsdl[joystick]"
src_prepare() {
sed -i \
-e '/ENETTREE/d' \
-e '/src\/enet\/Makefile/d' \
configure.ac \
|| die "sed failed"
sed -i \
-e '/SUBDIRS/s/doc//' \
-e '/pkgdata/d' \
Makefile.am \
|| die "sed failed"
sed -i \
-e '/pkgdatadir/s:/games::' \
-e '/desktop/d' \
-e '/icon/d' \
$(find data -name Makefile.am) \
|| die "sed failed"
sed -i \
-e '/bindir/d' \
-e '/AM_CPPFLAGS/s:/games::' \
src/Makefile.am \
|| die "sed failed"
rm -rf src/enet
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} SuperTuxKart
dodoc AUTHORS ChangeLog README TODO
prepgamesdirs
}
|