diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-01-06 23:23:08 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-01-06 23:23:08 +0100 |
commit | c71a831a8d4ce44c2c47fdfffcbe7da8f8ed5c83 (patch) | |
tree | c8b5b218f2d529a584eea52c339de39811c1cb0f /sys-auth | |
parent | sys-auth/elogind: Add init script, kernel checks (diff) | |
download | kde-c71a831a8d4ce44c2c47fdfffcbe7da8f8ed5c83.tar.gz kde-c71a831a8d4ce44c2c47fdfffcbe7da8f8ed5c83.tar.bz2 kde-c71a831a8d4ce44c2c47fdfffcbe7da8f8ed5c83.zip |
sys-auth/elogind: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/elogind/elogind-219.12-r2.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/sys-auth/elogind/elogind-219.12-r2.ebuild b/sys-auth/elogind/elogind-219.12-r2.ebuild deleted file mode 100644 index 358d5a4d1b..0000000000 --- a/sys-auth/elogind/elogind-219.12-r2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit autotools eutils pam - -DESCRIPTION="The systemd project's logind, extracted to a standalone package" -HOMEPAGE="https://github.com/wingo/elogind" -SRC_URI="https://github.com/wingo/elogind/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 apparmor pam policykit selinux +seccomp" - -COMMON_DEPEND=" - sys-libs/libcap - sys-apps/util-linux - virtual/libudev:= - acl? ( sys-apps/acl ) - apparmor? ( sys-libs/libapparmor ) - pam? ( virtual/pam ) - seccomp? ( sys-libs/libseccomp ) - selinux? ( sys-libs/libselinux ) -" -RDEPEND="${COMMON_DEPEND} - sys-apps/dbus - policykit? ( sys-auth/polkit ) - !sys-auth/systemd -" -DEPEND="${COMMON_DEPEND} - dev-util/gperf - dev-util/intltool - sys-devel/libtool - virtual/pkgconfig -" - -DOCS=( NEWS README TODO ) -PATCHES=( - "${FILESDIR}/${PN}-docs.patch" - "${FILESDIR}/${PN}-lrt.patch" - "${FILESDIR}/${P}-session.patch" -) - -src_prepare() { - default - - # launch elogind when called via dbus - sed -i -e "s|/bin/false|/usr/libexec/elogind/elogind|" src/login/org.freedesktop.login1.service || die - - eautoreconf -} - -src_configure() { - econf \ - --with-pamlibdir=$(getpam_mod_dir) \ - $(use_enable acl) \ - $(use_enable apparmor) \ - $(use_enable pam) \ - $(use_enable seccomp) \ - $(use_enable selinux) -} - -src_install() { - default - prune_libtool_files --modules -} |