2015-09-26 00:19:06 +02:00
|
|
|
EAPI="4"
|
|
|
|
|
|
|
|
EGIT_REPO_URI="git://git.tastytea.de/repositories/hashboot.git"
|
|
|
|
|
|
|
|
inherit eutils git-2
|
|
|
|
|
|
|
|
DESCRIPTION="Check integrity of files in /boot"
|
|
|
|
HOMEPAGE="https://git.tastytea.de/?p=hashboot.git"
|
2015-10-03 20:25:14 +02:00
|
|
|
LICENSE="hug-ware"
|
2015-09-26 00:19:06 +02:00
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="amd64 x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
sys-apps/coreutils
|
|
|
|
app-arch/tar
|
|
|
|
sys-apps/findutils
|
|
|
|
sys-apps/grep
|
2015-09-30 00:39:38 +02:00
|
|
|
virtual/awk
|
2015-09-30 02:13:16 +02:00
|
|
|
app-shells/bash
|
2015-10-03 15:35:52 +02:00
|
|
|
sys-apps/util-linux
|
2015-10-03 19:42:26 +02:00
|
|
|
app-arch/gzip
|
2015-09-26 00:19:06 +02:00
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
"
|
|
|
|
PDEPEND="
|
|
|
|
"
|
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
git-2_src_unpack
|
|
|
|
}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
mv initscript.openrc hashboot
|
2015-10-03 20:25:14 +02:00
|
|
|
mv LICENSE HUG-WARE
|
2015-09-26 00:19:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
dodoc README
|
2015-10-03 20:25:14 +02:00
|
|
|
insinto /usr/portage/licenses
|
|
|
|
doins HUG-WARE
|
|
|
|
|
2015-09-26 00:19:06 +02:00
|
|
|
dobin hashboot.sh
|
|
|
|
doinitd hashboot
|
2015-09-30 00:39:38 +02:00
|
|
|
}
|