summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@gentoo.org>2011-01-14 23:05:37 +0000
committerDoug Goldstein <cardoe@gentoo.org>2011-01-14 23:05:37 +0000
commit5795916fd65af88d67a89ce44d5f6376ab93045c (patch)
treeb5a682783f8388a0eb329ccbd662a361fbd64a86 /net-libs/gtk-vnc
parentFix several more upstream discovered crashers and interaction bugs. (diff)
downloadgentoo-2-5795916fd65af88d67a89ce44d5f6376ab93045c.tar.gz
gentoo-2-5795916fd65af88d67a89ce44d5f6376ab93045c.tar.bz2
gentoo-2-5795916fd65af88d67a89ce44d5f6376ab93045c.zip
Remove version that introduced a serious memory leak that caused a serious performance regression
(Portage version: 2.1.9.31/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/gtk-vnc')
-rw-r--r--net-libs/gtk-vnc/ChangeLog6
-rw-r--r--net-libs/gtk-vnc/gtk-vnc-0.4.2.ebuild58
2 files changed, 5 insertions, 59 deletions
diff --git a/net-libs/gtk-vnc/ChangeLog b/net-libs/gtk-vnc/ChangeLog
index 429d8d351c71..79b541799803 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-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.56 2011/01/14 23:03:42 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.57 2011/01/14 23:05:37 cardoe Exp $
+
+ 14 Jan 2011; Doug Goldstein <cardoe@gentoo.org> -gtk-vnc-0.4.2.ebuild:
+ Remove version that introduced a serious memory leak that caused a serious
+ performance regression
*gtk-vnc-0.4.2-r2 (14 Jan 2011)
diff --git a/net-libs/gtk-vnc/gtk-vnc-0.4.2.ebuild b/net-libs/gtk-vnc/gtk-vnc-0.4.2.ebuild
deleted file mode 100644
index e314593c67ec..000000000000
--- a/net-libs/gtk-vnc/gtk-vnc-0.4.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# 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.2.ebuild,v 1.2 2010/11/20 23:09:02 eva Exp $
-
-EAPI="2"
-PYTHON_DEPEND="python? 2:2.4"
-
-inherit base gnome.org python
-
-DESCRIPTION="VNC viewer widget for GTK."
-HOMEPAGE="http://live.gnome.org/gtk-vnc"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="examples +introspection python sasl"
-
-# libview is used in examples/gvncviewer -- no need
-# TODO: review nsplugin when it will be considered less experimental
-
-RDEPEND=">=dev-libs/glib-2.10:2
- >=net-libs/gnutls-1.4
- >=x11-libs/cairo-1.2
- >=x11-libs/gtk+-2.18:2
- x11-libs/libX11
- introspection? ( >=dev-libs/gobject-introspection-0.9.4 )
- python? ( >=dev-python/pygtk-2:2 )
- sasl? ( dev-libs/cyrus-sasl )"
-DEPEND="${RDEPEND}
- >=dev-lang/perl-5
- dev-perl/Text-CSV
- dev-util/pkgconfig
- sys-devel/gettext
- >=dev-util/intltool-0.40"
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_configure() {
- econf \
- $(use_with examples) \
- $(use_enable introspection) \
- $(use_with python) \
- $(use_with sasl) \
- --with-coroutine=gthread \
- --without-libview \
- --with-gtk=2.0 \
- --disable-static
-}
-
-src_install() {
- # bug #328273
- MAKEOPTS="${MAKEOPTS} -j1" \
- base_src_install
- python_clean_installation_image
- dodoc AUTHORS ChangeLog NEWS README || die
-}