blob: 4a596796aa2aee86cfd1dcff1dad86bf7e95916b (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.3.10.ebuild,v 1.8 2010/06/13 12:08:27 pacho Exp $
EAPI="2"
inherit base gnome.org
DESCRIPTION="VNC viewer widget for GTK."
HOMEPAGE="http://live.gnome.org/gtk-vnc"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE="examples python sasl"
# libview is used in examples/gvncviewer -- no need
# TODO: review nsplugin when it will be considered less experimental
RDEPEND=">=x11-libs/gtk+-2.10
>=net-libs/gnutls-1.4
x11-libs/cairo
python? ( >=dev-python/pygtk-2 )
sasl? ( dev-libs/cyrus-sasl )"
DEPEND="${RDEPEND}
>=dev-lang/perl-5
dev-util/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.35"
src_prepare() {
# Fix intltoolize broken file, see upstream #577133
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
|| die "sed failed"
}
src_configure() {
econf \
$(use_with examples) \
$(use_with python) \
$(use_with sasl) \
--with-coroutine=gthread \
--without-libview
}
src_install() {
base_src_install
dodoc AUTHORS ChangeLog NEWS README
}
|