blob: be429594ac63f239fe88ae3729c9b00dfc3b6d45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Build secure boot EFI kernel with LUKS and LVM"
HOMEPAGE="https://github.com/azahi/buildkernel"
SRC_URI="https://github.com/azahi/buildkernel/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
>=sys-apps/gptfdisk-0.8.8
>=sys-fs/cryptsetup-1.6.2
>=app-shells/bash-4.2:*
"
RDEPEND="${DEPEND}
>=sys-libs/ncurses-5.9-r2
>=app-crypt/sbsigntools-0.6-r1
>=sys-kernel/genkernel-next-58[cryptsetup]
>=sys-boot/efibootmgr-0.5.4-r1
>=sys-apps/debianutils-4.9.1[installkernel(+)]
"
BDEPEND="
>=virtual/linux-sources-3
"
src_install() {
dosbin "${PN}"
insinto "/etc"
doins "${PN}.conf"
}
pkg_preinst() {
if [ -e "${ROOT}/etc/${PN}.conf" ]; then
elog "/etc/${PN}.conf already exists, not overwriting."
cp "${ROOT}/etc/${PN}.conf" "${D}/etc/${PN}.conf"
fi
}
|