blob: 4356e09f2c15c9a00474d95f4cc539dc30f9c527 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-roe/doom3-roe-1.ebuild,v 1.14 2012/01/16 19:13:03 ulm Exp $
inherit eutils cdrom games
DESCRIPTION="Doom III: Resurrection of Evil expansion pack"
HOMEPAGE="http://www.doom3.com/"
SRC_URI=""
LICENSE="DOOM3"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RESTRICT="strip"
RDEPEND=">=games-fps/doom3-1.3.1302-r2"
S=${WORKDIR}
dir=${GAMES_PREFIX_OPT}/doom3
Ddir=${D}/${dir}
src_unpack() {
cdrom_get_cds Setup/Data/d3xp/pak000.pk4
# Change from showing "d3xp" in the "mods" menu within Doom 3
# The ^1 changes the text to red
echo '^1Resurrection of Evil' > description.txt
}
src_install() {
insinto "${dir}"/d3xp
einfo "Copying file from the disk..."
doins "${CDROM_ROOT}"/Setup/Data/d3xp/pak000.pk4 \
|| die "copying pak000"
doins description.txt
find "${Ddir}" -exec touch '{}' \;
games_make_wrapper ${PN} "doom3 +set fs_game d3xp"
make_desktop_entry ${PN} "Doom III - Resurrection of Evil" doom3
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "This is just the data portion of the game. You will need to emerge"
elog "games-fps/doom3 to play the game."
echo
}
|