summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-libs/gtk-vnc/ChangeLog6
-rw-r--r--net-libs/gtk-vnc/gtk-vnc-0.4.1.ebuild12
2 files changed, 13 insertions, 5 deletions
diff --git a/net-libs/gtk-vnc/ChangeLog b/net-libs/gtk-vnc/ChangeLog
index 003c6bcd5887..8c9c279ac8cc 100644
--- a/net-libs/gtk-vnc/ChangeLog
+++ b/net-libs/gtk-vnc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/gtk-vnc
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.49 2010/07/30 15:17:01 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.50 2010/08/28 21:45:53 eva Exp $
+
+ 28 Aug 2010; Gilles Dartiguelongue <eva@gentoo.org> gtk-vnc-0.4.1.ebuild:
+ Disable automagic introspection and automagic gtk-3 support, closes:
+ #329733.
30 Jul 2010; Diego E. Pettenò <flameeyes@gentoo.org>
gtk-vnc-0.4.1.ebuild:
diff --git a/net-libs/gtk-vnc/gtk-vnc-0.4.1.ebuild b/net-libs/gtk-vnc/gtk-vnc-0.4.1.ebuild
index 40c8f6fa1863..63fe8521c183 100644
--- a/net-libs/gtk-vnc/gtk-vnc-0.4.1.ebuild
+++ b/net-libs/gtk-vnc/gtk-vnc-0.4.1.ebuild
@@ -1,6 +1,6 @@
# 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.4.1.ebuild,v 1.3 2010/07/30 15:17:01 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.4.1.ebuild,v 1.4 2010/08/28 21:45:53 eva Exp $
EAPI="2"
@@ -17,9 +17,10 @@ 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.18
+RDEPEND=">=x11-libs/gtk+-2.18:2
>=net-libs/gnutls-1.4
x11-libs/cairo
+ x11-libs/libX11
python? ( >=dev-python/pygtk-2 )
sasl? ( dev-libs/cyrus-sasl )"
DEPEND="${RDEPEND}
@@ -34,12 +35,15 @@ src_configure() {
$(use_with python) \
$(use_with sasl) \
--with-coroutine=gthread \
- --without-libview
+ --without-libview \
+ --with-gtk=2.0 \
+ --disable-introspection \
+ --disable-static
}
src_install() {
# bug #328273
MAKEOPTS="${MAKEOPTS} -j1" \
base_src_install
- dodoc AUTHORS ChangeLog NEWS README
+ dodoc AUTHORS ChangeLog NEWS README || die
}