blob: ce6d105f03528cd393eaafa4cb8c212ba12418f6 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gradm/gradm-2.1.14.201004061746.ebuild,v 1.1 2010/04/13 14:58:31 zorry Exp $
EAPI=2
inherit flag-o-matic toolchain-funcs versionator
MY_PV="$(replace_version_separator 3 -)"
DESCRIPTION="Administrative interface for the grsecurity Role Based Access Control system"
HOMEPAGE="http://www.grsecurity.net/"
SRC_URI="http://dev.gentoo.org/~zorry/distfiles/${CATEGORY}/${PN}/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="pam"
RDEPEND=""
DEPEND="sys-devel/bison
sys-devel/flex
pam? ( virtual/pam )
|| ( sys-apps/paxctl sys-apps/chpax )"
S="${WORKDIR}/${PN}2"
src_prepare() {
sed -i -e s:^LDFLAGS=:LDFLAGS+=: \
-e s:^MKNOD=.*:MKNOD=true: \
-e s:^STRIP=.*:STRIP=true: Makefile
append-ldflags -Wl,-z,now
}
src_compile() {
local target
use pam || target="nopam"
emake ${target} CC="$(tc-getCC)" OPT_FLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
einstall DESTDIR="${D}" || die "einstall failed"
fperms 711 /sbin/gradm
}
pkg_postinst() {
[ -e "${ROOT}"/dev/grsec ] && rm -f "${ROOT}"/dev/grsec
einfo "Making character device for grsec2 learning mode"
mkdir -p -m 755 "${ROOT}"/dev/
mknod -m 0622 "${ROOT}"/dev/grsec c 1 13 || die "mknod on grsec learning device failed"
einfo
ewarn "Be sure to set a password with 'gradm -P' before enabling learning mode"
ewarn
ewarn "This version of gradm is only supported with a kernel >=2.6.29!"
einfo
}
|