add ebuilds

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2464 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one
2010-10-04 19:24:16 +00:00
parent 53d472c69f
commit 677e030bbd
69 changed files with 3569 additions and 0 deletions

2
net-misc/opennx/Manifest Normal file
View File

@@ -0,0 +1,2 @@
DIST opennx-0.16.tar.gz 1040560 RMD160 b95a983c28d1651d8cbe597c6aa8bb84be87fb36 SHA1 3f8d62c17f1651eff6ec9ca88721c9a95f443d54 SHA256 74fd6775b77dd5046d1ee6102abe8a855c5e04343269f5b587822598ec50eed9
EBUILD opennx-0.16.ebuild 976 RMD160 d221ab4b91da8ade3ee474fc7edeb8d257aadbea SHA1 cfd7b1bcc7f2e9c33c1d8a3f8b579123e294a979 SHA256 4ff8d6fafacc5a4be9f31c7e71139b6da6bad14872774838354557daf9be3d53

View File

@@ -0,0 +1,44 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
WX_GTK_VER="2.8"
inherit eutils wxwidgets
DESCRIPTION="OpenNX is an OSS drop-in replacement for Nomachine's nxclient"
HOMEPAGE="http://sourceforge.net/projects/opennx/"
SRC_URI="mirror://sourceforge/opennx/opennx/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/wxGTK:2.8
dev-libs/opensc
net-print/cups
dev-libs/libusb
net-fs/samba[client]
net-misc/nx"
RDEPEND="${DEPEND}
!net-misc/nxclient"
PROVIDE="virtual/nxclient"
src_configure() {
need-wxwidgets gtk2
econf \
--with-wx-config="${WX_CONFIG}" || die "econf failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
# nxssh expects the client to be named nxclient so create a symlink
# to make this hardcoded app happy
dosym opennx /usr/bin/nxclient || die "failed creating symlink"
dodoc ChangeLog
}