diff options
author | Matthias Maier <tamiko@gentoo.org> | 2016-10-09 21:47:24 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2016-10-09 21:47:24 -0500 |
commit | be5dc77103cc1f8277bbc319defc519810fb4b12 (patch) | |
tree | 5fb8878c0013320ac6d74b5ea56b67023a9f1aef /app-emulation | |
parent | sys-fs/zfs: version bump 0.6.5.8 (diff) | |
download | gentoo-be5dc77103cc1f8277bbc319defc519810fb4b12.tar.gz gentoo-be5dc77103cc1f8277bbc319defc519810fb4b12.tar.bz2 gentoo-be5dc77103cc1f8277bbc319defc519810fb4b12.zip |
app-emulation/virt-viewer: version bump to 4.0
Thanks to Chris Mayo for the updated ebuild!
Package-Manager: portage-2.3.0
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/virt-viewer/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/virt-viewer/virt-viewer-4.0.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/app-emulation/virt-viewer/Manifest b/app-emulation/virt-viewer/Manifest index de92e7d4b0bd..fefd67c1bbd5 100644 --- a/app-emulation/virt-viewer/Manifest +++ b/app-emulation/virt-viewer/Manifest @@ -1 +1,2 @@ DIST virt-viewer-3.1.tar.gz 835147 SHA256 be4e49470b650fc22513c2c01f2e13e30ee2d494d0d7b319b6f414ca781078c7 SHA512 72deb289c32a315fc4e1d73148d0b0a366cf929ff9fb389b62d750d317d02a43e2bf3bc170f43d9f37a184d8c7754b3e282de404fbcfa59ff278a87e4aa0acaf WHIRLPOOL 90f47dfc79f1529272fae8fbaf7553c369a9c2161b63071037fcb5279050a5ff9391800922e2a43f5c37e133b13f6736b59f3574531e22ce7dd27d2de9c714cf +DIST virt-viewer-4.0.tar.gz 897593 SHA256 1c427b0ea104539342519334735e6f667d5784c42a5aafc253b580875d88fa1f SHA512 7d1e470a159c8784dff6c4fb1f9228689f76ddbdae314bd57f86c6dc975d1d50590732640768b7e08d6a3bbc02eefbde090cd8f05c97151cd8abdc7ae97e66ea WHIRLPOOL e07b472e8a562c608d69cc211c34c6558ba08694f92ea6250f23c719a3a32f82d3f8b20d4fa5fd992497a8402bc40b6abdde80345ca1ec4e539826807cdd81ec diff --git a/app-emulation/virt-viewer/virt-viewer-4.0.ebuild b/app-emulation/virt-viewer/virt-viewer-4.0.ebuild new file mode 100644 index 000000000000..98564384f3ff --- /dev/null +++ b/app-emulation/virt-viewer/virt-viewer-4.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit gnome2 + +DESCRIPTION="Graphical console client for connecting to virtual machines" +HOMEPAGE="http://virt-manager.org/" +SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="sasl +spice +vnc" + +RDEPEND=">=app-emulation/libvirt-0.10.0[sasl?] + app-emulation/libvirt-glib + >=dev-libs/libxml2-2.6 + x11-libs/gtk+:3 + spice? ( >=net-misc/spice-gtk-0.31[sasl?,gtk3] ) + vnc? ( >=net-libs/gtk-vnc-0.5.0[sasl?,gtk3] )" +DEPEND="${RDEPEND} + dev-lang/perl + >=dev-util/intltool-0.35.0 + virtual/pkgconfig + spice? ( >=app-emulation/spice-protocol-0.12.10 )" + +REQUIRED_USE="|| ( spice vnc )" + +src_configure() { + gnome2_src_configure \ + --disable-update-mimedb \ + --without-ovirt \ + $(use_with vnc gtk-vnc) \ + $(use_with spice spice-gtk) +} |