blob: b4845f19196923bbb1a56db3e533a5b3684b154f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/halflife-hookmod/halflife-hookmod-4.ebuild,v 1.6 2004/11/03 00:32:17 vapier Exp $
inherit games
DESCRIPTION="add a hook feature to any Half-Life mod"
SRC_URI="http://www.adminop.net/AdminOP/HookMod${PV}_lin.zip"
HOMEPAGE="http://www.adminop.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RDEPEND="games-server/halflife-metamod"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/addons/HookMod
src_install() {
local dir=${GAMES_PREFIX_OPT}/halflife/addons/hookmod
dodir ${dir}
cp -rf ${S}/* ${D}/${dir}/
prepgamesdirs
}
|