blob: d7c304e8b6f55adc1909cdffa3410dbf2d84830d (
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
61
62
63
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/genkernel-next-63.ebuild,v 1.3 2015/05/24 20:51:45 zlogene Exp $
EAPI=5
if [[ "${PV}" != "9999" ]]; then
SRC_URI="http://dev.gentoo.org/~lxnay/genkernel-next/${P}.tar.xz"
else
EGIT_REPO_URI="git://github.com/Sabayon/genkernel-next.git"
inherit git-2
fi
inherit bash-completion-r1 eutils
if [[ "${PV}" == "9999" ]]; then
KEYWORDS=""
else
KEYWORDS="~alpha amd64 ~arm ~ia64 x86"
fi
DESCRIPTION="Gentoo automatic kernel building scripts, reloaded"
HOMEPAGE="http://www.gentoo.org"
LICENSE="GPL-2"
SLOT="0"
RESTRICT=""
IUSE="cryptsetup dmraid gpg iscsi mdadm plymouth selinux"
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[libkms] )
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() {
sed -i "/^GK_V=/ s:GK_V=.*:GK_V=${PV}:g" "${S}/genkernel" || \
die "Could not setup release"
epatch_user
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
doman "${S}"/genkernel.8 || die "doman"
dodoc "${S}"/AUTHORS || die "dodoc"
newbashcomp "${S}"/genkernel.bash genkernel
}
|