diff options
author | Matthias Maier <tamiko@gentoo.org> | 2016-06-14 13:45:32 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2016-06-14 14:02:29 -0500 |
commit | 8a280a29f985b5caa977ef4c7624fca8f3bdda07 (patch) | |
tree | de281636e79558671c0f5329e5907a8c839a53dc /app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild | |
parent | net-misc/spice-gtk: update metadata.xml (diff) | |
download | gentoo-8a280a29f985b5caa977ef4c7624fca8f3bdda07.tar.gz gentoo-8a280a29f985b5caa977ef4c7624fca8f3bdda07.tar.bz2 gentoo-8a280a29f985b5caa977ef4c7624fca8f3bdda07.zip |
app-emulation/spice-vdagent: bump to 0.17.0
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild')
-rw-r--r-- | app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild new file mode 100644 index 000000000000..07947b050843 --- /dev/null +++ b/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit linux-info + +DESCRIPTION="SPICE VD Linux Guest Agent" +HOMEPAGE="http://spice-space.org/" +SRC_URI="http://spice-space.org/download/releases/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+consolekit selinux systemd" + +CDEPEND="media-libs/alsa-lib + x11-libs/libXfixes + x11-libs/libXrandr + x11-libs/libX11 + x11-libs/libXinerama + >=x11-libs/libpciaccess-0.10 + >=app-emulation/spice-protocol-0.12.8 + consolekit? ( sys-auth/consolekit sys-apps/dbus ) + systemd? ( sys-apps/systemd )" +DEPEND="virtual/pkgconfig + ${CDEPEND}" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-vdagent )" + +CONFIG_CHECK="~INPUT_UINPUT ~VIRTIO_CONSOLE" +ERROR_INPUT_UINPUT="User level input support is required" +ERROR_VIRTIO_CONSOLE="VirtIO console/serial device support is required" + +src_configure() { + local opt="--with-session-info=none --with-init-script=systemd" + + use systemd && opt+=" --with-session-info=systemd" + use consolekit && opt+=" --with-session-info=console-kit" + + econf \ + --localstatedir=/var \ + ${opt} +} + +src_install() { + default + + rm -rf "${D}"/etc/{rc,tmpfiles}.d + + keepdir /var/log/spice-vdagentd + + newinitd "${FILESDIR}/${PN}.initd-3" "${PN}" + newconfd "${FILESDIR}/${PN}.confd-2" "${PN}" +} |