blob: 49f8b6c56646392519ce0dfe8d6862b30a820f83 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/nxserver-1.3.2.eclass,v 1.8 2004/08/08 10:29:06 stuart Exp $
#
# eclass for handling the different nxserver binaries available
# from nomachine's website
inherit rpm eutils
ECLASS="nxserver"
INHERITED="$INHERITED $ECLASS"
HOMEPAGE="http://www.nomachine.com/"
IUSE=""
LICENSE="nomachine"
SLOT="0"
KEYWORDS="x86 -ppc -sparc -alpha -mips"
RESTRICT="nomirror strip"
SRC_URI="nxserver-${MY_PV}.i386.rpm"
DEPEND="$DEPEND
>=net-misc/nxclient-1.3.2"
RDEPEND="$RDEPEND
>=media-libs/jpeg-6b-r3
>=sys-libs/glibc-2.3.2-r1
>=sys-libs/zlib-1.1.4-r1
virtual/x11
>=net-misc/openssh-3.6.1_p2
>=dev-lang/perl-5.8.0-r12"
DEPEND="$DEPEND
>=sys-apps/shadow-4.0.3-r6
>=net-misc/openssh-3.6.1_p2
>=net-misc/nxssh-1.3.2
>=net-misc/nxproxy-1.3.2"
S="${WORKDIR}"
DESCRIPTION="an X11/RDP/VNC proxy server especially well suited to low bandwidth links such as wireless, WANS, and worse"
EXPORT_FUNCTIONS pkg_nofetch src_compile src_install pkg_postinst
nxserver_pkg_nofetch () {
eerror "This package requires you to purchase NX Server from:"
eerror
eerror " http://www.nomachine.com/download.php"
eerror
eerror "Please purchase the *$1* edition of NX Server packaged for"
eerror "RedHat 9.0 and put the RPM file nxserver-1.2.2-72.i386.rpm"
eerror "into $DISTDIR/"
eerror
eerror "This ebuild will also work with the evaluation version of"
eerror "the *$1* edition of NX Server packaged for RedHat 9.0"
die "Automatic download not supported"
}
nxserver_src_compile() {
return;
}
nxserver_src_install() {
einfo "Installing"
find usr/NX/lib -type l -exec rm {} \;
# NX changed the name of the passwords sample file in 1.3.0
for x in passwd.sample passwords.sample ; do
if [ -f usr/NX/etc/$x ]; then
mv usr/NX/etc/$x usr/NX/etc/`basename $x .sample`
fi
done
tar -cf - * | ( cd ${D} ; tar -xf - )
dodir /usr/NX/var
dodir /usr/NX/var/sessions
touch ${D}/usr/NX/var/sessions/NOT_EMPTY
insinto /etc/env.d
doins ${FILESDIR}/1.3.0/50nxserver
}
nxserver_pkg_postinst() {
# arg - the 'nx' user's home directory keeps moving
#
# release user homedir
# 1.2.2 nx /usr/NX/home/nx
# 1.3.0 nx /usr/NX/home
# 1.3.2 nx /usr/NX/home/nx
l_szPasswd=passwd
if [ -f /usr/NX/etc/passwd -a -f /usr/NX/etc/passwords ]; then
mv /usr/NX/etc/passwd /usr/NX/etc/passwords
fi
if [ -f /usr/NX/etc/passwords ]; then
l_szPasswd=passwords
fi
# end of upgrade support
einfo "Adding user 'nx' for the NX server"
enewuser nx -1 /usr/NX/bin/nxserver /usr/NX/home/nx
# we do this to move the home directory of older installs
einfo "Setting home directory of user 'nx' to /usr/NX/home/nx"
usermod -d /usr/NX/home/nx nx
einfo "Changing permissions for files under /usr/NX"
chown nx:root /usr/NX/etc/$l_szPasswd
chmod 0600 /usr/NX/etc/$l_szPasswd
chown -R nx:root /usr/NX/home/nx
chown -R nx:root /usr/NX/var
einfo "Generating SSH keys for the 'nx' user"
if [ ! -f /usr/NX/etc/users.id_dsa ]; then
ssh-keygen -q -t dsa -N '' -f /usr/NX/etc/users.id_dsa
fi
chown nx:root /usr/NX/etc/users.id_dsa
cp -f /usr/NX/home/nx/.ssh/server.id_dsa.pub.key /usr/NX/home/nx/.ssh/authorized_keys2
if [ ! -f /usr/NX/var/broadcast.txt ]; then
einfo "Creating NX user registration database"
touch /usr/NX/var/broadcast.txt
chown nx:root /usr/NX/var/broadcast.txt
ewarn "None of your system users are registered to use the NX Server."
ewarn "To authorise a user, run:"
ewarn "'/usr/NX/bin/nxserver --useradd <username>'"
fi
if [ ! -f /usr/NX/etc/key.txt ] ; then
ewarn
ewarn "You need to place your NX key.txt file into /usr/NX/etc/"
ewarn "If you don't have one already, you can get an evaluation"
ewarn "key, or purchase a full license, from www.nomachine.com"
ewarn
fi
if [ ! -f /usr/NX/etc/node.conf ] ; then
ewarn
ewarn "To complete the installation, you must create a file called"
ewarn "'/usr/NX/etc/node.conf'. An example configuration file can"
ewarn "be found in /usr/NX/etc"
ewarn
fi
# regen the ld.so cache, because Portage sometimes doesn't
ldconfig -v > /dev/null
}
|