blob: cc38cb3a8799188657b56fb172495706839f7b14 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcomp/nxcomp-1.3.0_beta2.ebuild,v 1.2 2003/11/24 22:31:26 stuart Exp $
MY_P="${PN}-1.3.0-34"
DESCRIPTION="X11 protocol compression library"
HOMEPAGE="http://www.nomachine.com/"
SRC_URI="http://www.nomachine.com/download/beta/nxclient-sources-beta2/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=""
# Run-time dependencies, same as DEPEND if RDEPEND isn't defined:
#RDEPEND=""
S=${WORKDIR}/${PN}
src_compile() {
./configure
emake || die "compile problem"
}
src_install() {
insinto /usr/NX/lib
dolib libXcomp.so.1.3.0
dodoc README README-IPAQ LICENSE VERSION
insinto /usr/NX/include
doins NX.h
}
|