blob: aa3ef1c47499fdb415e6506f4664a691c86160d8 (
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
64
65
66
67
68
69
70
71
72
73
74
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/coldwar-demo/coldwar-demo-1.ebuild,v 1.3 2006/05/22 18:12:42 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="Third-person sneaker like Splinter Cell"
HOMEPAGE="http://www.coldwar-game.com/"
SRC_URI="coldwar_demo.run"
DOWNLOAD_URL="http://www.mindwarestudios.com/download/coldwar_demo.torrent"
# Not sure where the license is!
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="strip fetch"
RDEPEND="virtual/opengl
x86? (
media-libs/libogg
media-libs/openal
media-libs/libvorbis
media-libs/smpeg
dev-libs/glib
|| (
(
x11-libs/libX11
x11-libs/libXext )
virtual/x11 ) )
amd64? (
app-emulation/emul-linux-x86-soundlibs
app-emulation/emul-linux-x86-sdl
app-emulation/emul-linux-x86-medialibs
app-emulation/emul-linux-x86-baselibs
app-emulation/emul-linux-x86-xlibs )"
S=${WORKDIR}
pkg_nofetch() {
einfo "Please download ${A} into ${DISTDIR}"
einfo "using ${DOWNLOAD_URL}"
}
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/${PN}
Ddir=${D}/${dir}
src_unpack() {
unpack_makeself
}
src_install() {
mv bin/Linux/x86/glibc-2.1/bin/* bin/
games_make_wrapper ${PN} ./bin/launcher "${dir}" "${dir}"
newicon coldwar.xpm ${PN}.xpm || die "copying icon"
make_desktop_entry "${PN}" "Cold War (Demo)" "${PN}".xpm
rm -rf coldwar_demo.run setup.* bin/Linux lib/libopenal*
mkdir -p ${Ddir}
cp -r * ${Ddir}/ || die "recursive copy failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
einfo "To play the game, run: ${PN}"
}
|