Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Jun 2016 11:11:13 +0000 (UTC)
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417460 - in head/security: . yubico-piv-tool
Message-ID:  <201606251111.u5PBBDlf095699@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ume
Date: Sat Jun 25 11:11:13 2016
New Revision: 417460
URL: https://svnweb.freebsd.org/changeset/ports/417460

Log:
  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.

Added:
  head/security/yubico-piv-tool/
  head/security/yubico-piv-tool/Makefile   (contents, props changed)
  head/security/yubico-piv-tool/distinfo   (contents, props changed)
  head/security/yubico-piv-tool/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Jun 25 10:16:38 2016	(r417459)
+++ head/security/Makefile	Sat Jun 25 11:11:13 2016	(r417460)
@@ -1154,6 +1154,7 @@
     SUBDIR += yersinia
     SUBDIR += ykclient
     SUBDIR += ykpers
+    SUBDIR += yubico-piv-tool
     SUBDIR += yubikey-personalization-gui
     SUBDIR += zebedee
     SUBDIR += zenmap

Added: head/security/yubico-piv-tool/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/yubico-piv-tool/Makefile	Sat Jun 25 11:11:13 2016	(r417460)
@@ -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>

Added: head/security/yubico-piv-tool/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/yubico-piv-tool/distinfo	Sat Jun 25 11:11:13 2016	(r417460)
@@ -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

Added: head/security/yubico-piv-tool/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/yubico-piv-tool/pkg-descr	Sat Jun 25 11:11:13 2016	(r417460)
@@ -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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606251111.u5PBBDlf095699>