blob: c9478a6d1a11d7c917f13f9fc6eb4cd7ac4d8867 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/trustees/trustees-2.10.ebuild,v 1.1 2003/10/14 01:48:12 max Exp $
DESCRIPTION="Advanced permission management system (ACLs) for Linux."
HOMEPAGE="http://trustees.sourceforge.net/"
SRC_URI="http://trustees.sourceforge.net/download/${PN}.${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/linux-sources"
S="${WORKDIR}"
src_unpack() {
[ ! -e "/usr/src/linux/include/linux/trustee_struct.h" ] && {
eerror
eerror "Your currently linked kernel (/usr/src/linux) hasn't"
eerror "been patched for trustees support."
eerror
die "kernel not patched for trustees support"
}
unpack ${A}
}
src_compile() {
${CC} -I/usr/src/linux/include \
-o "settrustee" "set-trustee.c" || die "compile problem"
}
src_install() {
dosbin settrustee
dodoc README
newdoc trustee.conf trustee.conf.example
exeinto /etc/init.d
newexe "${FILESDIR}/trustees.rc6" trustees
insinto /etc/conf.d
newins "${FILESDIR}/trustees.conf" trustees
}
|