app-emulation/qt-virt-manager: Introduce qt-virt-manager, bug #598932
authorMatthias Maier <tamiko@gentoo.org>
Tue, 14 Mar 2017 16:59:15 +0000 (11:59 -0500)
committerMatthias Maier <tamiko@gentoo.org>
Tue, 14 Mar 2017 17:06:53 +0000 (12:06 -0500)
Initial ebuild based on work by Michal Privoznik. Thanks a lot!

Package-Manager: Portage-2.3.3, Repoman-2.3.2

app-emulation/qt-virt-manager/metadata.xml [new file with mode: 0644]
app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild [new file with mode: 0644]

diff --git a/app-emulation/qt-virt-manager/metadata.xml b/app-emulation/qt-virt-manager/metadata.xml
new file mode 100644 (file)
index 0000000..ee309bd
--- /dev/null
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="project">
+               <email>virtualization@gentoo.org</email>
+               <name>Gentoo Virtualization Project</name>
+       </maintainer>
+       <use>
+               <flag name="smartcard">Enable smartcard remoting using <pkg>app-emulation/libcacard</pkg></flag>
+       </use>
+</pkgmetadata>
diff --git a/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild b/app-emulation/qt-virt-manager/qt-virt-manager-9999.ebuild
new file mode 100644 (file)
index 0000000..11f0c5f
--- /dev/null
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+if [[ ${PV} == "9999" ]] ; then
+       EGIT_REPO_URI="https://github.com/F1ash/qt-virt-manager.git"
+       EGIT_BRANCH="master"
+       inherit git-r3
+       SRC_URI=""
+       KEYWORDS=""
+else
+       SRC_URI="https://github.com/F1ash/qt-virt-manager/archive/${P}.tar.gz"
+       KEYWORDS=""
+fi
+
+DESCRIPTION="A GUI application for managing virtual machines"
+HOMEPAGE="https://github.com/F1ash/qt-virt-manager"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="smartcard"
+
+DEPEND="
+       dev-qt/qtcore:5
+       dev-qt/qtgui:5
+       dev-qt/qtmultimedia:5
+       dev-qt/qtsvg:5
+       dev-qt/qtwidgets:5
+       dev-qt/qtxml:5
+       dev-qt/qtnetwork:5
+       >=x11-libs/qtermwidget-0.7.0
+       smartcard? ( >=app-emulation/libcacard-2.5.0 )
+       dev-libs/glib
+       net-misc/spice-gtk
+       net-libs/libvncserver
+       app-emulation/libvirt
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+       local mycmakeargs=(
+               -DBUILD_QT_VERSION=5
+               -DWITH_LIBCACARD="$(usex smartcard ON OFF)"
+       )
+       cmake-utils_src_configure
+}