commit:     7d4f082b6f0c5c0b81d31e02840a8a4b9be6456a
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 10 11:24:07 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Oct 10 11:26:44 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=7d4f082b

sys-auth/elogind: remove live ebuild

The live ebuild was branch specific to track some upstream changes before
release. Since there's newer versions in the main tree now, this is obsolete.

 sys-auth/elogind/elogind-229.9999.ebuild           | 85 ----------------------
 sys-auth/elogind/files/elogind-229.9999-docs.patch | 15 ----
 sys-auth/elogind/files/elogind.conf                |  7 --
 sys-auth/elogind/files/elogind.init                | 25 -------
 sys-auth/elogind/metadata.xml                      |  7 --
 5 files changed, 139 deletions(-)

diff --git a/sys-auth/elogind/elogind-229.9999.ebuild 
b/sys-auth/elogind/elogind-229.9999.ebuild
deleted file mode 100644
index 3e04b1653f..0000000000
--- a/sys-auth/elogind/elogind-229.9999.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools git-r3 linux-info pam udev
-
-DESCRIPTION="The systemd project's logind, extracted to a standalone package"
-HOMEPAGE="https://github.com/elogind/elogind";
-EGIT_REPO_URI="https://github.com/elogind/elogind.git";
-EGIT_BRANCH="v229-stable"
-
-LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
-SLOT="0"
-KEYWORDS=""
-IUSE="acl debug pam policykit selinux"
-
-RDEPEND="
-       sys-apps/util-linux
-       sys-libs/libcap
-       virtual/libudev:=
-       acl? ( sys-apps/acl )
-       pam? ( virtual/pam )
-       selinux? ( sys-libs/libselinux )
-       !sys-apps/systemd
-"
-DEPEND="${RDEPEND}
-       app-text/docbook-xml-dtd:4.2
-       app-text/docbook-xml-dtd:4.5
-       app-text/docbook-xsl-stylesheets
-       dev-util/gperf
-       dev-util/intltool
-       sys-devel/libtool
-       virtual/pkgconfig
-"
-PDEPEND="
-       sys-apps/dbus
-       policykit? ( sys-auth/polkit )
-"
-
-PATCHES=( "${FILESDIR}/${P}-docs.patch" )
-
-pkg_setup() {
-       local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SECURITY_SMACK
-               ~SIGNALFD ~TIMERFD"
-
-       if use kernel_linux; then
-               linux-info_pkg_setup
-       fi
-}
-
-src_prepare() {
-       default
-       eautoreconf # Makefile.am patched by "${FILESDIR}/${P}-docs.patch"
-}
-
-src_configure() {
-       econf \
-               --with-pamlibdir=$(getpam_mod_dir) \
-               --with-udevrulesdir="$(get_udevdir)"/rules.d \
-               --libdir="${EPREFIX}"/usr/$(get_libdir) \
-               --with-rootlibdir="${EPREFIX}"/$(get_libdir) \
-               --enable-smack \
-               --disable-kdbus \
-               $(use_enable debug debug elogind) \
-               $(use_enable acl) \
-               $(use_enable pam) \
-               $(use_enable selinux)
-}
-
-src_install() {
-       default
-       find "${D}" -name '*.la' -delete || die
-
-       newinitd "${FILESDIR}"/${PN}.init ${PN}
-       newconfd "${FILESDIR}"/${PN}.conf ${PN}
-}
-
-pkg_postinst() {
-       if [ "$(rc-config list default | grep elogind)" = "" ]; then
-               ewarn "To enable the elogind daemon, elogind must be"
-               ewarn "added to the default runlevel:"
-               ewarn "# rc-update add elogind default"
-       fi
-}

diff --git a/sys-auth/elogind/files/elogind-229.9999-docs.patch 
b/sys-auth/elogind/files/elogind-229.9999-docs.patch
deleted file mode 100644
index b48e52d73a..0000000000
--- a/sys-auth/elogind/files/elogind-229.9999-docs.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -191,12 +191,6 @@
- rootbin_PROGRAMS =
- pkglibexec_PROGRAMS =
- 
--dist_doc_DATA = \
--      README \
--      NEWS \
--      LICENSE.LGPL2.1 \
--      LICENSE.GPL2
--
- @INTLTOOL_POLICY_RULE@
- 
- # 
------------------------------------------------------------------------------

diff --git a/sys-auth/elogind/files/elogind.conf 
b/sys-auth/elogind/files/elogind.conf
deleted file mode 100644
index 73d1336aec..0000000000
--- a/sys-auth/elogind/files/elogind.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-# /etc/conf.d/elogind: config file for /etc/init.d/elogind
-
-# this is the elogind executable
-ELOGIND_EXEC="/usr/libexec/elogind/elogind"
-
-# this is where elogind will store its pid file
-ELOGIND_PIDFILE="/var/run/elogind.pid"

diff --git a/sys-auth/elogind/files/elogind.init 
b/sys-auth/elogind/files/elogind.init
deleted file mode 100644
index fc5ac38184..0000000000
--- a/sys-auth/elogind/files/elogind.init
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-       need dbus
-
-       # Make sure elogind is up before xdm starts any dm
-       before xdm
-}
-
-start() {
-       ebegin "Starting elogind"
-
-       start-stop-daemon --start --quiet --background \
-               --make-pidfile --pidfile "${ELOGIND_PIDFILE}" \
-               --exec "${ELOGIND_EXEC}"
-       eend $?
-}
-
-stop() {
-       ebegin "Stopping elogind"
-       start-stop-daemon --stop --quiet --pidfile "${ELOGIND_PIDFILE}"
-       eend $?
-}

diff --git a/sys-auth/elogind/metadata.xml b/sys-auth/elogind/metadata.xml
deleted file mode 100644
index 95e86c1210..0000000000
--- a/sys-auth/elogind/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="project">
-               <email>[email protected]</email>
-       </maintainer>
-</pkgmetadata>

Reply via email to