Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/vino: ChangeLog vino-2.24.1.ebuild
Date: Mon, 20 Oct 2008 19:10:11
Message-Id: E1Ks08m-0003V5-1A@stork.gentoo.org
1 eva 08/10/20 19:10:08
2
3 Modified: ChangeLog
4 Added: vino-2.24.1.ebuild
5 Log:
6 New version for GNOME 2.24. Enhancements for new gnome-session and bug fixes.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.110 net-misc/vino/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vino/ChangeLog?rev=1.110&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vino/ChangeLog?rev=1.110&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vino/ChangeLog?r1=1.109&r2=1.110
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/vino/ChangeLog,v
19 retrieving revision 1.109
20 retrieving revision 1.110
21 diff -u -r1.109 -r1.110
22 --- ChangeLog 25 Sep 2008 14:50:50 -0000 1.109
23 +++ ChangeLog 20 Oct 2008 19:10:07 -0000 1.110
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/vino
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/ChangeLog,v 1.109 2008/09/25 14:50:50 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/ChangeLog,v 1.110 2008/10/20 19:10:07 eva Exp $
29 +
30 +*vino-2.24.1 (20 Oct 2008)
31 +
32 + 20 Oct 2008; Gilles Dartiguelongue <eva@g.o> +vino-2.24.1.ebuild:
33 + New version for GNOME 2.24. Enhancements for new gnome-session and bug
34 + fixes.
35
36 25 Sep 2008; Jeroen Roovers <jer@g.o> vino-2.22.2.ebuild:
37 Stable for HPPA (bug #236971).
38
39
40
41 1.1 net-misc/vino/vino-2.24.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vino/vino-2.24.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/vino/vino-2.24.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: vino-2.24.1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/vino/vino-2.24.1.ebuild,v 1.1 2008/10/20 19:10:07 eva Exp $
51
52 inherit eutils gnome2
53
54 DESCRIPTION="An integrated VNC server for GNOME"
55 HOMEPAGE="http://www.gnome.org/"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE="avahi crypt gnutls ipv6 jpeg gnome-keyring libnotify zlib"
61
62 # FIXME: add support for libunique
63 RDEPEND=">=dev-libs/glib-2.17
64 >=x11-libs/gtk+-2.13.1
65 >=gnome-base/libgnomeui-2
66 >=gnome-base/gconf-2
67 >=gnome-base/libglade-2
68 >=sys-apps/dbus-1.2.3
69 dev-libs/dbus-glib
70 x11-libs/libXext
71 x11-libs/libXtst
72 libnotify? ( >=x11-libs/libnotify-0.4.4 )
73 gnome-keyring? ( >=gnome-base/gnome-keyring-2.20 )
74 avahi? ( >=net-dns/avahi-0.6 )
75 crypt? ( >=dev-libs/libgcrypt-1.1.90 )
76 gnutls? ( >=net-libs/gnutls-1 )
77 jpeg? ( media-libs/jpeg )
78 zlib? ( sys-libs/zlib )"
79 DEPEND="${RDEPEND}
80 >=dev-util/pkgconfig-0.9
81 >=dev-util/intltool-0.35"
82
83 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
84
85 pkg_setup() {
86 if use avahi && ! built_with_use net-dns/avahi dbus; then
87 einfo "avahi support in vino requires USE=dbus in avahi"
88 die "Please rebuild net-dns/avahi with USE=dbus"
89 fi
90
91 G2CONF="${G2CONF}
92 $(use_enable avahi)
93 $(use_enable crypt gcrypt)
94 $(use_enable gnutls)
95 $(use_enable ipv6)
96 $(use_with jpeg)
97 $(use_enable gnome-keyring)
98 $(use_enable libnotify)
99 $(use_with zlib)
100 $(use_with zlib libz)
101 --disable-libunique"
102 }