blob: 1b0bf4d1109cadd26048cdfc7251294d7cabb4ff (
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
35
36
37
38
39
40
41
42
43
44
45
|
# 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.4.0-r2.ebuild,v 1.2 2005/02/17 13:02:08 stuart Exp $
MY_P="${PN}-${PV}-2"
DESCRIPTION="X11 protocol compression library wrapper"
HOMEPAGE="http://www.nomachine.com/"
URI_BASE="http://www.nomachine.com/download/nxsources/"
SRC_NXPROXY="${MY_P}.tar.gz"
SRC_NXCOMP="nxcomp-1.4.0-30.tar.gz"
SRC_URI="$URI_BASE/nxproxy/${SRC_NXPROXY} $URI_BASE/nxcomp/${SRC_NXCOMP}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND=">=net-misc/nx-x11-1.4.0
sys-devel/patch
>=media-libs/jpeg-6b-r3
>=sys-libs/glibc-2.3.2-r1
>=sys-libs/zlib-1.1.4-r1"
# Run-time dependencies, same as DEPEND if RDEPEND isn't defined:
#RDEPEND=""
S=${WORKDIR}/${PN}
src_unpack() {
# we can't use ${A} because of bug #61977
unpack ${SRC_NXPROXY}
unpack ${SRC_NXCOMP}
cd ${S}
}
src_compile() {
./configure
emake || die "compile problem"
}
src_install() {
exeinto /usr/NX/bin
doexe nxproxy
dodoc README README-IPAQ README-VALGRIND VERSION LICENSE
}
|