blob: 47a190e1816a8b8fa686b50113dafe62215858a4 (
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
60
61
62
63
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/darwinia/darwinia-1.4.0_beta9.ebuild,v 1.6 2009/04/16 12:39:24 nyhm Exp $
inherit eutils games
MY_PV=${PV/_beta/b}
DESCRIPTION="the hyped indie game of the year. By the Uplink creators."
HOMEPAGE="http://www.darwinia.co.uk/support/linux.html"
SRC_URI="http://www.introversion.co.uk/darwinia/downloads/${PN}-full-${MY_PV}.sh"
LICENSE="Introversion"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="cdinstall"
RESTRICT="mirror strip"
PROPERTIES="interactive"
RDEPEND="sys-libs/glibc
virtual/opengl
amd64? ( app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-compat )"
S=${WORKDIR}
GAMES_CHECK_LICENSE="yes"
dir=${GAMES_PREFIX_OPT}/${PN}
src_unpack() {
use cdinstall && cdrom_get_cds gamefiles/main.dat
unpack_makeself
}
src_install() {
insinto "${dir}"/lib
exeinto "${dir}"/lib
doins lib/{language,patch}.dat
doexe lib/lib{SDL-1.2,ogg,vorbis}.so.0 lib/lib{gcc_s.so.1,vorbisfile.so.3} \
lib/darwinia.bin.x86 lib/open-www.sh || die "copying libs/executables"
exeinto "${dir}"
doexe bin/Linux/x86/darwinia || die "couldn't do exe"
if use cdinstall ; then
doins "${CDROM_ROOT}"/gamefiles/{main,sounds}.dat \
|| die "couldn't copy data files"
fi
dodoc README || die "no reading"
newicon darwinian.png darwinia.png
games_make_wrapper darwinia ./darwinia "${dir}" "${dir}"
make_desktop_entry darwinia "Darwinia" darwinia
prepgamesdirs
}
pkg_postinst() {
if ! use cdinstall; then
ewarn "To play the game, you need to copy main.dat and sounds.dat"
ewarn "from gamefiles/ on the game CD to ${dir}/lib/."
fi
games_pkg_postinst
}
|