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-misc/vinagre: vinagre-3.8.3.ebuild ChangeLog vinagre-3.8.1.ebuild
Date: Thu, 01 Aug 2013 19:47:29
Message-Id: 20130801194723.DD2632171C@flycatcher.gentoo.org
1 pacho 13/08/01 19:47:23
2
3 Modified: ChangeLog
4 Added: vinagre-3.8.3.ebuild
5 Removed: vinagre-3.8.1.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.1.13.2/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.93 net-misc/vinagre/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vinagre/ChangeLog?rev=1.93&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vinagre/ChangeLog?rev=1.93&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vinagre/ChangeLog?r1=1.92&r2=1.93
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/vinagre/ChangeLog,v
21 retrieving revision 1.92
22 retrieving revision 1.93
23 diff -u -r1.92 -r1.93
24 --- ChangeLog 14 May 2013 19:53:07 -0000 1.92
25 +++ ChangeLog 1 Aug 2013 19:47:23 -0000 1.93
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-misc/vinagre
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vinagre/ChangeLog,v 1.92 2013/05/14 19:53:07 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vinagre/ChangeLog,v 1.93 2013/08/01 19:47:23 pacho Exp $
31 +
32 +*vinagre-3.8.3 (01 Aug 2013)
33 +
34 + 01 Aug 2013; Pacho Ramos <pacho@g.o> +vinagre-3.8.3.ebuild,
35 + -vinagre-3.8.1.ebuild:
36 + Version bump, drop old
37
38 *vinagre-3.8.2 (14 May 2013)
39
40
41
42
43 1.1 net-misc/vinagre/vinagre-3.8.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vinagre/vinagre-3.8.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vinagre/vinagre-3.8.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: vinagre-3.8.3.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/vinagre/vinagre-3.8.3.ebuild,v 1.1 2013/08/01 19:47:23 pacho Exp $
53
54 EAPI="5"
55 GCONF_DEBUG="no"
56 VALA_MIN_API_VERSION=0.18
57
58 inherit gnome2 vala
59
60 DESCRIPTION="VNC client for the GNOME desktop"
61 HOMEPAGE="https://wiki.gnome.org/Vinagre"
62
63 LICENSE="GPL-3+"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="avahi rdp +ssh spice +telepathy"
67
68 # cairo used in vinagre-tab
69 # gdk-pixbuf used all over the place
70 RDEPEND="
71 >=dev-libs/glib-2.28.0:2
72 >=x11-libs/gtk+-3.0.3:3
73 app-crypt/libsecret
74 >=dev-libs/libxml2-2.6.31:2
75 >=net-libs/gtk-vnc-0.4.3[gtk3]
76 x11-libs/cairo:=
77 x11-libs/gdk-pixbuf:2
78 x11-themes/gnome-icon-theme
79
80 avahi? ( >=net-dns/avahi-0.6.26[dbus,gtk3] )
81 rdp? ( net-misc/rdesktop )
82 ssh? ( >=x11-libs/vte-0.20:2.90 )
83 spice? ( >=net-misc/spice-gtk-0.5[gtk3] )
84 telepathy? (
85 dev-libs/dbus-glib
86 >=net-libs/telepathy-glib-0.11.6 )
87 "
88 DEPEND="${RDEPEND}
89 >=dev-lang/perl-5
90 >=dev-util/intltool-0.50
91 >=sys-devel/gettext-0.17
92 virtual/pkgconfig
93 $(vala_depend)
94 "
95
96 src_prepare() {
97 gnome2_src_prepare
98 vala_src_prepare
99 }
100
101 src_configure() {
102 DOCS="AUTHORS ChangeLog ChangeLog.pre-git NEWS README"
103 gnome2_src_configure \
104 ITSTOOL=$(type -P true) \
105 $(use_with avahi) \
106 $(use_enable rdp) \
107 $(use_enable ssh) \
108 $(use_enable spice) \
109 $(use_with telepathy)
110 }
111
112 src_install() {
113 gnome2_src_install
114
115 # Remove its own installation of DOCS that go to $PN instead of $P and aren't ecompressed
116 rm -rf "${ED}"/usr/share/doc/vinagre || die
117 }