Change ebuild layout
Package-Manager: portage-2.2.20 RepoMan-Options: --force
This commit is contained in:
71
net-misc/nxclient/nxclient-3.5.0.7.ebuild
Normal file
71
net-misc/nxclient/nxclient-3.5.0.7.ebuild
Normal file
@@ -0,0 +1,71 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/net-misc/nxclient/nxclient-3.5.0.7.ebuild,v 1.4 2013/08/01 20:54:56 ssuominen Exp $
|
||||
|
||||
EAPI=2
|
||||
inherit eutils versionator multilib
|
||||
|
||||
MAJOR_PV="$(get_version_component_range 1-3)"
|
||||
FULL_PV="${MAJOR_PV}-$(get_version_component_range 4)"
|
||||
DESCRIPTION="X11/VNC/NXServer client (remote desktops over low-bandwidth links)"
|
||||
HOMEPAGE="http://www.nomachine.com/"
|
||||
SRC_URI="amd64? ( http://ftp.disconnected-by-peer.at/NX/Linux/nxclient-${FULL_PV}.x86_64.tar.gz )
|
||||
x86? ( http://ftp.disconnected-by-peer.at/NX/Linux/nxclient-${FULL_PV}.i386.tar.gz )"
|
||||
LICENSE="nomachine"
|
||||
SLOT="0"
|
||||
KEYWORDS="-* amd64 x86"
|
||||
IUSE="cups"
|
||||
RESTRICT="strip"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="dev-libs/expat
|
||||
=dev-libs/openssl-0.9.8*
|
||||
media-libs/audiofile
|
||||
|| ( virtual/jpeg:62 media-libs/jpeg:62 )
|
||||
=media-libs/libpng-1.2*
|
||||
media-libs/freetype
|
||||
media-libs/fontconfig
|
||||
cups? ( net-print/cups )
|
||||
x11-libs/libXft
|
||||
x11-libs/libX11
|
||||
x11-libs/libXdmcp
|
||||
x11-libs/libXrender
|
||||
x11-libs/libXau
|
||||
x11-libs/libXext
|
||||
sys-libs/zlib"
|
||||
|
||||
S=${WORKDIR}/NX
|
||||
|
||||
src_install()
|
||||
{
|
||||
# we install nxclient into /usr/NX, to make sure it doesn't clash
|
||||
# with libraries installed for FreeNX
|
||||
local binaries="nxclient nxesd nxkill nxservice nxssh"
|
||||
use cups && binaries="$binaries nxprint"
|
||||
|
||||
for x in $binaries; do
|
||||
into /usr/NX
|
||||
dobin bin/$x
|
||||
into /usr
|
||||
make_wrapper $x ./$x /usr/NX/bin /usr/NX/$(get_libdir) || die
|
||||
done
|
||||
|
||||
into /usr/NX
|
||||
dolib.so lib/libXcompsh.so* lib/libXcomp.so* || die
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user