blob: ff9980c856222e995fcd08406644940fb02fedf2 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-dungeon/doom3-dungeon-8.01.ebuild,v 1.4 2007/02/01 00:48:05 nyhm Exp $
MOD_DESC="rogue-like 3D mod"
MOD_NAME="Dungeon"
MOD_DIR="dungeon"
inherit versionator eutils games games-mods
MY_PV=$(delete_all_version_separators)
HOMEPAGE="http://dungeondoom.d3files.com/"
SRC_URI="mirror://filefront/Doom_III/Hosted_Mods/Final_Releases/DungeonDOOM/${MOD_DIR}doom${MY_PV}xplinux.zip"
LICENSE="as-is"
KEYWORDS="~amd64 ~x86"
RDEPEND="games-fps/doom3-roe
games-fps/doom3"
S=${WORKDIR}
pkg_setup() {
games-mods_pkg_setup
if ! built_with_use games-fps/doom3 roe
then
eerror "You need to install games-fps/doom3 with the roe USE flag."
die "Needs USE=roe games-fps/doom3"
fi
}
src_unpack() {
games-mods_src_unpack
# Standardize directory name.
local dir=$(find . -maxdepth 1 -name "dungeon*" -type d)
mv "${dir}" "${MOD_DIR}" || die "mv ${dir} failed"
}
src_install() {
games-mods_src_install
games_make_wrapper ${PN} \
"doom3 +set fs_game ${MOD_DIR} +set fs_game_base d3xp"
}
|