diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-05-07 21:57:03 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-05-07 21:57:29 +0200 |
commit | c4fb474cb6658ab67ccceee9998db60cdea1fa93 (patch) | |
tree | f5100f9d4ee8deb1009276e6357f323350174249 | |
parent | sys-apps/systemd: add 251_rc2 (diff) | |
download | gentoo-c4fb474cb6658ab67ccceee9998db60cdea1fa93.tar.gz gentoo-c4fb474cb6658ab67ccceee9998db60cdea1fa93.tar.bz2 gentoo-c4fb474cb6658ab67ccceee9998db60cdea1fa93.zip |
sys-apps/utempter: drop 0.5.5.6
Closes: https://bugs.gentoo.org/781584
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | sys-apps/utempter/utempter-0.5.5.6.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/sys-apps/utempter/utempter-0.5.5.6.ebuild b/sys-apps/utempter/utempter-0.5.5.6.ebuild deleted file mode 100644 index 6d31a543cdcb..000000000000 --- a/sys-apps/utempter/utempter-0.5.5.6.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic rpm toolchain-funcs user - -MY_P=${P%.*}-${PV##*.} - -DESCRIPTION="App that allows non-privileged apps to write utmp (login) info" -HOMEPAGE="https://www.redhat.com/" -SRC_URI="mirror://gentoo/${MY_P}.src.rpm" - -LICENSE="|| ( MIT LGPL-2 )" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86" -IUSE="" - -RDEPEND=" - !sys-libs/libutempter - !dev-python/utmp" - -S=${WORKDIR}/${P%.*} -PATCHES=( - "${FILESDIR}"/${P}-no_utmpx.patch - "${FILESDIR}"/${P}-fix-build-system.patch -) - -pkg_setup() { - enewgroup utmp 406 -} - -src_configure() { - tc-export CC - append-cflags -Wall -} - -src_install() { - emake \ - RPM_BUILD_ROOT="${ED}" \ - LIBDIR=/usr/$(get_libdir) \ - install - dobin utmp - - fowners root:utmp /usr/sbin/utempter - fperms 2755 /usr/sbin/utempter -} - -pkg_postinst() { - if [[ -f "${EROOT%/}"/var/log/wtmp ]] ; then - chown root:utmp "${EROOT%/}"/var/log/wtmp - chmod 664 "${EROOT%/}"/var/log/wtmp - fi - if [[ -f "${EROOT%/}"/var/run/utmp ]] ; then - chown root:utmp "${EROOT%/}"/var/run/utmp - chmod 664 "${EROOT%/}"/var/run/utmp - fi -} |