diff options
author | miwi <miwi@FreeBSD.org> | 2006-09-25 05:19:48 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2006-09-25 05:19:48 +0800 |
commit | 9592916e86504bc41e60fe6a76e0ffba441bd96c (patch) | |
tree | 7d91e7926af514ac576b8409660c1ddccf516ac6 /security/fwipe/Makefile | |
parent | 529dedda6144c4fc43d686a67453a6cc453cff03 (diff) | |
download | freebsd-ports-gnome-9592916e86504bc41e60fe6a76e0ffba441bd96c.tar.gz freebsd-ports-gnome-9592916e86504bc41e60fe6a76e0ffba441bd96c.tar.zst freebsd-ports-gnome-9592916e86504bc41e60fe6a76e0ffba441bd96c.zip |
Fwipe is a secure file erasing program. fwipe0, which actually erases
your files, is immune to filenames containing spaces, carriage returns,
dashes, or any other special characters. You can use it in place of rm
in cron jobs, together with "find ... -print0". The output of fwipe0 is
specially designed to be parsed easily by machine, so it can be embedded
in other applications which need secure file erasure.
WWW: http://jeenyus.net/~budney/linux/software/fwipe.html
PR: ports/103488
Submitted by: David Thiel <lx(at)redundancy.redundancy.org>
Diffstat (limited to 'security/fwipe/Makefile')
-rw-r--r-- | security/fwipe/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/security/fwipe/Makefile b/security/fwipe/Makefile new file mode 100644 index 000000000000..05f4cbd07448 --- /dev/null +++ b/security/fwipe/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: wipe +# Date created: 2006-09-22 +# Whom: David Thiel <lx@redundancy.redundancy.org> +# +# $FreeBSD$ +# + +PORTNAME= fwipe +PORTVERSION= 0.36 +CATEGORIES= security +MASTER_SITES= http://jeenyus.net/~budney/linux/software/fwipe/ \ + http://redundancy.redundancy.org/mirror/ + +MAINTAINER= lx@redundancy.redundancy.org +COMMENT= A djb-style file wiping utility + +ALL_TARGET= it +INSTALL_TARGET= setup check + +PLIST_FILES= bin/fwipe bin/fwipe0 bin/echo0 +MAN1= fwipe0.1 echo0.1 fwipe.1 + +post-extract: + @${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc + @${ECHO_CMD} "${CC} -s" > ${WRKSRC}/conf-ld + @${ECHO_CMD} "${PREFIX}" > ${WRKSRC}/conf-home + @${ECHO_CMD} "${PREFIX}" > ${WRKSRC}/conf-root + +.include <bsd.port.mk> |