blob: faed9e16964ebb779bb75a40aeb8a0f5dff63365 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils
EXTRAVERSION="redcore-lts"
KV_FULL="${PV}-${EXTRAVERSION}"
DESCRIPTION="Official Redcore Linux LTS Kernel Sources"
HOMEPAGE="https://gitlab.com/redcore/kernel"
SRC_URI="https://github.com/redcorelinux/kernel/archive/linux-${KV_FULL}.tar.gz"
KEYWORDS="amd64"
LICENSE="GPL-2"
SLOT="${PV}"
IUSE=""
RESTRICT="strip mirror"
DEPEND="
app-arch/xz-utils
sys-devel/autoconf
sys-devel/bc
sys-devel/make"
RDEPEND="${DEPEND}"
S="$WORKDIR/kernel-linux-${KV_FULL}"
pkg_setup() {
export REAL_ARCH="$ARCH"
unset ARCH ; unset LDFLAGS #will interfere with Makefile if set
}
src_prepare() {
default
emake mrproper
sed -ri "s|^(EXTRAVERSION =).*|\1 -${EXTRAVERSION}|" Makefile
cp "redcore/config/"${EXTRAVERSION}"-4.14-amd64.config" .config
}
src_compile() {
emake prepare modules_prepare
}
src_install() {
dodir usr/src/linux-"${KV_FULL}"
cp -ax "${S}"/* "${D}"usr/src/linux-"${KV_FULL}"
}
_kernel_sources_delete() {
rm -rf "${ROOT}"usr/src/linux-"${KV_FULL}"
}
pkg_postrm() {
_kernel_sources_delete
}
|