mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
Add dazuko 2.0.2, a common interface for 3rd party file access control.
PR: ports/63624 Submitted by: Rob Evers <rob@debank.tv>
This commit is contained in:
parent
6a45552c43
commit
65c9f5036b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112219
@ -57,6 +57,7 @@
|
||||
SUBDIR += cyrus-sasl
|
||||
SUBDIR += cyrus-sasl2
|
||||
SUBDIR += cyrus-sasl2-saslauthd
|
||||
SUBDIR += dazuko
|
||||
SUBDIR += dcetest
|
||||
SUBDIR += ddos_scan
|
||||
SUBDIR += destroy
|
||||
|
30
security/dazuko/Makefile
Normal file
30
security/dazuko/Makefile
Normal file
@ -0,0 +1,30 @@
|
||||
# New ports collection makefile for: dazuko
|
||||
# Date created: 01 March 2004
|
||||
# Whom: Rob Evers <rob@debank.tv>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dazuko
|
||||
PORTVERSION= 2.0.2
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://dazuko.org/files/
|
||||
|
||||
MAINTAINER= rob@debank.tv
|
||||
COMMENT= A common interface for 3rd party file access control
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if !${OSVERSION} < 500000
|
||||
IGNORE= "Only compiles on 4.x"
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${PREFIX}/modules/
|
||||
${INSTALL_DATA} ${WRKSRC}/dazuko.ko ${PREFIX}/modules/dazuko.ko
|
||||
|
||||
post-install:
|
||||
${SH} ${PKGINSTALL} ${PREFIX} POST-INSTALL
|
||||
|
||||
.include <bsd.port.post.mk>
|
2
security/dazuko/distinfo
Normal file
2
security/dazuko/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
MD5 (dazuko-2.0.2.tar.gz) = d9f25cc256308a27ee98bde0c2cfabcb
|
||||
SIZE (dazuko-2.0.2.tar.gz) = 70140
|
8
security/dazuko/pkg-deinstall
Normal file
8
security/dazuko/pkg-deinstall
Normal file
@ -0,0 +1,8 @@
|
||||
if [ ! "$2" = "POST-DEINSTALL" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "If you want to completely remove this package"
|
||||
echo "remove /dev/dazuko"
|
||||
echo ""
|
6
security/dazuko/pkg-descr
Normal file
6
security/dazuko/pkg-descr
Normal file
@ -0,0 +1,6 @@
|
||||
A common interface across all platforms is needed for 3rd party file
|
||||
access control. With such an interface, focus could be redirected
|
||||
from OS hacking to solving real problems. The interface is here. It
|
||||
is called Dazuko.
|
||||
|
||||
WWW: http://dazuko.org/
|
11
security/dazuko/pkg-install
Normal file
11
security/dazuko/pkg-install
Normal file
@ -0,0 +1,11 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$2" = "POST-INSTALL" ]; then
|
||||
if ! [ -c /dev/dazuko ]; then
|
||||
mknod /dev/dazuko c 33 0
|
||||
fi
|
||||
echo ""
|
||||
echo "To load the module do kldload $1/modules/dazuko.ko"
|
||||
echo ""
|
||||
fi
|
||||
exit 0
|
2
security/dazuko/pkg-plist
Normal file
2
security/dazuko/pkg-plist
Normal file
@ -0,0 +1,2 @@
|
||||
modules/dazuko.ko
|
||||
@unexec rmdir %D/modules 2>/dev/null || true
|
Loading…
Reference in New Issue
Block a user