blob: 800790d58b02657ae336814dddd379a4aab4fadd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-data/quake1-data-2.40.ebuild,v 1.7 2006/04/13 21:05:47 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="iD Software's Quake 1 ... the data files"
HOMEPAGE="http://www.idsoftware.com/games/quake/quake/"
SRC_URI=""
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="app-arch/lha"
RDEPEND=""
S=${WORKDIR}
pkg_setup() {
games_pkg_setup
export CDROM_SET_NAMES=("Existing Install" "Quake CD" "Ultimate Quake Collection")
cdrom_get_cds id1:q101_int.1:Setup/ID1
}
src_unpack() {
echo ">>> Unpacking q101_int to ${PWD}"
if [[ ${CDROM_SET} == "1" ]] ; then
cat "${CDROM_ROOT}"/q101_int.1 "${CDROM_ROOT}"/q101_int.2 > \
"${S}"/q101_int.exe
lha xqf "${S}"/q101_int.exe || die "failure unpacking q101_int.exe"
rm -f q101_int.exe
fi
}
src_install() {
insinto ${GAMES_DATADIR}/quake1/id1
case ${CDROM_SET} in
0) doins "${CDROM_ROOT}"/id1/* || die "doins pak files"
dodoc "${CDROM_ROOT}"/*.txt
;;
1) doins id1/* || die "doins pak files"
dodoc *.txt
;;
2) newins "${CDROM_ROOT}"/Setup/ID1/PAK0.PAK pak0.pak \
|| die "ins pak0.pak failed"
newins "${CDROM_ROOT}"/Setup/ID1/PAK1.PAK pak1.pak \
|| die "ins pak1.pak failed"
dodoc "${CDROM_ROOT}"/Docs/*
;;
esac
prepgamesdirs
}
|