blob: 4cb7a6d9f6112b5cb223344bf9c234f4fd4a8189 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/x2vnc/x2vnc-1.6.1.ebuild,v 1.8 2006/09/19 01:50:43 cardoe Exp $
DESCRIPTION="Control a remote computer running VNC from X"
HOMEPAGE="http://fredrik.hubbe.net/x2vnc.html"
SRC_URI="http://fredrik.hubbe.net/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~ppc sparc x86"
IUSE="tk"
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXext
x11-libs/libXinerama )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( (
x11-proto/scrnsaverproto
x11-proto/xproto
x11-proto/xineramaproto )
virtual/x11 )
tk? ( dev-tcltk/expect )"
src_install() {
dodir /usr/share /usr/bin
make DESTDIR=${D} install || die
use tk && dobin contrib/tkx2vnc
dodoc ChangeLog README
}
|