diff options
author | pav <pav@FreeBSD.org> | 2006-01-15 10:11:40 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-15 10:11:40 +0000 |
commit | 89a8c5f8f7006b182e2e7d8843a0762dc157cdd9 (patch) | |
tree | 4d48b9e8eea21b7d9582dd6076ecb941e3d68340 /security | |
parent | 9a76a2bef6bfc3aa252350832bb062d7109c0cda (diff) | |
download | FreeBSD-ports-89a8c5f8f7006b182e2e7d8843a0762dc157cdd9.zip FreeBSD-ports-89a8c5f8f7006b182e2e7d8843a0762dc157cdd9.tar.gz |
bioapitool is a small BioAPI management utility which allows enrollment and
verification of BIR entries. It only implements a subset of the BioAPI
specification but should provide enough functionallity for basic account
management.
PR: ports/91749
Submitted by: Fredrik Lindberg <fli@shapeshifter.se>
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/bioapitool/Makefile | 27 | ||||
-rw-r--r-- | security/bioapitool/distinfo | 3 | ||||
-rw-r--r-- | security/bioapitool/pkg-descr | 4 |
4 files changed, 35 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 781bbed..c3c365f 100644 --- a/security/Makefile +++ b/security/Makefile @@ -33,6 +33,7 @@ SUBDIR += beecrypt SUBDIR += bfbtester SUBDIR += bioapi + SUBDIR += bioapitool SUBDIR += bjorb SUBDIR += borzoi SUBDIR += botan diff --git a/security/bioapitool/Makefile b/security/bioapitool/Makefile new file mode 100644 index 0000000..c65db35 --- /dev/null +++ b/security/bioapitool/Makefile @@ -0,0 +1,27 @@ +# Ports collection makefile for: bioapitool +# Date created: 12 January 2006 +# Whom: Fredrik Lindberg <fli@shapeshifter.se> +# +# $FreeBSD$ +# + +PORTNAME= bioapitool +PORTVERSION= 1.0 +CATEGORIES= security +MASTER_SITES= http://shapeshifter.se/pub/bioapitool/ + +MAINTAINER= fli@shapeshifter.se +COMMENT= BioAPI management utility + +LIB_DEPENDS= bioapi100.0:${PORTSDIR}/security/bioapi + +MAN1= bioapitool.1 +PLIST_FILES= sbin/bioapitool + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= needs at least FreeBSD 5.0-RELEASE +.endif + +.include <bsd.port.post.mk> diff --git a/security/bioapitool/distinfo b/security/bioapitool/distinfo new file mode 100644 index 0000000..b833266 --- /dev/null +++ b/security/bioapitool/distinfo @@ -0,0 +1,3 @@ +MD5 (bioapitool-1.0.tar.gz) = fcda08f5b067ed59a111ad30687989e7 +SHA256 (bioapitool-1.0.tar.gz) = 0cab7564742f8e698163e077b40fd821e5b5fa6bf76c5940f21eaf7ea51ba5cb +SIZE (bioapitool-1.0.tar.gz) = 5458 diff --git a/security/bioapitool/pkg-descr b/security/bioapitool/pkg-descr new file mode 100644 index 0000000..41d9881 --- /dev/null +++ b/security/bioapitool/pkg-descr @@ -0,0 +1,4 @@ +bioapitool is a small BioAPI management utility which allows enrollment and +verification of BIR entries. + +WWW: http://shapeshifter.se/code/bioapitool |