Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/elogind/
Date: Thu, 29 Jun 2017 13:32:31
Message-Id: 1498743136.f069fe61dd4e937c86d7b45690c03b152267c846.kensington@gentoo
1 commit: f069fe61dd4e937c86d7b45690c03b152267c846
2 Author: Sven Eden <yamakuzure <AT> gmx <DOT> net>
3 AuthorDate: Thu Jun 29 12:38:32 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 29 13:32:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f069fe61
7
8 sys-auth/elogind: version bump 231.3
9
10 Gentoo-bug: 623020
11 Package-Manager: Portage-2.3.6, Repoman-2.3.2
12
13 sys-auth/elogind/Manifest | 1 +
14 sys-auth/elogind/elogind-231.3.ebuild | 84 +++++++++++++++++++++++++++++++++++
15 2 files changed, 85 insertions(+)
16
17 diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
18 index f5ed53f35ba..126df431642 100644
19 --- a/sys-auth/elogind/Manifest
20 +++ b/sys-auth/elogind/Manifest
21 @@ -1 +1,2 @@
22 DIST elogind-229.6.tar.gz 765900 SHA256 19f08dba36509b3c5baf1f35d9ac1f5b473b550c081f63fa64ffbe8862ede7aa SHA512 a1bf2937ad2f8d351cd5a0ca5c1c73e85746d14e0a252befa3ed0d396e782df0fde34c49101931189cd56404b59709a7e5ae5beceaac6f30151b50fb32d26ae0 WHIRLPOOL 24d6315d4568b18df4eaa42410f2744b31ab935dd6a7fb0281e4fe2b2e953e411d462db829cbde786c338e823823998e13a9af287252440642499dfe8aca1b1c
23 +DIST elogind-231.3.tar.gz 812510 SHA256 dff5fd882e1ff963c6407ace6618fb220fe48e9cfda48282eecd45b1eabef666 SHA512 824fd60727f798f3601bb43aed6304a44bf22d3907d395f44f8f48f861ba87c1dd707882ef88dfcffc3d92cc9291daf0e1245b02a397eabe59a6e17ecb5e59b9 WHIRLPOOL 6a8125ab983cfb006f54582aa5c5dfd3a1b22ceacdc5a1f9171f1663182ed0444079857b621c37b541014aadbaa55c54177fed335cd9b0563a2d3b1191667877
24
25 diff --git a/sys-auth/elogind/elogind-231.3.ebuild b/sys-auth/elogind/elogind-231.3.ebuild
26 new file mode 100644
27 index 00000000000..fb722cd1ce6
28 --- /dev/null
29 +++ b/sys-auth/elogind/elogind-231.3.ebuild
30 @@ -0,0 +1,84 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit autotools linux-info pam udev
37 +
38 +DESCRIPTION="The systemd project's logind, extracted to a standalone package"
39 +HOMEPAGE="https://github.com/elogind/elogind"
40 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~x86"
45 +IUSE="acl debug pam policykit selinux"
46 +
47 +RDEPEND="
48 + sys-apps/util-linux
49 + sys-libs/libcap
50 + virtual/libudev:=
51 + acl? ( sys-apps/acl )
52 + pam? ( virtual/pam )
53 + selinux? ( sys-libs/libselinux )
54 + !sys-apps/systemd
55 +"
56 +DEPEND="${RDEPEND}
57 + app-text/docbook-xml-dtd:4.2
58 + app-text/docbook-xml-dtd:4.5
59 + app-text/docbook-xsl-stylesheets
60 + dev-util/gperf
61 + dev-util/intltool
62 + sys-devel/libtool
63 + virtual/pkgconfig
64 +"
65 +PDEPEND="
66 + sys-apps/dbus
67 + policykit? ( sys-auth/polkit )
68 +"
69 +
70 +PATCHES=( "${FILESDIR}/${PN}-226.4-docs.patch" )
71 +
72 +pkg_setup() {
73 + local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SECURITY_SMACK
74 + ~SIGNALFD ~TIMERFD"
75 +
76 + if use kernel_linux; then
77 + linux-info_pkg_setup
78 + fi
79 +}
80 +
81 +src_prepare() {
82 + default
83 + eautoreconf # Makefile.am patched by "${FILESDIR}/${P}-docs.patch"
84 +}
85 +
86 +src_configure() {
87 + econf \
88 + --with-pamlibdir=$(getpam_mod_dir) \
89 + --with-udevrulesdir="$(get_udevdir)"/rules.d \
90 + --libdir="${EPREFIX}"/usr/$(get_libdir) \
91 + --with-rootlibdir="${EPREFIX}"/$(get_libdir) \
92 + --enable-smack \
93 + --with-cgroup-controller=openrc \
94 + $(use_enable debug debug elogind) \
95 + $(use_enable acl) \
96 + $(use_enable pam) \
97 + $(use_enable selinux)
98 +}
99 +
100 +src_install() {
101 + default
102 + find "${D}" -name '*.la' -delete || die
103 +
104 + newinitd "${FILESDIR}"/${PN}.init ${PN}
105 + newconfd "${FILESDIR}"/${PN}.conf ${PN}
106 +}
107 +
108 +pkg_postinst() {
109 + if [ "$(rc-config list boot | grep elogind)" = "" ]; then
110 + ewarn "To enable the elogind daemon, elogind must be"
111 + ewarn "added to the boot runlevel:"
112 + ewarn "# rc-update add elogind boot"
113 + fi
114 +}