blob: 10e8598c13cc3ab817dbc51189091911a758db60 (
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
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/rsbac-admin/rsbac-admin-1.2.5.ebuild,v 1.3 2005/10/30 22:27:24 kang Exp $
inherit eutils
IUSE="pam"
# RSBAC Adming packet name
#ADMIN=rsbac-admin-v${PV}
DESCRIPTION="Rule Set Based Access Control (RSBAC) Admin Tools"
HOMEPAGE="http://www.rsbac.org/ http://hardened.gentoo.org/rsbac"
SRC_URI="http://download.rsbac.org/code/${PV}/rsbac-admin-${PV}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
NSS="1.2.5"
DEPEND="dev-util/dialog
pam? ( sys-libs/pam )
sys-apps/baselayout"
RDEPEND=">=sys-libs/ncurses-5.2"
src_compile() {
local rsbacmakeargs
rsbacmakeargs="libs tools"
use pam && {
rsbacmakeargs="${makeargs} pam nss"
}
emake PREFIX=/usr ${rsbacmakeargs} || die "cannot build (${rsbacmakeargs})"
}
src_install() {
local rsabacinstallargs
rsbacinstallargs="headers-install libs-install tools-install"
use pam && {
rsbacinstallargs="${rsbacinstallargs} pam-install nss-install"
}
make PREFIX=${D}/usr DESTDIR=${D} ${rsbacinstallargs} || \
die "cannot install (${rsbacinstallargs})"
insinto /etc
newins ${FILESDIR}/rsbac.conf rsbac.conf ${FILESDIR}/nsswitch.conf
dodir /secoff
keepdir /secoff
dodir /var/log/rsbac
keepdir /var/log/rsbac
}
pkg_postinst() {
enewgroup secoff 400 || die "problem adding group secoff"
enewuser secoff 400 /bin/bash /secoff secoff || \
die "problem adding user secoff"
enewgroup audit 404 || die "problem adding group audit"
enewuser audit 404 /bin/false /dev/null audit || \
die "problem adding user audit"
chmod 700 /secoff /var/log/rsbac || \
die "problem changing permissions of /secoff and/or /secoff/log"
chown secoff:secoff -R /secoff || \
die "problem changing ownership of /secoff"
einfo "It is suggested to run (for example) a separate copy of syslog-ng to"
einfo "log RSBAC messages, as user audit (uid 404) instead of using the deprecated"
einfo "rklogd. See http://rsbac.org/documentation/administration_examples/syslog-ng"
einfo "for more information."
}
|