summaryrefslogtreecommitdiff
path: root/security/bcrypt
diff options
context:
space:
mode:
authorSergey Matveychuk <sem@FreeBSD.org>2005-09-03 19:03:17 +0000
committerSergey Matveychuk <sem@FreeBSD.org>2005-09-03 19:03:17 +0000
commit65677c952165e41c22edaac594b3b31085282fbd (patch)
tree2418abf2263d25b8ebfbd1e761fcc42cbd70f4a2 /security/bcrypt
parentBmp2html is a simple program that converts a bmpfile to to a html file. (diff)
Bcrypt is a blowfish file encryption utility which aims for cross-platform
portability. PR: ports/84798 Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Notes
Notes: svn path=/head/; revision=141855
Diffstat (limited to 'security/bcrypt')
-rw-r--r--security/bcrypt/Makefile40
-rw-r--r--security/bcrypt/distinfo2
-rw-r--r--security/bcrypt/pkg-descr11
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