diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2008-04-09 09:50:19 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2008-04-09 09:50:19 +0000 |
commit | 240e2c04cb8f2eca43df45efcfe9806d283968d2 (patch) | |
tree | 891fe49f67b62e301f34d0e992b19e3b1235fb36 /net-misc/nxclient | |
parent | ia64/sparc/x86 stable wrt security #214270 (diff) | |
download | gentoo-2-240e2c04cb8f2eca43df45efcfe9806d283968d2.tar.gz gentoo-2-240e2c04cb8f2eca43df45efcfe9806d283968d2.tar.bz2 gentoo-2-240e2c04cb8f2eca43df45efcfe9806d283968d2.zip |
Version bump, new 3.2.0 series
(Portage version: 2.1.5_rc2)
Diffstat (limited to 'net-misc/nxclient')
-rw-r--r-- | net-misc/nxclient/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/nxclient/nxclient-3.2.0.ebuild | 68 |
2 files changed, 75 insertions, 1 deletions
diff --git a/net-misc/nxclient/ChangeLog b/net-misc/nxclient/ChangeLog index 5731f7edd57f..ea0cd402b9af 100644 --- a/net-misc/nxclient/ChangeLog +++ b/net-misc/nxclient/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/nxclient # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/nxclient/ChangeLog,v 1.64 2008/03/19 11:09:54 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxclient/ChangeLog,v 1.65 2008/04/09 09:50:19 voyageur Exp $ + +*nxclient-3.2.0 (09 Apr 2008) + + 09 Apr 2008; Bernard Cafarelli <voyageur@gentoo.org> + +nxclient-3.2.0.ebuild: + Version bump, new 3.2.0 series 19 Mar 2008; Peter Volkov <pva@gentoo.org> nxclient-3.1.0-r1.ebuild: amd64 stable, security bug #210317. diff --git a/net-misc/nxclient/nxclient-3.2.0.ebuild b/net-misc/nxclient/nxclient-3.2.0.ebuild new file mode 100644 index 000000000000..68d265e0ac96 --- /dev/null +++ b/net-misc/nxclient/nxclient-3.2.0.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxclient/nxclient-3.2.0.ebuild,v 1.1 2008/04/09 09:50:19 voyageur Exp $ + +inherit eutils + +MY_PV="${PV}-9" +DESCRIPTION="X11/VNC/NXServer client (remote desktops over low-bandwidth links)" +HOMEPAGE="http://www.nomachine.com/" +SRC_URI="amd64? ( http://64.34.161.181/download/${PV}/Linux/nxclient-${MY_PV}.x86_64.tar.gz ) + x86? ( http://64.34.161.181/download/${PV}/Linux/nxclient-${MY_PV}.i386.tar.gz )" +LICENSE="nomachine" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="strip" + +DEPEND="" +RDEPEND="dev-libs/expat + >=dev-libs/openssl-0.9.8e + media-libs/audiofile + media-libs/jpeg + media-libs/libpng + media-libs/freetype + media-libs/fontconfig + net-print/cups + x11-libs/libXft + x11-libs/libX11 + x11-libs/libXdmcp + x11-libs/libXrender + x11-libs/libXau + x11-libs/libXext + sys-libs/zlib + !net-misc/nxclient-2xterminalserver" + +S=${WORKDIR}/NX + +src_install() +{ + # we install nxclient into /usr/NX, to make sure it doesn't clash + # with libraries installed for FreeNX + + for x in nxclient nxesd nxkill nxprint nxservice nxssh ; do + into /usr/NX + dobin bin/$x + into /usr + make_wrapper $x ./$x /usr/NX/bin /usr/NX/lib || die + done + + dodir /usr/NX/lib + cp -P lib/libXcompsh.so* lib/libXcomp.so* "${D}"/usr/NX/lib + + dodir /usr/NX/share + cp -R share "${D}"/usr/NX + + # Add icons/desktop entries (missing in the tarball) + cd share/icons + for size in *; do + dodir /usr/share/icons/hicolor/${size}/apps + for icon in admin desktop icon wizard; do + dosym /usr/NX/share/icons/${size}/nxclient-${icon}.png \ + /usr/share/icons/hicolor/${size}/apps + done + done + make_desktop_entry "nxclient" "NX Client" nxclient-icon + make_desktop_entry "nxclient -admin" "NX Session Administrator" nxclient-admin + make_desktop_entry "nxclient -wizard" "NX Connection Wizard" nxclient-wizard +} |