blob: a1ef634ac67010d1e6ec022ef207becfb050cabf (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/bcsdemo/bcsdemo-1.3.ebuild,v 1.4 2004/06/24 23:21:53 agriffis Exp $
inherit games eutils
DESCRIPTION="design and build bridges and then stress test them with trains"
HOMEPAGE="http://garagegames.com/pg/product/view.php?id=17"
SRC_URI="ftp://ggdev-1.homelan.com/bcs/bcsdemo_v${PV/./_}.sh.bin"
LICENSE="BCS"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RDEPEND="media-libs/openal"
S=${WORKDIR}
pkg_setup() {
check_license
games_pkg_setup
}
src_unpack() {
unpack_makeself
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir ${dir} ${GAMES_BINDIR}
tar -zxf bcsdemo.tar.gz -C ${D}/${dir} || die "extracting bcsdemo.tar.gz"
exeinto ${dir}
doexe bin/Linux/x86/rungame.sh
dosym ${dir}/rungame.sh ${GAMES_BINDIR}/bcsdemo
insinto ${dir}
doins *.cfg
dodoc readme*
prepgamesdirs
}
|