Add new port -- Yubico PIV tool
The Yubico PIV tool is used for interacting with the Privilege and Identification Card (PIV) application on a YubiKey. With it you may generate keys on the device, importing keys and certificates, and create certificate requests, and other operations. A shared library and a command-line tool is included.
This commit is contained in:
parent
f49d189573
commit
af3fd373da
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=417460
4 changed files with 53 additions and 0 deletions
|
@ -1154,6 +1154,7 @@
|
|||
SUBDIR += yersinia
|
||||
SUBDIR += ykclient
|
||||
SUBDIR += ykpers
|
||||
SUBDIR += yubico-piv-tool
|
||||
SUBDIR += yubikey-personalization-gui
|
||||
SUBDIR += zebedee
|
||||
SUBDIR += zenmap
|
||||
|
|
41
security/yubico-piv-tool/Makefile
Normal file
41
security/yubico-piv-tool/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= yubico-piv-tool
|
||||
PORTVERSION= 1.4.0
|
||||
#PORTREVISION= 0
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= https://developers.yubico.com/yubico-piv-tool/Releases/
|
||||
|
||||
MAINTAINER= ume@FreeBSD.org
|
||||
COMMENT= Yubico PIV tool
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
LIB_DEPENDS= libpcsclite.so:devel/pcsc-lite
|
||||
|
||||
USES= libtool pathfix pkgconfig
|
||||
USE_LDCONFIG= yes
|
||||
USE_OPENSSL= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= OPENSSL_CFLAGS="$(OPENSSL_CFLAGS)" \
|
||||
OPENSSL_LIBS="-L$(OPENSSLLIB) -lcrypto"
|
||||
OPENSSL_CFLAGS=-I$(OPENSSLINC)
|
||||
|
||||
PLIST_FILES= bin/yubico-piv-tool \
|
||||
include/ykcs11/ykcs11-version.h \
|
||||
include/ykpiv/ykpiv-version.h \
|
||||
include/ykpiv/ykpiv.h \
|
||||
lib/libykcs11.a \
|
||||
lib/libykcs11.so \
|
||||
lib/libykcs11.so.1 \
|
||||
lib/libykcs11.so.1.3.2 \
|
||||
lib/libykpiv.a \
|
||||
lib/libykpiv.so \
|
||||
lib/libykpiv.so.1 \
|
||||
lib/libykpiv.so.1.3.2 \
|
||||
libdata/pkgconfig/ykcs11.pc \
|
||||
libdata/pkgconfig/ykpiv.pc \
|
||||
man/man1/yubico-piv-tool.1.gz
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/yubico-piv-tool/distinfo
Normal file
3
security/yubico-piv-tool/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1466749908
|
||||
SHA256 (yubico-piv-tool-1.4.0.tar.gz) = 009dbea4256a7a49820962da22eb872e8d21b9126f92787a50bc896dd5d477df
|
||||
SIZE (yubico-piv-tool-1.4.0.tar.gz) = 516045
|
8
security/yubico-piv-tool/pkg-descr
Normal file
8
security/yubico-piv-tool/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
The Yubico PIV tool is used for interacting with the Privilege and
|
||||
Identification Card (PIV) application on a YubiKey.
|
||||
|
||||
With it you may generate keys on the device, importing keys and
|
||||
certificates, and create certificate requests, and other operations. A
|
||||
shared library and a command-line tool is included.
|
||||
|
||||
WWW: https://developers.yubico.com/yubico-piv-tool/
|
Loading…
Reference in a new issue