diff options
Diffstat (limited to 'sys-fs/dazuko/dazuko-2.1.0.ebuild')
-rw-r--r-- | sys-fs/dazuko/dazuko-2.1.0.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/sys-fs/dazuko/dazuko-2.1.0.ebuild b/sys-fs/dazuko/dazuko-2.1.0.ebuild new file mode 100644 index 000000000000..df7635d4e40b --- /dev/null +++ b/sys-fs/dazuko/dazuko-2.1.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dazuko/dazuko-2.1.0.ebuild,v 1.1 2005/09/09 20:42:37 wschlich Exp $ + +inherit linux-mod eutils + +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" +# use full kernel version as SLOT, preventing removal of dazuko +# modules for previously used kernels +SLOT="${KV_FULL:-0}" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +DEPEND=">=virtual/linux-sources-2.2" +S="${WORKDIR}/${MY_P}" + +# kernel settings +CONFIG_CHECK="SECURITY_CAPABILITIES" +MODULE_NAMES="dazuko(misc:)" +BUILD_TARGETS="dummy_rule" + +# TODO add 'example' USE flag, install example source code + +src_unpack() { + unpack ${A} + cd ${S} +} + +src_compile() { + ./configure \ + --kernelsrcdir="${KERNEL_DIR}" \ + || die "configure failed" + convert_to_m Makefile + linux-mod_src_compile + + cd library && emake && cd .. +} + +src_install() { + linux-mod_src_install + + dolib.a library/libdazuko.a + insinto /usr/include + doins dazukoio.h + + dodoc COPYING + dodoc README + dodoc README.linux26 + dodoc README.trusted +# dodoc LICENSE.BSD +# dodoc LICENSE.GPL +} + |