Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/gtk-vnc: ChangeLog gtk-vnc-0.4.3.ebuild gtk-vnc-0.4.2-r1.ebuild gtk-vnc-0.4.1.ebuild
Date: Mon, 21 Feb 2011 18:33:16
Message-Id: 20110221183305.78A5220054@flycatcher.gentoo.org
1 pacho 11/02/21 18:33:05
2
3 Modified: ChangeLog
4 Added: gtk-vnc-0.4.3.ebuild
5 Removed: gtk-vnc-0.4.2-r1.ebuild gtk-vnc-0.4.1.ebuild
6 Log:
7 Version bump with important bugfixes (like crashers), remove old.
8
9 (Portage version: 2.1.9.40/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.58 net-libs/gtk-vnc/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gtk-vnc/ChangeLog?rev=1.58&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gtk-vnc/ChangeLog?rev=1.58&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gtk-vnc/ChangeLog?r1=1.57&r2=1.58
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v
21 retrieving revision 1.57
22 retrieving revision 1.58
23 diff -u -r1.57 -r1.58
24 --- ChangeLog 14 Jan 2011 23:05:37 -0000 1.57
25 +++ ChangeLog 21 Feb 2011 18:33:05 -0000 1.58
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/gtk-vnc
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.57 2011/01/14 23:05:37 cardoe Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.58 2011/02/21 18:33:05 pacho Exp $
31 +
32 +*gtk-vnc-0.4.3 (21 Feb 2011)
33 +
34 + 21 Feb 2011; Pacho Ramos <pacho@g.o> -gtk-vnc-0.4.1.ebuild,
35 + -gtk-vnc-0.4.2-r1.ebuild, +gtk-vnc-0.4.3.ebuild:
36 + Version bump with important bugfixes (like crashers), remove old.
37
38 14 Jan 2011; Doug Goldstein <cardoe@g.o> -gtk-vnc-0.4.2.ebuild:
39 Remove version that introduced a serious memory leak that caused a serious
40
41
42
43 1.1 net-libs/gtk-vnc/gtk-vnc-0.4.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.4.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.4.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gtk-vnc-0.4.3.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.4.3.ebuild,v 1.1 2011/02/21 18:33:05 pacho Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="python? 2:2.4"
56
57 inherit base gnome.org python
58
59 DESCRIPTION="VNC viewer widget for GTK."
60 HOMEPAGE="http://live.gnome.org/gtk-vnc"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
65 IUSE="examples +introspection python sasl"
66
67 # libview is used in examples/gvncviewer -- no need
68 # TODO: review nsplugin when it will be considered less experimental
69
70 RDEPEND=">=dev-libs/glib-2.10:2
71 >=net-libs/gnutls-1.4
72 >=x11-libs/cairo-1.2
73 >=x11-libs/gtk+-2.18:2
74 x11-libs/libX11
75 introspection? ( >=dev-libs/gobject-introspection-0.9.4 )
76 python? ( >=dev-python/pygtk-2:2 )
77 sasl? ( dev-libs/cyrus-sasl )"
78 DEPEND="${RDEPEND}
79 >=dev-lang/perl-5
80 dev-perl/Text-CSV
81 dev-util/pkgconfig
82 sys-devel/gettext
83 >=dev-util/intltool-0.40"
84
85 pkg_setup() {
86 python_set_active_version 2
87 }
88
89 src_prepare() {
90 python_convert_shebangs -r 2 .
91 }
92
93 src_configure() {
94 econf \
95 $(use_with examples) \
96 $(use_enable introspection) \
97 $(use_with python) \
98 $(use_with sasl) \
99 --with-coroutine=gthread \
100 --without-libview \
101 --with-gtk=2.0 \
102 --disable-static
103 }
104
105 src_install() {
106 # bug #328273
107 MAKEOPTS="${MAKEOPTS} -j1" \
108 base_src_install
109 python_clean_installation_image
110 dodoc AUTHORS ChangeLog NEWS README || die
111 }