blob: eab2f45c1259eb0c49f0a162fb33cf5de3b59842 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/rsbac-sources/rsbac-sources-2.6.10-r1.ebuild,v 1.2 2005/01/21 13:33:50 kang Exp $
IUSE=""
ETYPE="sources"
inherit kernel-2
detect_version
# rsbac
RSBACV=1.2.3
#RSBAC_PRE_SRC="http://www.rsbac.org/download/pre/rsbac-${RSBACV}.tar.gz"
RSBAC_SRC="http://rsbac.org/download/code/v${RSBACV}/rsbac-v${RSBACV}.tar.bz2"
CAN_SRC=""
# rsbac kernel patches
RGPV=10.1
RGPV_SRC="http://dev.gentoo.org/~kang/rsbac/patches/1.2.3/2.6/rsbac-patches-${KV_MAJOR}.${KV_MINOR}-${RGPV}.tar.bz2"
UNIPATCH_STRICTORDER="yes"
UNIPATCH_LIST="${DISTDIR}/rsbac-patches-${KV_MAJOR}.${KV_MINOR}-${RGPV}.tar.bz2"
UNIPATCH_DOCS="${WORKDIR}/patches/rsbac-patches-${KV_MAJOR}.${KV_MINOR}-${RGPV}/0000_README"
HOMEPAGE="http://hardened.gentoo.org/rsbac/"
DESCRIPTION="RSBAC hardened sources for the ${KV_MAJOR}.${KV_MINOR} kernel tree"
SRC_URI="${KERNEL_URI} ${RSBAC_SRC} ${RGPV_SRC} ${CAN_SRC}"
KEYWORDS="x86 ~ppc"
src_unpack() {
universal_unpack
(cd ${WORKDIR}/linux-${KV}; unpack rsbac-v${RSBACV}.tar.bz2)
unipatch "${UNIPATCH_LIST_DEFAULT} ${UNIPATCH_LIST}"
}
pkg_postinst() {
postinst_sources
ewarn "Please configure and compile your RSBAC kernel before installing rsbac-admin tools"
einfo "Guides are available from the Gentoo Documentation Project for this kernel"
einfo "Please see http://www.gentoo.org/proj/en/hardened/rsbac/quickstart.xml"
einfo "And the RSBAC hardened project http://www.gentoo.org/proj/en/hardened/rsbac/"
einfo "For help setting up and using RSBAC."
}
|