blob: 5762bf53544a015f04aab4525a71c3333f20870f (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/halfd/halfd-2.19.ebuild,v 1.1 2003/09/10 05:51:10 vapier Exp $
inherit games
DESCRIPTION="Half-Life server management tool"
HOMEPAGE="http://halfd.org/"
SRC_URI="http://halfd.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
RDEPEND="dev-tcltk/tclx
dev-lang/perl"
src_install() {
local dir=${GAMES_PREFIX_OPT}/halflife
dodir ${dir}
dodoc FAQ.txt INSTALL* README UPGRADE
rm FAQ.txt INSTALL* README UPGRADE
cp -r * ${D}/${dir}/
prepgamesdirs
}
|