diff options
author | Matthias Maier <tamiko@gentoo.org> | 2019-07-01 12:08:51 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2019-07-01 12:08:51 -0500 |
commit | 5de19cf299586e09e0369934b32afd90021e9292 (patch) | |
tree | 8695b1e5a49793c9a7747a79aedaa028b5a23e5b /app-emulation | |
parent | app-emulation/virt-manager: revert xdg changes (diff) | |
download | gentoo-5de19cf299586e09e0369934b32afd90021e9292.tar.gz gentoo-5de19cf299586e09e0369934b32afd90021e9292.tar.bz2 gentoo-5de19cf299586e09e0369934b32afd90021e9292.zip |
app-emulation/virt-viewer: version bump to 8.0
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/virt-viewer/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/virt-viewer/virt-viewer-8.0.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app-emulation/virt-viewer/Manifest b/app-emulation/virt-viewer/Manifest index fdf46328d0f6..6b737cd630da 100644 --- a/app-emulation/virt-viewer/Manifest +++ b/app-emulation/virt-viewer/Manifest @@ -1 +1,2 @@ DIST virt-viewer-7.0.tar.gz 924475 BLAKE2B 003efaf88445ec6f523e678459ed1e11562d0cd87fb4811105df9ac1e3129f4a97170c5b783f1d504d157055ae51ac8dc23ffa8f3f79dd6cd55707d962e1d9ad SHA512 e0558c9138877f546add6a3df9721e100cadb6953815be82b2376b0521b82cf14052bdc29c42bb03b198b6e9d129a55d33531a153207d7f29b5c1c3402ebc904 +DIST virt-viewer-8.0.tar.gz 937457 BLAKE2B 107a5f77d0e272665561e22c950416275c939d000fbb522401a954e6836bbd9e9399e768bc4363a1ea3110dd3229fe33738560563271774c3054278b2399cab8 SHA512 73317048949b6c49c28aab4685e3fb6533945b12c47078b522429b3e178423fcec5758c970d5048c8f65fee2b92a629b7e067cffa79c968292c73fd36133b918 diff --git a/app-emulation/virt-viewer/virt-viewer-8.0.ebuild b/app-emulation/virt-viewer/virt-viewer-8.0.ebuild new file mode 100644 index 000000000000..bff9034cfbdb --- /dev/null +++ b/app-emulation/virt-viewer/virt-viewer-8.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +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.35[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) +} |