1 |
# Copyright 1999-2002 Gentoo Technologies, Inc. |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /home/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild,v 1.5 2002/07/11 06:30:49 drobbins Exp $ |
4 |
|
5 |
S="${WORKDIR}/vnc_unixsrc" |
6 |
DESCRIPTION="A great client/server software package allowing remote network access to graphical desktops." |
7 |
SRC_URI="mirror://sourceforge/vnc-tight/${P}_unixsrc.tar.bz2" |
8 |
HOMEPAGE="http://www.tightvnc.com" |
9 |
KEYWORDS="x86" |
10 |
LICENSE="GPL-2" |
11 |
SLOT="0" |
12 |
DEPEND="virtual/glibc |
13 |
>=x11-base/xfree-4.1.0 |
14 |
>=sys-devel/perl-5.6.1 |
15 |
~media-libs/jpeg-6b |
16 |
>=sys-libs/zlib-1.1.4" |
17 |
|
18 |
RDEPEND=$DEPEND |
19 |
|
20 |
src_compile() { |
21 |
|
22 |
cd ${S} |
23 |
xmkmf || die |
24 |
make World || die |
25 |
cd Xvnc |
26 |
make World || die |
27 |
|
28 |
} |
29 |
|
30 |
src_install() { |
31 |
|
32 |
cd ${S} |
33 |
mkdir -p ${D}/usr/man |
34 |
mkdir -p ${D}/usr/man/man1 |
35 |
mkdir -p ${D}/usr/bin |
36 |
./vncinstall ${D}/usr/bin ${D}/usr/man || die |
37 |
|
38 |
} |