blob: 73b4099cdc6950a0c5026268591effb9503347bf (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/vnc/vnc-3.3.4.ebuild,v 1.3 2002/10/11 21:37:13 bcowan Exp $
IUSE="java tcpd"
MY_P="${P}-unixsrc"
DESCRIPTION="Remote desktop viewer display system"
HOMEPAGE="http://www.realvnc.com/"
SRC_URI="http://www.realvnc.com/dist/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="tcpd? ( sys-apps/tcp-wrappers )"
RDEPEND="java? ( virtual/jre )"
S="${WORKDIR}/${MY_P}"
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr || die "./configure failed"
emake
cd Xvnc
if use tcpd
then
make \
EXTRA_LIBRARIES="-lwrap -lnss_nis" \
CDEBUGFLAGS="${CFLAGS}" \
World || die
else
make \
CDEBUGFLAGS="${CFLAGS}" \
World || die
fi
}
src_install () {
dodir /usr/bin /usr/share/man/man1
./vncinstall ${D}/usr/bin ${D}/usr/share/man || die
if use java
then
cd ${S}/classes
insinto /usr/share/vnc/classes
doins *.class *.jar *.vnc
fi
cd ${S}
dodoc LICENCE.TXT README
}
|