diff options
| author | Michael Palimaka <kensington@gentoo.org> | 2017-10-10 22:24:07 +1100 |
|---|---|---|
| committer | Michael Palimaka <kensington@gentoo.org> | 2017-10-10 22:26:44 +1100 |
| commit | 7d4f082b6f0c5c0b81d31e02840a8a4b9be6456a (patch) | |
| tree | 0fabec4ede76b27e0a9e4c1f97d008d244c6b4c2 | |
| parent | 9e0b18f0ebd7f74408028ff967a8d7e40f933cc2 (diff) | |
| download | kde-7d4f082b6f0c5c0b81d31e02840a8a4b9be6456a.tar.gz kde-7d4f082b6f0c5c0b81d31e02840a8a4b9be6456a.tar.bz2 kde-7d4f082b6f0c5c0b81d31e02840a8a4b9be6456a.zip | |
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.
| -rw-r--r-- | sys-auth/elogind/elogind-229.9999.ebuild | 85 | ||||
| -rw-r--r-- | sys-auth/elogind/files/elogind-229.9999-docs.patch | 15 | ||||
| -rw-r--r-- | sys-auth/elogind/files/elogind.conf | 7 | ||||
| -rw-r--r-- | sys-auth/elogind/files/elogind.init | 25 | ||||
| -rw-r--r-- | sys-auth/elogind/metadata.xml | 7 |
5 files changed, 0 insertions, 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 3e04b1653f1..00000000000 --- 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 b48e52d73aa..00000000000 --- 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 73d1336aec9..00000000000 --- 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 fc5ac38184a..00000000000 --- 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 95e86c12108..00000000000 --- 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>freedesktop-bugs@gentoo.org</email> - </maintainer> -</pkgmetadata> |
