blob: cf7801cb7bb93797671aa164d45cde2a3a9c7873 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/halflife-entmod/halflife-entmod-2.ebuild,v 1.3 2004/02/20 07:31:48 mr_bones_ Exp $
inherit games
DESCRIPTION="adds real-time entity control for admins"
SRC_URI="http://www.adminop.net/AdminOP/EntMod_lin.zip"
HOMEPAGE="http://www.adminop.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
RDEPEND="games-server/halflife-metamod"
S=${WORKDIR}
src_install() {
local dir=${GAMES_PREFIX_OPT}/halflife/addons/entmod
dodir ${dir}
cp -rf entmod_readme.txt sound addons/EntMod/* ${D}/${dir}/
prepgamesdirs
}
|