blob: 56d36464acb5fa3fc089f3b34c0cd46aa04ecfcd (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/postal2/postal2-1409.2.ebuild,v 1.2 2006/10/24 22:49:02 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="Postal 2: Share The Pain"
HOMEPAGE="http://www.gopostal.com/"
SRC_URI="http://updatefiles.linuxgamepublishing.com/${PN}/${P/%?/1}.run
http://updatefiles.linuxgamepublishing.com/${PN}/${P}.run"
LICENSE="postal2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RESTRICT="strip"
DEPEND="games-util/loki_patch"
RDEPEND="x11-libs/libXext
amd64? (
app-emulation/emul-linux-x86-baselibs
app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-soundlibs
app-emulation/emul-linux-x86-sdl
app-emulation/emul-linux-x86-compat )"
S=${WORKDIR}
GAMES_CHECK_LICENSE="yes"
src_unpack() {
cdrom_get_cds postal2_eula.txt
mkdir ${A}
local f
for f in * ; do
cd "${S}"/${f}
unpack_makeself ${f}
done
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir "${dir}"
cd "${D}/${dir}"
ln -s "${CDROM_ROOT}"/.installation_data/*.bz2 .
unpack ./*.bz2
rm ./*.bz2
local d
for d in "${S}"/* ; do
cd "${d}"
loki_patch patch.dat "${D}/${dir}" || die "loki_patch ${d} failed"
done
games_make_wrapper ${PN} ./${PN}-bin "${dir}"/System .
doicon "${CDROM_ROOT}"/.installation_data/${PN}.xpm
make_desktop_entry ${PN} "Postal 2: Share The Pain" ${PN}.xpm
prepgamesdirs
}
|