forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doom3-data-1.1.1282-r1.ebuild
49 lines (37 loc) · 1.07 KB
/
doom3-data-1.1.1282-r1.ebuild
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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit eutils cdrom games
DESCRIPTION="Doom 3 - data portion"
HOMEPAGE="http://www.doom3.com/"
SRC_URI=""
LICENSE="DOOM3"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RDEPEND="games-fps/doom3"
S=${WORKDIR}
src_install() {
cdrom_get_cds \
Setup/Data/base/pak002.pk4 \
Setup/Data/base/pak000.pk4 \
Setup/Data/base/pak003.pk4
insinto "${GAMES_PREFIX_OPT}"/doom3/base
einfo "Copying files from CD 1..."
doins "${CDROM_ROOT}"/Setup/Data/base/pak002.pk4 \
|| die "doins pak002.pk4 failed"
cdrom_load_next_cd
einfo "Copying files from CD 2..."
doins "${CDROM_ROOT}"/Setup/Data/base/pak00{0,1}.pk4 \
|| die "doins pak00{0,1}.pk4 failed"
cdrom_load_next_cd
einfo "Copying files from CD 3..."
doins "${CDROM_ROOT}"/Setup/Data/base/pak00{3,4}.pk4 \
|| die "doins pak00{3,4}.pk4 failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "This is just the data portion of the game. You will need to install"
elog "games-fps/doom3 to play the game."
}