blob: af1ed92d54d7d9a6024334d2a2b937f874a86ebb (
plain)
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
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
SRC_URI="https://github.com/Sabayon/genkernel-next/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 x86"
inherit bash-completion-r1
DESCRIPTION="Gentoo automatic kernel building scripts, reloaded"
HOMEPAGE="http://www.gentoo.org"
LICENSE="GPL-2"
SLOT="0"
IUSE="cryptsetup dmraid gpg iscsi mdadm plymouth selinux"
DOCS=( AUTHORS )
DEPEND="app-text/asciidoc
sys-fs/e2fsprogs
!sys-fs/eudev[-kmod,modutils]
selinux? ( sys-libs/libselinux )"
RDEPEND="${DEPEND}
!sys-kernel/genkernel
cryptsetup? ( sys-fs/cryptsetup )
dmraid? ( >=sys-fs/dmraid-1.0.0_rc16 )
gpg? ( app-crypt/gnupg )
iscsi? ( sys-block/open-iscsi )
mdadm? ( sys-fs/mdadm )
plymouth? ( sys-boot/plymouth )
app-portage/portage-utils
app-arch/cpio
>=app-misc/pax-utils-0.6
!<sys-apps/openrc-0.9.9
sys-apps/util-linux
sys-block/thin-provisioning-tools
sys-fs/lvm2"
src_prepare() {
default
sed -i "/^GK_V=/ s:GK_V=.*:GK_V=${PV}:g" "${S}/genkernel" || \
die "Could not setup release"
}
src_install() {
default
doman "${S}"/genkernel.8
newbashcomp "${S}"/genkernel.bash genkernel
}
|