blob: 833ad931bca74ba35c6a7ee6634d37754632ab79 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header $
DESCRIPTION="NXClient is a X11/VNC/NXServer client especially tuned for using remote desktops over low-bandwidth links such as the Internet"
HOMEPAGE="http://www.nomachine.com"
IUSE=""
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 -ppc -sparc -alpha -mips"
RESTRICT="nostrip"
MY_PV="${PV}-14"
SRC_URI="http://www.nomachine.com/download/snapshot/nxbinaries/Linux/nxclient-${MY_PV}.i386.tar.gz"
DEPEND=""
S="${WORKDIR}/NX"
src_compile() {
einfo "Nothing to compile"
}
src_install() {
dodir /usr/NX
cp -R * ${D}/usr/NX
insinto /etc/env.d
doins ${FILESDIR}/1.3.0/50nxclient
}
|