blob: bbdad64041e561c330f694fb675948b7b6b19cf6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-sports/torcs/torcs-1.3.1.ebuild,v 1.1 2008/12/20 04:43:51 mr_bones_ Exp $
inherit autotools eutils multilib games
DESCRIPTION="The Open Racing Car Simulator"
HOMEPAGE="http://torcs.sourceforge.net/"
SRC_URI="mirror://sourceforge/torcs/${P}.tar.bz2"
LICENSE="GPL-2 FreeArt"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=media-libs/plib-1.8.4
virtual/opengl
virtual/glu
virtual/glut
media-libs/openal
media-libs/freealut
media-libs/libpng
x11-libs/libXrandr
x11-libs/libXt"
DEPEND="${RDEPEND}
x11-proto/xf86vidmodeproto"
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}"/${P}-as-needed.patch
eautoreconf
ecvs_clean
}
src_compile() {
egamesconf \
--disable-dependency-tracking \
--datadir="${GAMES_DATADIR_BASE}" \
--x-libraries=/usr/$(get_libdir) \
--enable-xrandr \
|| die
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install datainstall || die "emake install failed"
newicon Ticon.png ${PN}.png
make_desktop_entry ${PN} TORCS
dodoc README doc/history/history.txt
doman doc/man/*.6
dohtml -r doc/faq/faq.html doc/tutorials doc/userman
prepgamesdirs
}
|