net-misc/vinagre: Version bump
authorPacho Ramos <pacho@gentoo.org>
Tue, 28 Jun 2016 20:26:44 +0000 (22:26 +0200)
committerPacho Ramos <pacho@gentoo.org>
Tue, 28 Jun 2016 20:30:06 +0000 (22:30 +0200)
Package-Manager: portage-2.3.0_rc1

net-misc/vinagre/Manifest
net-misc/vinagre/vinagre-3.20.2.ebuild [new file with mode: 0644]

index be4cc6b488537b781d7196032313654f740209ef..2852cb90b82c2a43a1111f37f26f11ae8e9ddd72 100644 (file)
@@ -1 +1,2 @@
 DIST vinagre-3.18.2.tar.xz 819820 SHA256 65b81299de0b75a9433e5654d5314f347895d5efb7acd3b111e5e8c03f48fbc4 SHA512 5d72cc5fc99a6400ef0135e65bde9bc3687257e22176f18606e8780d7a20860fa226a25e0c2bf2ffa85b58d25fa5c262ab6db1751c6f1a6a6e490a373e19a2b9 WHIRLPOOL 1d84691b203744b16fe18bf9e370554f5459f5ff2fe2d4020c79bf64c833a6c8d565a5cc843fdf398239dae17d028fb3c156f25741ae25e3b8b7de7bbdd27d4c
+DIST vinagre-3.20.2.tar.xz 831892 SHA256 5fc78ef9ab9ee7d4e3c50d38d82d9bcbd915191bcf0349d55a2fd56eaa87eaa0 SHA512 4f29a2c2474ef98e929c37da9dd5a5eb2f5d5c4eb5f0acc3b285093bde0756f567fda4507534f70fe949b06d83be9387e7ee434beac72d56f29da3505ad1a9b8 WHIRLPOOL 1fc51132b351bc6ded71cfaafc28b5e481113159739f79707ac05eb87077db11680dce2134555c53dd6fa7a8c6262196b23106163a39eebb114499292c73c942
diff --git a/net-misc/vinagre/vinagre-3.20.2.ebuild b/net-misc/vinagre/vinagre-3.20.2.ebuild
new file mode 100644 (file)
index 0000000..2ac768a
--- /dev/null
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2 linux-info vala
+
+DESCRIPTION="VNC client for the GNOME desktop"
+HOMEPAGE="https://wiki.gnome.org/Apps/Vinagre"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="rdp +ssh spice +telepathy zeroconf"
+
+# cairo used in vinagre-tab
+# gdk-pixbuf used all over the place
+RDEPEND="
+       >=dev-libs/glib-2.32.0:2
+       >=x11-libs/gtk+-3.9.6:3
+       app-crypt/libsecret
+       >=dev-libs/libxml2-2.6.31:2
+       >=net-libs/gtk-vnc-0.4.3[gtk3]
+       x11-libs/cairo:=
+       x11-libs/gdk-pixbuf:2
+       x11-themes/hicolor-icon-theme
+
+       rdp? ( net-misc/freerdp )
+       ssh? ( >=x11-libs/vte-0.20:2.91 )
+       spice? (
+               app-emulation/spice-protocol
+               >=net-misc/spice-gtk-0.5[gtk3] )
+       telepathy? (
+               dev-libs/dbus-glib
+               >=net-libs/telepathy-glib-0.11.6 )
+       zeroconf? ( >=net-dns/avahi-0.6.26[dbus,gtk3] )
+"
+DEPEND="${RDEPEND}
+       >=dev-lang/perl-5
+       dev-libs/appstream-glib
+       >=dev-util/intltool-0.50
+       dev-util/itstool
+       >=sys-devel/gettext-0.17
+       virtual/pkgconfig
+       $(vala_depend)
+"
+
+pkg_pretend() {
+       # Needed for VNC ssh tunnel, bug #518574
+       CONFIG_CHECK="~IPV6"
+       check_extra_config
+}
+
+src_prepare() {
+       vala_src_prepare
+       gnome2_src_prepare
+}
+
+src_configure() {
+       gnome2_src_configure \
+               $(use_enable rdp) \
+               $(use_enable ssh) \
+               $(use_enable spice) \
+               $(use_with telepathy) \
+               $(use_with zeroconf avahi)
+}