2019-02-05 10:37:04 +01:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
2018-06-21 21:43:10 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2019-02-05 10:37:04 +01:00
|
|
|
EAPI=7
|
2018-05-08 06:50:18 +02:00
|
|
|
|
2018-05-22 00:52:05 +02:00
|
|
|
EGIT_REPO_URI="https://github.com/tastytea/hashboot.git"
|
2018-05-08 06:50:18 +02:00
|
|
|
|
2019-02-05 10:37:04 +01:00
|
|
|
inherit git-r3
|
2018-05-08 06:50:18 +02:00
|
|
|
|
|
|
|
DESCRIPTION="Check integrity of files in /boot"
|
2019-02-05 10:37:04 +01:00
|
|
|
HOMEPAGE="https://github.com/tastytea/hashboot/"
|
2018-05-08 06:50:18 +02:00
|
|
|
LICENSE="hug-ware"
|
|
|
|
SLOT="0"
|
2018-05-22 00:52:05 +02:00
|
|
|
KEYWORDS=""
|
2018-05-08 06:50:18 +02:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
sys-apps/coreutils
|
|
|
|
app-arch/tar
|
|
|
|
sys-apps/findutils
|
|
|
|
sys-apps/grep
|
|
|
|
virtual/awk
|
2019-02-05 10:37:04 +01:00
|
|
|
app-shells/bash:*
|
2018-05-08 06:50:18 +02:00
|
|
|
sys-apps/util-linux
|
|
|
|
sys-apps/diffutils
|
|
|
|
sys-apps/sed
|
|
|
|
"
|
2019-02-05 10:37:04 +01:00
|
|
|
DEPEND="sys-apps/grep"
|
2018-05-08 06:50:18 +02:00
|
|
|
|
|
|
|
src_unpack() {
|
2018-06-21 21:43:10 +02:00
|
|
|
git-r3_src_unpack
|
2018-05-08 06:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_prepare() {
|
2019-02-05 10:37:04 +01:00
|
|
|
default
|
2018-05-08 06:50:18 +02:00
|
|
|
if grep -q '^rc_parallel="YES"' /etc/rc.conf
|
|
|
|
then
|
|
|
|
ewarn "hashboot does not work properly with parallel boot enabled."
|
|
|
|
fi
|
2018-06-21 21:43:10 +02:00
|
|
|
|
2018-05-08 06:50:18 +02:00
|
|
|
mkdir init
|
|
|
|
mv initscript.openrc init/hashboot
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dodoc README
|
2018-06-21 21:43:10 +02:00
|
|
|
|
2018-05-08 06:50:18 +02:00
|
|
|
dobin hashboot
|
|
|
|
doinitd init/hashboot
|
|
|
|
}
|