blob: 5ee15e0ea767a95f43c6bce8c5f61972af49edca (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxracer-demo/tuxracer-demo-1.1.ebuild,v 1.1 2003/10/30 08:20:59 vapier Exp $
inherit games eutils
DESCRIPTION="race downhill as different artic characters (including Tux!)"
HOMEPAGE="http://www.tuxracer.com/"
SRC_URI="tuxracer-demo-${PV}-linux-i386.sh"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
RESTRICT="nofetch"
DEPEND="virtual/opengl
virtual/glu
virtual/x11"
S=${WORKDIR}
pkg_nofetch() {
einfo "Please visit http://www.tuxracer.com/?page=downloads.php"
einfo "and download ${A}"
einfo "and put the files in ${DISTDIR}"
}
src_unpack() {
unpack_makeself tuxracer-demo-${PV}-linux-i386.sh
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir ${dir}
exeinto ${dir}
doexe bin/x86/glibc-2.1/*
insinto ${dir}
doins EULA GPL LGPL README Tcl_license language *.tcl
cp -r characters courses fonts models music tcllib textures ${D}/${dir}
dodir ${GAMES_BINDIR}
dosym ${dir}/tuxracer-demo ${GAMES_BINDIR}/tuxracer-demo
prepgamesdirs
}
|