blob: 9769c12faa06892f9f3dc75faf2512e7b1f86bd3 (
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
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
if [[ "${PV}" != "9999" ]]; then
SRC_URI="https://github.com/Sabayon/genkernel-next/archive/v${PV}.tar.gz -> ${PV}.tar.gz"
RESTRICT="mirror"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86"
else
EGIT_REPO_URI="git://github.com/Sabayon/genkernel-next.git"
inherit git-2
KEYWORDS=""
RESTRICT=""
fi
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
}
|