blob: c9729638770373fab8da3e3a006452c174c7aca9 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
K_PREPATCHED="yes"
UNIPATCH_STRICTORDER="yes"
K_SECURITY_UNSUPPORTED="1"
K_DEBLOB_AVAILABLE=0
CKV="${PV/99/}"
ETYPE="sources"
EGIT_BRANCH="${PV/.9999/}/master"
EGIT_REPO_URI="git://github.com/damentz/zen-kernel.git
https://github.com/damentz/zen-kernel.git"
inherit kernel-2 git-2
detect_version
K_NOSETEXTRAVERSION="don't_set_it"
DESCRIPTION="The Zen Kernel Live Sources"
HOMEPAGE="https://zen-kernel.org"
IUSE=""
KEYWORDS=""
K_EXTRAEINFO="For more info on zen-sources, and for how to report problems, see: \
${HOMEPAGE}, also go to #zen-sources on freenode"
pkg_setup(){
ewarn "Be carefull!! You are about to install live kernel sources."
ewarn "Git zen-sources are extremely unsupported, even from the upstream"
ewarn "developers. Use them at your own risk and don't bite us if your"
ewarn "system explodes"
kernel-2_pkg_setup
}
|