commit:     6aa81a1b631fe219ac16078bb49ea46568260122
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 31 10:21:46 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Jan 31 10:22:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aa81a1b

sys-auth/elogind: Drop old

Package-Manager: Portage-2.3.21, Repoman-2.3.6

 sys-auth/elogind/Manifest                       |   1 -
 sys-auth/elogind/elogind-234.4-r1.ebuild        | 108 ------------------------
 sys-auth/elogind/files/elogind-226.4-docs.patch |  15 ----
 3 files changed, 124 deletions(-)

diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
index df1ad770fda..25d08cb3a62 100644
--- a/sys-auth/elogind/Manifest
+++ b/sys-auth/elogind/Manifest
@@ -1,2 +1 @@
-DIST elogind-234.4.tar.gz 973370 BLAKE2B 
4fe00d2e22e3f94dfb6385fe61825be72ad2200f1368807ea816a971104cf384e3508ecf2877fa08394c6d0259874b2ceb7c4014f9e861dcd3b19c01bcd04602
 SHA512 
2df4fa318074d4f5e5dbba353cf817068a2703ffed40cdeae4cba2dea4ee143d1c5fc076b19419f1c4299392088c2c14b430d8aa1ded03b62117311802305d5e
 DIST elogind-235.2.tar.gz 975652 BLAKE2B 
c568b5eec89da14f55211cf4405d96b4bb1ea274d1237739a92c4f3585a6181a3e17dc7ed2af5161c649cae2149b3bd25f4212cf5a304383b254e39d7aa0b378
 SHA512 
6fa9194e8c21fa3d3caf6f9499f772dbfe38b9d40d8a0fe43ee32ad4b2acd672a78798d00694d1e0d6107625f4f3f06b71e0a5466ed4be446d670f9bcd961313

diff --git a/sys-auth/elogind/elogind-234.4-r1.ebuild 
b/sys-auth/elogind/elogind-234.4-r1.ebuild
deleted file mode 100644
index c56a5360fee..00000000000
--- a/sys-auth/elogind/elogind-234.4-r1.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools linux-info pam udev xdg-utils
-
-DESCRIPTION="The systemd project's logind, extracted to a standalone package"
-HOMEPAGE="https://github.com/elogind/elogind";
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="acl debug pam policykit selinux"
-
-COMMON_DEPEND="
-       sys-apps/util-linux
-       sys-libs/libcap
-       virtual/libudev:=
-       acl? ( sys-apps/acl )
-       pam? ( virtual/pam )
-       selinux? ( sys-libs/libselinux )
-"
-DEPEND="${COMMON_DEPEND}
-       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
-"
-RDEPEND="${COMMON_DEPEND}
-       !sys-apps/systemd
-"
-PDEPEND="
-       sys-apps/dbus
-       policykit? ( sys-auth/polkit )
-"
-
-PATCHES=( "${FILESDIR}/${PN}-226.4-docs.patch" )
-
-pkg_setup() {
-       local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SIGNALFD ~TIMERFD"
-
-       if use kernel_linux; then
-               linux-info_pkg_setup
-       fi
-}
-
-src_prepare() {
-       default
-       eautoreconf # Makefile.am patched by "${FILESDIR}/${P}-docs.patch"
-       xdg_environment_reset
-}
-
-src_configure() {
-       econf \
-               --with-pamlibdir=$(getpam_mod_dir) \
-               --with-udevrulesdir="$(get_udevdir)"/rules.d \
-               --libdir="${EPREFIX}"/usr/$(get_libdir) \
-               --with-rootlibdir="${EPREFIX}"/$(get_libdir) \
-               --with-rootprefix="${EPREFIX}/" \
-               --with-rootlibexecdir="${EPREFIX}"/$(get_libdir)/elogind \
-               --enable-smack \
-               --with-cgroup-controller=openrc \
-               --disable-lto \
-               --without-kill-user-processes \
-               $(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}
-
-       sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.conf.in > 
${PN}.conf || die
-       newconfd ${PN}.conf ${PN}
-}
-
-pkg_postinst() {
-       if [ "$(rc-config list boot | grep elogind)" != "" ]; then
-               ewarn "elogind is currently started from boot runlevel."
-       elif [ "$(rc-config list default | grep elogind)" != "" ]; then
-               ewarn "elogind is currently started from default runlevel."
-               ewarn "Please remove elogind from the default runlevel and"
-               ewarn "add it to the boot runlevel by:"
-               ewarn "# rc-update del elogind default"
-               ewarn "# rc-update add elogind boot"
-       else
-               ewarn "elogind is currently not started from any runlevel."
-               ewarn "You may add it to the boot runlevel by:"
-               ewarn "# rc-update add elogind boot"
-       fi
-       ewarn "Alternatively you can leave elogind out of any"
-       ewarn "runlevel. It will then be started automatically"
-       if use pam; then
-               ewarn "when the first service calls it via dbus, or the"
-               ewarn "first user logs into the system."
-       else
-               ewarn "when the first service calls it via dbus."
-       fi
-}

diff --git a/sys-auth/elogind/files/elogind-226.4-docs.patch 
b/sys-auth/elogind/files/elogind-226.4-docs.patch
deleted file mode 100644
index 4161f633125..00000000000
--- a/sys-auth/elogind/files/elogind-226.4-docs.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/Makefile.am      2017-02-16 13:22:56.764985896 +0100
-+++ b/Makefile.am      2017-02-16 13:23:04.998986057 +0100
-@@ -194,12 +194,6 @@
- bin_PROGRAMS =
- rootlibexec_PROGRAMS =
- 
--dist_doc_DATA = \
--      README \
--      NEWS \
--      LICENSE.LGPL2.1 \
--      LICENSE.GPL2
--
- @INTLTOOL_POLICY_RULE@
- 
- # 
------------------------------------------------------------------------------

Reply via email to