blob: a0d9dcdb25428dc3a562e83a9355bffa3f4132c0 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/nwn/nwn-1.62.ebuild,v 1.2 2004/04/19 11:29:44 mr_bones_ Exp $
inherit games
UPDATEVER=${PV//.}
DESCRIPTION="Never Winter Nights"
HOMEPAGE="http://nwn.bioware.com/downloads/linuxclient.html"
SRC_URI="http://nwdownloads.bioware.com/neverwinternights/linux/129/nwclient129.tar.gz
nowin? ( ftp://jeuxlinux.com/bioware/Neverwinter_Nights/nwresources129.tar.gz )
http://nwdownloads.bioware.com/neverwinternights/linux/${UPDATEVER}/linuxclientupdate129to${UPDATEVER}eng.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86"
IUSE="nowin"
RESTRICT="nostrip nomirror"
RDEPEND="virtual/x11
virtual/opengl
>=media-libs/libsdl-1.2.5"
S="${WORKDIR}/nwn"
src_unpack() {
mkdir ${S}
cd ${S}
unpack nwclient129.tar.gz
cd ${WORKDIR}
use nowin && unpack nwresources129.tar.gz
cd ${S}
unpack linuxclientupdate129to${UPDATEVER}eng.tar.gz
}
src_install() {
dodir ${GAMES_PREFIX_OPT}
sed \
-e "s:GENTOO_USER:${GAMES_USER}:" \
-e "s:GENTOO_GROUP:${GAMES_GROUP}:" \
-e "s:GENTOO_DIR:${GAMES_PREFIX_OPT}:" \
${FILESDIR}/${P}-fixinstall > ${WORKDIR}/nwn/fixinstall
mv ${WORKDIR}/nwn ${D}/${GAMES_PREFIX_OPT}
dogamesbin ${FILESDIR}/nwn
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if [ ! `use nowin` ] ; then
einfo "The NWN linux client is now installed."
einfo "Proceed with the following steps in order to get it working:"
einfo "1) Copy the following directories/files from your installed and"
einfo " patched (${PV}) Never Winter Nights to ${GAMES_PREFIX_OPT}/nwn:"
einfo " ambient/"
einfo " data/"
einfo " dmvault/"
einfo " hak/"
einfo " localvault/"
einfo " modules/"
einfo " music/"
einfo " nwm/"
einfo " override/"
einfo " portraits/"
einfo " saves/"
einfo " servervault/"
einfo " texturepacks/"
einfo " chitin.key"
einfo " patch.key"
einfo " dialog.tlk"
einfo " dialogF.tlk (French, German, Italian, and Spanish)"
einfo "2) Chown and chmod the files with the following commands"
einfo " chown -R ${GAMES_USER}:${GAMES_GROUP} ${GAMES_PREFIX_OPT}/nwn"
einfo " chmod -R g+rwX ${GAMES_PREFIX_OPT}/nwn"
einfo "3) Run ${GAMES_PREFIX_OPT}/nwn/fixinstall as root"
einfo "4) Make sure that you are in group ${GAMES_GROUP}"
einfo "5) Use ${GAMES_PREFIX_OPT}/nwn/nwn to run the game"
echo
einfo "Or try emerging with USE=nowin"
else
einfo "The NWN linux client is now installed."
einfo "Proceed with the following step in order to get it working:"
einfo "Run ${GAMES_PREFIX_OPT}/nwn/fixinstall as root"
fi
}
|