blob: 2efcd691d9c4b8dd737c8fb6b1a2fdef62db5a4f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/nwn-ded/nwn-ded-1.61.ebuild,v 1.3 2004/06/01 20:16:02 mr_bones_ Exp $
inherit games
DESCRIPTION="Neverwinter Nights Dedicated server"
HOMEPAGE="http://nwn.bioware.com/downloads/standaloneserver.html"
SRC_URI="http://nwdownloads.bioware.com/neverwinternights/standaloneserver/NWNDedicatedServer${PV}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
RESTRICT="nomirror"
DEPEND="app-arch/unzip"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
tar -zxf linuxdedserver${PV/.}.tar.gz || die
rm linuxdedserver${PV/.}.tar.gz
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir ${dir}
mv ${S}/* ${D}/${dir}/ || die "installing server"
dogamesbin ${FILESDIR}/nwserver
dosed "s:GENTOO_DIR:${dir}:" ${GAMES_BINDIR}/nwserver
prepgamesdirs
chmod -R g+w ${D}/${dir}
}
|