blob: 32b7455d87f8a675ad79426238cf0934a6969bc3 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author Bart Verwilst <verwilst@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild,v 1.4 2002/07/09 11:23:14 phoenix Exp $
S="${WORKDIR}/vnc_unixsrc"
DESCRIPTION="A great client/server software package allowing remote network access to graphical desktops."
SRC_URI="mirror://sourceforge/vnc-tight/${P}_unixsrc.tar.bz2"
HOMEPAGE="http://www.tightvnc.com"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/glibc
>=x11-base/xfree-4.1.0
>=sys-devel/perl-5.6.1
~media-libs/jpeg-6b
>=sys-libs/zlib-1.1.4"
RDEPEND=$DEPEND
src_compile() {
cd ${S}
xmkmf || die
make World || die
cd Xvnc
make World || die
}
src_install() {
cd ${S}
mkdir -p ${D}/usr/man
mkdir -p ${D}/usr/man/man1
mkdir -p ${D}/usr/bin
./vncinstall ${D}/usr/bin ${D}/usr/man || die
}
|