blob: 2d19beac0dc36a8b85f3d2377a6c0426fcf06753 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/games-ut2k4mod.eclass,v 1.7 2005/07/06 20:23:20 agriffis Exp $
inherit games
EXPORT_FUNCTIONS pkg_nofetch src_unpack src_install pkg_postinst
DESCRIPTION="UT2004 - ${MOD_DESC}"
SLOT="0"
KEYWORDS="-* x86 amd64"
IUSE=""
RESTRICT="nomirror fetch"
DEPEND="app-arch/tar
app-arch/bzip2"
RDEPEND="virtual/libc
>=games-fps/ut2004-3339"
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/ut2004
Ddir=${D}/${dir}
check_dvd() {
# The following is a nasty mess to determine if we are installing from
# a DVD or from multiple CDs. Anyone feel free to submit patches to this
# to bugs.gentoo.org as I know it is a very ugly hack.
USE_DVD=
USE_ECE_DVD=
if [ -n "${CD_ROOT}" ]
then
[ -d "${CD_ROOT}/CD1" ] && USE_DVD=1
[ -d "${CD_ROOT}/CD7" ] && USE_ECE_DVD=1
else
local mline=""
for mline in `mount | egrep -e '(iso|cdrom)' | awk '{print $3}'`
do
[ -d "${mline}/CD1" ] && USE_DVD=1
[ -d "${mline}/CD7" ] && USE_ECE_DVD=1
done
fi
}
games-ut2k4mod_pkg_nofetch() {
einfo "Please download ${A} and put it into ${DISTDIR}"
einfo "http://liflg.org/?catid=6&gameid=17"
}
games-ut2k4mod_src_unpack() {
[ -z "${MOD_TBZ2}" ] && die "what are we supposed to unpack ?"
[ -z "${MOD_NAME}" ] && die "what is the name of this ut2k4mod ?"
for makeself in ${A}
do
unpack_makeself ${makeself}
done
mkdir ${S}/unpack
for tarball in ${MOD_TBZ2}
do
if [ -e "${tarball}_${PV}-english.tar.bz2" ]
then
tar xjf ${tarball}_${PV}-english.tar.bz2 -C ${S}/unpack \
|| die "uncompressing tarball"
elif [ -e "${tarball}_${PV}.tar.bz2" ]
then
tar xjf ${tarball}_${PV}.tar.bz2 -C ${S}/unpack \
|| die "uncompressing tarball"
else [ -e "${tarball}.tar.bz2" ]
tar xjf ${tarball}.tar.bz2 -C ${S}/unpack \
|| die "uncompressing tarball"
fi
done
}
games-ut2k4mod_src_install() {
dodir ${dir}
cp -r ${S}/unpack/* ${Ddir}
if [ -e ${S}/README.${MOD_BINS} ]
then
dodoc README.${MOD_BINS} || die "dodoc failed"
else
for tbz2 in ${MOD_TBZ2}
do
if [ -e ${S}/README.${tbz2} ]
then
dodoc README.${tbz2} || die "dodoc failed"
fi
done
fi
if [ -n "${MOD_BINS}" ]
then
exeinto ${dir}
doexe bin/${MOD_BINS} || die "doexe failed"
games_make_wrapper ${MOD_BINS} ./${MOD_BINS} ${dir}
make_desktop_entry ${MOD_BINS} "UT2004 - ${MOD_NAME}" ${MOD_ICON}
fi
[ -e ${MOD_ICON} ] && doicon ${MOD_ICON}
prepgamesdirs
}
games-ut2k4mod_pkg_postinst() {
if [ -n "${MOD_BINS}" ]
then
einfo "To play this mod run:"
einfo " ${MOD_BINS}"
fi
games_pkg_postinst
}
|