blob: 3e4b08651cb5e5044dbef2791fb81c57bab62949 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
IUSE="selinux"
ETYPE="sources"
inherit kernel-2
detect_version
HGPV=28.0
HGPV_SRC="http://tocharian.ath.cx/hardened/hardened-patches-${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}/hardened-patches-${KV_MAJOR}.${KV_MINOR}-${HGPV}.tar.bz2"
UNIPATCH_STRICTORDER="yes"
# According to the patchset numbering scheme, 31xx patches are grsec related
# while 32xx are SELinux related.
if use selinux; then
UNIPATCH_EXCLUDE="31"
else
UNIPATCH_EXCLUDE="32"
fi
UNIPATCH_LIST=" ${DISTDIR}/hardened-patches-${KV_MAJOR}.${KV_MINOR}-${HGPV}.tar.bz2"
UNIPATCH_DOCS="${WORKDIR}/patches/hardened-patches-${KV_MAJOR}.${KV_MINOR}-${HGPV}/0000_README"
DESCRIPTION="Hardened sources for the ${KV_MAJOR}.${KV_MINOR} kernel tree"
SRC_URI="${KERNEL_URI} ${HGPV_SRC}"
KEYWORDS="~x86"
pkg_postinst() {
postinst_sources
}
|