diff options
author | sem <sem@FreeBSD.org> | 2005-09-04 03:03:17 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-09-04 03:03:17 +0800 |
commit | 907e018c6f570a74eb4f1e6f43ac9a8f1b630540 (patch) | |
tree | 1da5e6b160a2b570361bdbd9ca51c86e1b9712f1 /security/bcrypt | |
parent | 826d4d8ec5df508273d0d7c410f9f3da93caf73a (diff) | |
download | freebsd-ports-gnome-907e018c6f570a74eb4f1e6f43ac9a8f1b630540.tar.gz freebsd-ports-gnome-907e018c6f570a74eb4f1e6f43ac9a8f1b630540.tar.zst freebsd-ports-gnome-907e018c6f570a74eb4f1e6f43ac9a8f1b630540.zip |
Bcrypt is a blowfish file encryption utility which aims for cross-platform
portability.
PR: ports/84798
Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Diffstat (limited to 'security/bcrypt')
-rw-r--r-- | security/bcrypt/Makefile | 40 | ||||
-rw-r--r-- | security/bcrypt/distinfo | 2 | ||||
-rw-r--r-- | security/bcrypt/pkg-descr | 11 |
3 files changed, 53 insertions, 0 deletions
diff --git a/security/bcrypt/Makefile b/security/bcrypt/Makefile new file mode 100644 index 000000000000..929493b6c88c --- /dev/null +++ b/security/bcrypt/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: bcrypt +# Date created: 11 Aug 2005 +# Whom: Emanuel Haupt <ehaupt@critical.ch> +# +# $FreeBSD$ +# + +PORTNAME= bcrypt +PORTVERSION= 1.1 +CATEGORIES= security +MASTER_SITES= http://bcrypt.sourceforge.net/ + +MAINTAINER= ehaupt@critical.ch +COMMENT= A cross-plattform blowfish encryption utility + +USE_REINPLACE= yes + +ALL_TARGET= ${PORTNAME} + +LDFLAGS+= -lz +MAKE_ENV+= LDFLAGS="${LDFLAGS}" + +PORTDOCS= README +MAN1= bcrypt.1 +PLIST_FILES= bin/bcrypt + +post-patch: + @${REINPLACE_CMD} -E 's/^(CC|CFLAGS|LDFLAGS|PREFIX)\ /\1?/' \ + ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/security/bcrypt/distinfo b/security/bcrypt/distinfo new file mode 100644 index 000000000000..c62f826b72e3 --- /dev/null +++ b/security/bcrypt/distinfo @@ -0,0 +1,2 @@ +MD5 (bcrypt-1.1.tar.gz) = 8ce2873836ccd433329c8df0e37e298c +SIZE (bcrypt-1.1.tar.gz) = 36781 diff --git a/security/bcrypt/pkg-descr b/security/bcrypt/pkg-descr new file mode 100644 index 000000000000..7a7d31298e2b --- /dev/null +++ b/security/bcrypt/pkg-descr @@ -0,0 +1,11 @@ +Bcrypt is a blowfish file encryption utility which aims for cross-platform +portability. + +In addition to providing 448-bit encryption, bcrypt overwrites input files with +random garbage before deletion in order to make low-level data recovery much +more difficult. + +WWW: http://bcrypt.sourceforge.net/ + +- ehaupt +ehaupt@critical.ch |