blob: 1914dcfdfb5847eb4a355fb758c801f4c8a1e128 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/orbz-demo/orbz-demo-2.10.ebuild,v 1.4 2004/06/24 21:57:47 agriffis Exp $
inherit games eutils
DESCRIPTION="action/arcade game set in colorful 3D environments"
HOMEPAGE="http://www.21-6.com/orbz.asp"
SRC_URI="ftp://ggdev-1.homelan.com/orbz/orbz_gg_${PV/./_}.sh.bin"
LICENSE="ORBZ"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
DEPEND=""
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 Orbz.tar.gz -C ${D}/${dir} || die "extracting orbz.tar.gz"
exeinto ${dir}
doexe bin/Linux/x86/*
dosym ${dir}/orbz ${GAMES_BINDIR}/orbz
dosym ${dir}/orbzdedicated ${GAMES_BINDIR}/orbzdedicated
insinto ${dir}
doins icon.xpm
dodoc README.txt
prepgamesdirs
}
|