blob: 5df5c302e1a40dc428f1a17795547adbadaf865e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-inhell/doom3-inhell-1.1-r1.ebuild,v 1.2 2008/02/15 00:37:45 wolf31o2 Exp $
MOD_DESC="Ultimate Doom-inspired levels for Doom 3"
MOD_NAME="In Hell"
MOD_DIR="inhell"
inherit versionator games games-mods
MY_PV=$(replace_version_separator 1 '')
HOMEPAGE="http://www.doomerland.de.vu/"
SRC_URI="mirror://filefront/Doom_III/Mods/Single_Player/in_hell_v${MY_PV}.zip"
LICENSE="as-is"
RDEPEND="games-fps/doom3"
S=${WORKDIR}
src_unpack() {
games-mods_src_unpack
mv In_Hell ${MOD_DIR} || die
}
|