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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/descent2-data/descent2-data-1.0.ebuild,v 1.9 2012/01/16 19:03:03 ulm Exp $
inherit eutils cdrom games
MY_PV=${PV/./}
SOW="descent2.sow"
DESCRIPTION="Data files for Descent 2"
HOMEPAGE="http://www.interplay.com/games/product.asp?GameID=109"
SRC_URI=""
# Don't have a method of applying the ver 1.2 patch in Linux
# http://www.interplay.com/support/product.asp?GameID=109
# mirror://3dgamers/descent2/d2ptch${MY_PV}.exe
# See readme.txt
LICENSE="${PN}"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE="videos"
# d2x-0.2.5-r2 may include the CD data itself.
# d2x-0.2.5-r3 does not include the CD data.
# d2x-rebirth is favoured because it is stable.
#RDEPEND="|| (
# games-action/d2x-rebirth
# >=games-action/d2x-0.2.5-r3 )"
RDEPEND="!<games-action/d2x-0.2.5-r3"
DEPEND="app-arch/unarj"
S=${WORKDIR}
dir=${GAMES_DATADIR}/d2x
pkg_setup() {
games_pkg_setup
local m f need_cd="n"
# Could have the ${SOW} file in ${DISTDIR}
if [[ -e "${DISTDIR}/${SOW}" ]] ; then
einfo "Using ${SOW} from ${DISTDIR}"
# Check that the movies are available in ${DISTDIR} if needed
if use videos ; then
for m in {intro,other,robots}-{h,l}.mvl ; do
[[ -e "${DISTDIR}/${m}" ]] || need_cd="y"
done
fi
else
need_cd="y"
fi
if [[ "${need_cd}" == "y" ]] ; then
# The Descent 2 CD is needed
cdrom_get_cds "d2data/${SOW}"
fi
}
src_unpack() {
local m f="${DISTDIR}/${SOW}"
[[ -e "${f}" ]] || f="${CDROM_ROOT}/d2data/${SOW}"
# Extract level data
unarj e "${f}" || die "unarj ${f} failed"
if use videos ; then
# Include both high and low resolution movie files
for m in {intro,other,robots}-{h,l}.mvl ; do
f="${DISTDIR}/${m}"
[[ -e "${f}" ]] || f="${CDROM_ROOT}/d2data/${m}"
einfo "Copying ${m}"
cp -f "${f}" . || die "cp ${f} failed"
done
fi
rm -f endnote.txt
mkdir doc
mv -f *.txt doc
# Remove files not needed by any Linux native client
rm -f *.{bat,dll,exe,ini,lst}
}
src_install() {
insinto "${dir}"
doins * || die "doins * failed"
dodoc doc/*
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "A client is needed to run the game, e.g. games-action/d2x-rebirth."
echo
}
|