commit: 3c3d1d71ef1aa4fdbb29f4f4a3035468726f55a6
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 9 11:34:51 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Feb 9 11:35:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c3d1d71
sys-apps/cinit: port to EAPI=7
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-apps/cinit/cinit-0.2.1.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/sys-apps/cinit/cinit-0.2.1.ebuild
b/sys-apps/cinit/cinit-0.2.1.ebuild
index c52fcc2f673..252f62e217b 100644
--- a/sys-apps/cinit/cinit-0.2.1.ebuild
+++ b/sys-apps/cinit/cinit-0.2.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
inherit toolchain-funcs
@@ -17,6 +17,7 @@ IUSE="doc"
src_prepare() {
sed -i "/contrib+tools/d" Makefile || die
sed -i "/^STRIP/s/strip.*/true/" Makefile.include || die
+ default
}
src_compile() {
@@ -31,7 +32,7 @@ src_compile() {
src_install() {
emake LD=$(tc-getCC) DESTDIR="${D}" install
- rm -f "${D}"/sbin/{init,shutdown,reboot}
+ rm -f "${D}"/sbin/{init,shutdown,reboot} || die
dodoc Changelog CHANGES CREDITS README TODO
use doc && dodoc -r doc
}