From aa0a209f560dd0903328195cb903e7abb9b91216 Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Fri, 23 Feb 2007 16:40:31 +0000 Subject: Added dazuko_events.h, thanks to Frantisek Mensik. (Portage version: 2.1.2-r10) --- sys-fs/dazuko/ChangeLog | 10 ++- sys-fs/dazuko/dazuko-2.3.2-r3.ebuild | 100 ----------------------- sys-fs/dazuko/dazuko-2.3.2-r4.ebuild | 101 ++++++++++++++++++++++++ sys-fs/dazuko/dazuko-2.3.3_pre1-r1.ebuild | 94 ++++++++++++++++++++++ sys-fs/dazuko/dazuko-2.3.3_pre1.ebuild | 93 ---------------------- sys-fs/dazuko/files/digest-dazuko-2.3.2-r3 | 6 -- sys-fs/dazuko/files/digest-dazuko-2.3.2-r4 | 6 ++ sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1 | 3 - sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1-r1 | 3 + 9 files changed, 213 insertions(+), 203 deletions(-) delete mode 100644 sys-fs/dazuko/dazuko-2.3.2-r3.ebuild create mode 100644 sys-fs/dazuko/dazuko-2.3.2-r4.ebuild create mode 100644 sys-fs/dazuko/dazuko-2.3.3_pre1-r1.ebuild delete mode 100644 sys-fs/dazuko/dazuko-2.3.3_pre1.ebuild delete mode 100644 sys-fs/dazuko/files/digest-dazuko-2.3.2-r3 create mode 100644 sys-fs/dazuko/files/digest-dazuko-2.3.2-r4 delete mode 100644 sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1 create mode 100644 sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1-r1 (limited to 'sys-fs') diff --git a/sys-fs/dazuko/ChangeLog b/sys-fs/dazuko/ChangeLog index 728ddc35c59d..1cf7b4382e28 100644 --- a/sys-fs/dazuko/ChangeLog +++ b/sys-fs/dazuko/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for sys-fs/dazuko # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dazuko/ChangeLog,v 1.21 2007/02/23 15:36:12 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dazuko/ChangeLog,v 1.22 2007/02/23 16:40:31 alonbl Exp $ + +*dazuko-2.3.3_pre1-r1 (23 Feb 2007) +*dazuko-2.3.2-r4 (23 Feb 2007) + + 23 Feb 2007; Alon Bar-Lev -dazuko-2.3.2-r3.ebuild, + +dazuko-2.3.2-r4.ebuild, -dazuko-2.3.3_pre1.ebuild, + +dazuko-2.3.3_pre1-r1.ebuild: + Added dazuko_events.h, thanks to Frantisek Mensik. 23 Feb 2007; Alon Bar-Lev dazuko-2.3.2-r3.ebuild, dazuko-2.3.3_pre1.ebuild: diff --git a/sys-fs/dazuko/dazuko-2.3.2-r3.ebuild b/sys-fs/dazuko/dazuko-2.3.2-r3.ebuild deleted file mode 100644 index 61e3a4082922..000000000000 --- a/sys-fs/dazuko/dazuko-2.3.2-r3.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# 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.2-r3.ebuild,v 1.3 2007/02/23 15:36:12 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 - mirror://gentoo/${P}-linux-2.6.19.patch.bz2" -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 - CONFIG_CHECK="SECURITY_CAPABILITIES" - MODULE_NAMES="dazuko(misc:)" - BUILD_TARGETS="dummy_rule" - -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-2.3.1-suspend2.patch" - - if [ "${KERNEL}" == "linux" ] && kernel_is 2 6 19; then - epatch "${WORKDIR}/${P}-linux-2.6.19.patch" - fi -} - -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 - - 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 -} - diff --git a/sys-fs/dazuko/dazuko-2.3.2-r4.ebuild b/sys-fs/dazuko/dazuko-2.3.2-r4.ebuild new file mode 100644 index 000000000000..c2fac809dae1 --- /dev/null +++ b/sys-fs/dazuko/dazuko-2.3.2-r4.ebuild @@ -0,0 +1,101 @@ +# 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.2-r4.ebuild,v 1.1 2007/02/23 16:40:31 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 + mirror://gentoo/${P}-linux-2.6.19.patch.bz2" +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 + CONFIG_CHECK="SECURITY_CAPABILITIES" + MODULE_NAMES="dazuko(misc:)" + BUILD_TARGETS="dummy_rule" + +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-2.3.1-suspend2.patch" + + if [ "${KERNEL}" == "linux" ] && kernel_is 2 6 19; then + epatch "${WORKDIR}/${P}-linux-2.6.19.patch" + fi +} + +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 +} + diff --git a/sys-fs/dazuko/dazuko-2.3.3_pre1-r1.ebuild b/sys-fs/dazuko/dazuko-2.3.3_pre1-r1.ebuild new file mode 100644 index 000000000000..367b0014fac3 --- /dev/null +++ b/sys-fs/dazuko/dazuko-2.3.3_pre1-r1.ebuild @@ -0,0 +1,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_pre1-r1.ebuild,v 1.1 2007/02/23 16:40:31 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 +} + diff --git a/sys-fs/dazuko/dazuko-2.3.3_pre1.ebuild b/sys-fs/dazuko/dazuko-2.3.3_pre1.ebuild deleted file mode 100644 index 3197c9cd24b4..000000000000 --- a/sys-fs/dazuko/dazuko-2.3.3_pre1.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# 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_pre1.ebuild,v 1.3 2007/02/23 15:36:12 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 - - 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 -} - diff --git a/sys-fs/dazuko/files/digest-dazuko-2.3.2-r3 b/sys-fs/dazuko/files/digest-dazuko-2.3.2-r3 deleted file mode 100644 index fee1e7bfde35..000000000000 --- a/sys-fs/dazuko/files/digest-dazuko-2.3.2-r3 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 e82799830e44dc2b5dfc9d355bcc5b2e dazuko-2.3.2-linux-2.6.19.patch.bz2 4706 -RMD160 09a635922d364f73e6f32787397e3657d2ec8087 dazuko-2.3.2-linux-2.6.19.patch.bz2 4706 -SHA256 239c514ddb4345d758706c50c286b125d3e35e476931bec0909bdf15c80c8d06 dazuko-2.3.2-linux-2.6.19.patch.bz2 4706 -MD5 bb32e24ad60a31dbfc419d3341287f68 dazuko-2.3.2.tar.gz 177134 -RMD160 57fd3dd45a61609a18829467966657ef658ed500 dazuko-2.3.2.tar.gz 177134 -SHA256 b396fc344cf1bad0d7dfb6675573a8ca189f34867fe1256c7f31c8ec9aab45bb dazuko-2.3.2.tar.gz 177134 diff --git a/sys-fs/dazuko/files/digest-dazuko-2.3.2-r4 b/sys-fs/dazuko/files/digest-dazuko-2.3.2-r4 new file mode 100644 index 000000000000..fee1e7bfde35 --- /dev/null +++ b/sys-fs/dazuko/files/digest-dazuko-2.3.2-r4 @@ -0,0 +1,6 @@ +MD5 e82799830e44dc2b5dfc9d355bcc5b2e dazuko-2.3.2-linux-2.6.19.patch.bz2 4706 +RMD160 09a635922d364f73e6f32787397e3657d2ec8087 dazuko-2.3.2-linux-2.6.19.patch.bz2 4706 +SHA256 239c514ddb4345d758706c50c286b125d3e35e476931bec0909bdf15c80c8d06 dazuko-2.3.2-linux-2.6.19.patch.bz2 4706 +MD5 bb32e24ad60a31dbfc419d3341287f68 dazuko-2.3.2.tar.gz 177134 +RMD160 57fd3dd45a61609a18829467966657ef658ed500 dazuko-2.3.2.tar.gz 177134 +SHA256 b396fc344cf1bad0d7dfb6675573a8ca189f34867fe1256c7f31c8ec9aab45bb dazuko-2.3.2.tar.gz 177134 diff --git a/sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1 b/sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1 deleted file mode 100644 index 06adc220e374..000000000000 --- a/sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 3520bdcb591aff2b3944fc017342a197 dazuko-2.3.3-pre1.tar.gz 181411 -RMD160 4d0f8d2cdb0fe411b535ab8250690085c5684c40 dazuko-2.3.3-pre1.tar.gz 181411 -SHA256 79c06479104173821af33d31253729d4fd35fe2d73c968fa31d243a5c5548c06 dazuko-2.3.3-pre1.tar.gz 181411 diff --git a/sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1-r1 b/sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1-r1 new file mode 100644 index 000000000000..06adc220e374 --- /dev/null +++ b/sys-fs/dazuko/files/digest-dazuko-2.3.3_pre1-r1 @@ -0,0 +1,3 @@ +MD5 3520bdcb591aff2b3944fc017342a197 dazuko-2.3.3-pre1.tar.gz 181411 +RMD160 4d0f8d2cdb0fe411b535ab8250690085c5684c40 dazuko-2.3.3-pre1.tar.gz 181411 +SHA256 79c06479104173821af33d31253729d4fd35fe2d73c968fa31d243a5c5548c06 dazuko-2.3.3-pre1.tar.gz 181411 -- cgit v1.2.3-65-gdbad