blob: eda98c547ece7af6a87800ae0c8da029d9853cb2 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/postal2mpdemo/postal2mpdemo-1407.ebuild,v 1.11 2005/08/30 19:15:34 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="You play the Postal Dude: POSTAL 2 is only as violent as you are."
HOMEPAGE="http://www.gopostal.com/home/"
SRC_URI="mirror://3dgamers/postal2/Missions/${PN}-lnx-${PV}.tar.bz2"
LICENSE="postal2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
RESTRICT="nomirror"
RDEPEND="virtual/x11
virtual/libc
amd64? (
app-emulation/emul-linux-x86-baselibs
app-emulation/emul-linux-x86-xlibs
|| ( >=media-video/nvidia-glx-1.0.6629-r3
app-emulation/emul-linux-x86-nvidia
)
)"
S="${WORKDIR}"
dir="${GAMES_PREFIX_OPT}/${PN}"
Ddir="${D}/${dir}"
pkg_setup() {
check_license
games_pkg_setup
}
src_unpack() {
unpack ${A}
unpack_makeself postal2mpdemo-lnx-${PV}.run
rm postal2mpdemo-lnx-${PV}.run
}
src_install() {
dodir ${dir}
tar -xf postal2mpdemo.tar -C ${Ddir}/ || die "failed unpacking postal2mpdemo.tar"
tar -xf linux-specific.tar -C ${Ddir}/ || die "failed unpacking linux-specific.tar"
insinto ${dir}
doins README.linux postal2mpdemo.xpm postal2mpdemo_eula.txt
exeinto ${dir}
doexe bin/postal2mpdemo || die "doexe failed"
dodir "${GAMES_BINDIR}"
dosym "${dir}/postal2mpdemo" "${GAMES_BINDIR}/postal2mpdemo"
prepgamesdirs
}
|