svn commit: r399533 - in head/security: . yubikey-personalization-gui

Romain Tartière romain at FreeBSD.org
Sat Oct 17 12:59:36 UTC 2015


Author: romain
Date: Sat Oct 17 12:59:34 2015
New Revision: 399533
URL: https://svnweb.freebsd.org/changeset/ports/399533

Log:
  The YubiKey Personalization Tool is a Qt based Cross-Platform utility designed
  to facilitate re-configuration of YubiKeys on Windows, Linux and Mac platforms.
  The tool provides a same simple step-by-step approach to make configuration of
  YubiKeys easy to follow and understand, while still being powerful enough to
  exploit all functionality both of the YubiKey 1 and YubiKey 2 generation of
  keys. The tool provides the same functionality and user interface on Windows,
  Linux and Mac platforms.
  
  The Cross-Platform YubiKey Personalization Tool provides the following main
  functions:
    - Programming the YubiKey in "Yubico OTP" mode;
    - Programming the YubiKey in "OATH-HOTP" mode;
    - Programming the YubiKey in "Static Password" mode;
    - Programming the YubiKey in "Challenge-Response" mode;
    - Programming the NDEF feature of the YubiKey NEO;
    - Testing the challenge-response functionality of a YubiKey;
    - Deleting the configuration of a YubiKey;
    - Checking type and firmware version of the YubiKey.
  
  WWW: https://github.com/Yubico/yubikey-personalization-gui

Added:
  head/security/yubikey-personalization-gui/
  head/security/yubikey-personalization-gui/Makefile   (contents, props changed)
  head/security/yubikey-personalization-gui/distinfo   (contents, props changed)
  head/security/yubikey-personalization-gui/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Oct 17 12:58:50 2015	(r399532)
+++ head/security/Makefile	Sat Oct 17 12:59:34 2015	(r399533)
@@ -1102,6 +1102,7 @@
     SUBDIR += ykclient
     SUBDIR += ykpers
     SUBDIR += yubikey-personalization
+    SUBDIR += yubikey-personalization-gui
     SUBDIR += zebedee
     SUBDIR += zenmap
     SUBDIR += zxid

Added: head/security/yubikey-personalization-gui/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/yubikey-personalization-gui/Makefile	Sat Oct 17 12:59:34 2015	(r399533)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	yubikey-personalization-gui
+PORTVERSION=	3.1.23
+CATEGORIES=	security
+
+MAINTAINER=	romain at FreeBSD.org
+COMMENT=	Graphical YubiKey personalization tool
+
+LICENSE=	BSD2CLAUSE
+
+LIB_DEPENDS=	libykpers-1.so:${PORTSDIR}/security/yubikey-personalization
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Yubico
+GH_TAGNAME=	${PORTNAME}-${PORTVERSION}
+
+USES=		pkgconfig qmake
+USE_QT4=	corelib gui moc_build rcc_build testlib_build uic_build
+
+PLIST_FILES=	bin/yubikey-personalization-gui
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/build/release/yubikey-personalization-gui ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.post.mk>

Added: head/security/yubikey-personalization-gui/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/yubikey-personalization-gui/distinfo	Sat Oct 17 12:59:34 2015	(r399533)
@@ -0,0 +1,2 @@
+SHA256 (Yubico-yubikey-personalization-gui-3.1.23-yubikey-personalization-gui-3.1.23_GH0.tar.gz) = 16bdc594435a569b06a13d2e4247ac9b7ebf7405ffc41c292880022be47420c0
+SIZE (Yubico-yubikey-personalization-gui-3.1.23-yubikey-personalization-gui-3.1.23_GH0.tar.gz) = 1449889

Added: head/security/yubikey-personalization-gui/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/yubikey-personalization-gui/pkg-descr	Sat Oct 17 12:59:34 2015	(r399533)
@@ -0,0 +1,20 @@
+The YubiKey Personalization Tool is a Qt based Cross-Platform utility designed
+to facilitate re-configuration of YubiKeys on Windows, Linux and Mac platforms.
+The tool provides a same simple step-by-step approach to make configuration of
+YubiKeys easy to follow and understand, while still being powerful enough to
+exploit all functionality both of the YubiKey 1 and YubiKey 2 generation of
+keys. The tool provides the same functionality and user interface on Windows,
+Linux and Mac platforms.
+
+The Cross-Platform YubiKey Personalization Tool provides the following main
+functions:
+  - Programming the YubiKey in "Yubico OTP" mode;
+  - Programming the YubiKey in "OATH-HOTP" mode;
+  - Programming the YubiKey in "Static Password" mode;
+  - Programming the YubiKey in "Challenge-Response" mode;
+  - Programming the NDEF feature of the YubiKey NEO;
+  - Testing the challenge-response functionality of a YubiKey;
+  - Deleting the configuration of a YubiKey;
+  - Checking type and firmware version of the YubiKey.
+
+WWW: https://github.com/Yubico/yubikey-personalization-gui


More information about the svn-ports-head mailing list