blob: cdaa3d13494052a1daeb05d17ec6e56fb9c0f337 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/nxserver-freeedition/nxserver-freeedition-3.2.0.ebuild,v 1.3 2008/06/05 15:12:42 pva Exp $
inherit eutils
MY_PV="${PV}-7"
DESCRIPTION="Free edition NX server from NoMachine"
HOMEPAGE="http://www.nomachine.com/"
SRC_URI="amd64? ( http://64.34.161.181/download/${PV}/Linux/FE/nxserver-${MY_PV}.x86_64.tar.gz )
x86? ( http://64.34.161.181/download/${PV}/Linux/FE/nxserver-${MY_PV}.i386.tar.gz )"
LICENSE="nomachine"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RESTRICT="strip"
DEPEND="=net-misc/nxnode-3.2*
!net-misc/nxserver-freenx
!net-misc/nxserver-2xterminalserver"
RDEPEND="${DEPEND}
media-fonts/font-misc-misc
media-fonts/font-cursor-misc
x11-apps/xauth"
S="${WORKDIR}"/NX
pkg_preinst()
{
enewuser nx -1 -1 /usr/NX/home/nx
}
src_unpack()
{
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/nxserver-3.0.0-r4-setup.patch
}
src_install()
{
# we install nxserver into /usr/NX, to make sure it doesn't clash
# with libraries installed for FreeNX
into /usr/NX
dobin bin/nxserver
dodir /usr/NX/etc/keys
insinto /usr/NX/etc
doins etc/administrators.db.sample
doins etc/guests.db.sample
doins etc/passwords.db.sample
doins etc/profiles.db.sample
doins etc/users.db.sample
doins etc/server.lic.sample
newins etc/server-debian.cfg.sample server-gentoo.cfg.sample
cp -R home "${D}"/usr/NX || die "Unable to install home folder"
cp -R lib "${D}"/usr/NX || die "Unable to install lib folder"
cp -R scripts "${D}"/usr/NX || die "Unable to install scripts folder"
cp -R share "${D}"/usr/NX || die "Unable to install share folder"
cp -R var "${D}"/usr/NX || die "Unable to install var folder"
newinitd "${FILESDIR}"/nxserver-2.1.0-init nxserver
}
pkg_postinst ()
{
usermod -s /usr/NX/bin/nxserver nx || die "Unable to set login shell of nx user!!"
usermod -d /usr/NX/home/nx nx || die "Unable to set home directory of nx user!!"
# only run install when no configuration file is found
if [ -f /usr/NX/etc/server.cfg ]; then
einfo "Running NoMachine's update script"
"${ROOT}"/usr/NX/scripts/setup/nxserver --update || die "Update script failed"
else
einfo "Running NoMachine's setup script"
"${ROOT}"/usr/NX/scripts/setup/nxserver --install || die "Installation script failed"
fi
elog "Remember to add nxserver to your default runlevel"
}
|