diff options
author | garga <garga@FreeBSD.org> | 2005-07-26 17:10:11 +0000 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2005-07-26 17:10:11 +0000 |
commit | 2ec746500bfe70853723f3f5477363fbed66f8d8 (patch) | |
tree | 0d718458ab75a132ea138dc5e1e10837a82add7f /security | |
parent | a022eaa1f496288980afc1d0d913eeb618f641b2 (diff) | |
download | FreeBSD-ports-2ec746500bfe70853723f3f5477363fbed66f8d8.zip FreeBSD-ports-2ec746500bfe70853723f3f5477363fbed66f8d8.tar.gz |
BSDsfv is a flexible and highly compatible SFV checksum utility.
Features:
- create SFV files, verify downloaded single files or whole releases
- add banners to your SFV files
- very flexible and compatible with all other SFV tools currently known,
including SFVNIX compatibility mode concerning SFV files created
- easy to console application
- plug & play support for glFTPd and other demons including
count-missing-files feature for race scripts
WWW: http://bsdsfv.sourceforge.net/
PR: ports/84108
Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Approved by: flz (mentor)
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/bsdsfv/Makefile | 33 | ||||
-rw-r--r-- | security/bsdsfv/distinfo | 2 | ||||
-rw-r--r-- | security/bsdsfv/pkg-descr | 16 |
4 files changed, 52 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index cddfa91..3aca6ae 100644 --- a/security/Makefile +++ b/security/Makefile @@ -36,6 +36,7 @@ SUBDIR += botan SUBDIR += bro SUBDIR += bruteforceblocker + SUBDIR += bsdsfv SUBDIR += bubblegum SUBDIR += bugs SUBDIR += ca-roots diff --git a/security/bsdsfv/Makefile b/security/bsdsfv/Makefile new file mode 100644 index 0000000..e156e8f --- /dev/null +++ b/security/bsdsfv/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: bsdsfv +# Date created: 26 Jul 2005 +# Whom: Emanuel Haupt <ehaupt@critical.ch> +# +# $FreeBSD$ +# + +PORTNAME= bsdsfv +PORTVERSION= 1.18 +CATEGORIES= security +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ehaupt@critical.ch +COMMENT= A flexible SFV checksum utility + +WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_FILES= bin/bsdsfv +PORTDOCS= MANUAL + +USE_REINPLACE= yes + +post-patch: + @${REINPLACE_CMD} -e 's|^\(INSTALL_PREFIX =\).*$$|\1 ${PREFIX}|g' \ + ${WRKSRC}/Makefile + +.if !defined(NOPORTDOCS) +post-install: + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/security/bsdsfv/distinfo b/security/bsdsfv/distinfo new file mode 100644 index 0000000..bad540f --- /dev/null +++ b/security/bsdsfv/distinfo @@ -0,0 +1,2 @@ +MD5 (bsdsfv-1.18.tar.gz) = 381df19a827d5a20097ab95ea9e760fa +SIZE (bsdsfv-1.18.tar.gz) = 13301 diff --git a/security/bsdsfv/pkg-descr b/security/bsdsfv/pkg-descr new file mode 100644 index 0000000..8896f9c --- /dev/null +++ b/security/bsdsfv/pkg-descr @@ -0,0 +1,16 @@ +BSDsfv is a flexible and highly compatible SFV checksum utility. + +Features: + + - create SFV files, verify downloaded single files or whole releases + - add banners to your SFV files + - very flexible and compatible with all other SFV tools currently known, + including SFVNIX compatibility mode concerning SFV files created + - easy to console application + - plug & play support for glFTPd and other demons including + count-missing-files feature for race scripts + +WWW: http://bsdsfv.sourceforge.net/ + +- ehaupt +ehaupt@critical.ch |