blob: 22e830fdd30605308a8a7676603e4a25d9b2bde7 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/dazuko/dazuko-2.3.3_pre2.ebuild,v 1.1 2007/02/28 18:23:51 alonbl Exp $
inherit linux-mod toolchain-funcs flag-o-matic
DESCRIPTION="Linux kernel module and interface providing file access control"
MY_P="${P/_/-}" # for -preN versions
SRC_URI="http://www.dazuko.org/files/${MY_P}.tar.gz"
HOMEPAGE="http://www.dazuko.org"
LICENSE="GPL-2 BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="kernel_linux? ( >=virtual/linux-sources-2.2 )"
RDEPEND=${DEPEND}
S="${WORKDIR}/${MY_P}"
pkg_setup() {
[ "${KERNEL}" = "linux" ] && linux-mod_pkg_setup
# kernel settings
if [ "${KERNEL}" = "linux" ] && kernel_is le 2 4; then
BUILD_TARGETS="all"
else
CONFIG_CHECK="SECURITY_CAPABILITIES"
BUILD_TARGETS="dummy_rule"
fi
MODULE_NAMES="dazuko(misc:)"
}
src_compile() {
if [ "${KERNEL}" = "FreeBSD" ]; then
KERNEL_DIR=/usr/src/sys
KBUILD_OUTPUT=/boot/modules
MAKE=make
fi
./configure \
--without-dep \
--disable-local-dpath \
--disable-chroot-support \
--kernelsrcdir="${KERNEL_DIR}" \
--kernelobjdir="${KBUILD_OUTPUT}" \
|| die "configure failed"
if [ "${KERNEL}" = "linux" ]; then
convert_to_m Makefile
linux-mod_src_compile
else
emake CC="$(tc-getCC)" LD="$(tc-getLD)" LDFLAGS="$(raw-ldflags)" || die
fi
emake -C library CC="$(tc-getCC)" || die
}
src_install() {
if [ "${KERNEL}" = "linux" ]; then
linux-mod_src_install
else
insinto /boot/modules
doins "${S}"/dazuko.kld
exeinto /boot/modules
doexe "${S}"/dazuko.ko
fi
dolib.a library/libdazuko.a
insinto /usr/include
doins dazukoio.h
doins dazuko_events.h
dodoc COPYING
dodoc README
dodoc README.linux26
dodoc README.trusted
}
src_test() {
if [ "${EUID}" != 0 ]; then
ewarn "Cannot test while not root"
else
emake test || die "Test failed"
fi
}
pkg_postinst() {
[ "${KERNEL}" = "linux" ] && linux-mod_pkg_postinst
einfo "Please note that chroot support is disabled due to incompatability "
einfo "with SMP kernels"
}
pkg_postrm() {
[ "${KERNEL}" = "linux" ] && linux-mod_pkg_postrm
}
|