blob: bff2ce61fc2a452bf26596d70eaa35c277d5f760 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/nxproxy/nxproxy-1.5.0.ebuild,v 1.1 2005/10/20 21:37:49 agriffis Exp $
inherit flag-o-matic multilib
DESCRIPTION="X11 protocol compression library wrapper"
HOMEPAGE="http://www.nomachine.com/"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
SRC_URI="http://web04.nomachine.com/download/1.5.0/sources/nxproxy-$PV-9.tar.gz"
DEPEND="=net-misc/nxcomp-1.5*
media-libs/jpeg
virtual/libc
sys-libs/zlib"
S=${WORKDIR}/${PN}
src_compile() {
append-ldflags -L/usr/NX/$(get_libdir)
econf --prefix=/usr/NX || die "econf failed"
emake || die "emake failed"
}
src_install() {
into /usr/NX
dobin nxproxy
dodoc README README-IPAQ README-VALGRIND VERSION LICENSE
}
|