commit: 9f5c4dff93766243f9186ce7cf680e0e2edcf745
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 8 21:37:07 2015 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Mon Jun 8 21:37:07 2015 +0000
URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=9f5c4dff
net-libs/phodav: moved to gentoo-x86
net-libs/phodav/files/70-spice-webdavd.rules | 1 -
net-libs/phodav/files/spice-webdavd.initd | 17 ---------
net-libs/phodav/metadata.xml | 9 -----
net-libs/phodav/phodav-2.0.ebuild | 56 ----------------------------
4 files changed, 83 deletions(-)
diff --git a/net-libs/phodav/files/70-spice-webdavd.rules
b/net-libs/phodav/files/70-spice-webdavd.rules
deleted file mode 100644
index 80c3b02..0000000
--- a/net-libs/phodav/files/70-spice-webdavd.rules
+++ /dev/null
@@ -1 +0,0 @@
-ACTION=="add", SUBSYSTEM=="virtio-ports",
ENV{DEVLINKS}=="/dev/virtio-ports/org.spice-space.webdav.0", RUN+="/bin/env
/etc/init.d/spice-webdavd --quiet start"
diff --git a/net-libs/phodav/files/spice-webdavd.initd
b/net-libs/phodav/files/spice-webdavd.initd
deleted file mode 100644
index 9f83542..0000000
--- a/net-libs/phodav/files/spice-webdavd.initd
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/phodav/files/spice-webdavd.initd,v
1.1 2014/06/13 12:05:09 dev-zero Exp $
-
-description="Spice guest utility for file sharing via WebDAV"
-
-command="/usr/sbin/spice-webdavd"
-command_args="--port 9843"
-
-pidfile="/run/${SVCNAME}.pid"
-command_background="yes"
-
-depend() {
- need dbus
- use avahi
-}
diff --git a/net-libs/phodav/metadata.xml b/net-libs/phodav/metadata.xml
deleted file mode 100644
index a8b26c1..0000000
--- a/net-libs/phodav/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <herd>gnome</herd>
- <herd>virtualization</herd>
- <use>
- <flag name='spice'>Install the spice-webdavd guest agent</flag>
- </use>
-</pkgmetadata>
diff --git a/net-libs/phodav/phodav-2.0.ebuild
b/net-libs/phodav/phodav-2.0.ebuild
deleted file mode 100644
index 8c9b5d8..0000000
--- a/net-libs/phodav/phodav-2.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2 systemd udev
-
-DESCRIPTION="WebDav server implementation using libsoup"
-HOMEPAGE="https://wiki.gnome.org/phodav"
-
-LICENSE="LGPL-2.1+"
-SLOT="2.0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
-IUSE="spice systemd zeroconf"
-
-RDEPEND="
- dev-libs/glib:2
- >=net-libs/libsoup-2.48:2.4
- dev-libs/libxml2
- zeroconf? ( net-dns/avahi )
-"
-DEPEND="${RDEPEND}
- >=dev-util/gtk-doc-am-1.10
- >=dev-util/intltool-0.40.0
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_configure() {
- gnome2_src_configure \
- --disable-static \
- $(use_with zeroconf avahi) \
- --with-udevdir=$(get_udevdir) \
- --with-systemdsystemunitdir=$(systemd_get_unitdir)
-
- if ! use zeroconf ; then
- sed -i -e 's|avahi-daemon.service||' data/spice-webdavd.service
|| die
- fi
-}
-
-src_install() {
- gnome2_src_install
-
- if use spice ; then
- if ! use systemd ; then
- newinitd "${FILESDIR}/spice-webdavd.initd" spice-webdavd
- udev_dorules "${FILESDIR}/70-spice-webdavd.rules"
- rm -r "${D}$(systemd_get_unitdir)" || die
- fi
- else
- rm -r "${D}"{/usr/sbin,$(get_udevdir),$(systemd_get_unitdir)}
|| die
- fi
-}