svn commit: r310994 - in head/security: . libyubikey

Jason Helfman jgh at FreeBSD.org
Sat Jan 26 01:01:34 UTC 2013


Author: jgh
Date: Sat Jan 26 01:01:32 2013
New Revision: 310994
URL: http://svnweb.freebsd.org/changeset/ports/310994

Log:
  add new port: security/libyubikey
  
  Library for decrypting and parsing YubiKey One-Time Passwords (OTP), written in
  C.
  
  WWW: https://code.google.com/p/yubico-c/
  
  PR:		175495
  Submitted by:	matt at mjslabs.com

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Fri Jan 25 23:44:20 2013	(r310993)
+++ head/security/Makefile	Sat Jan 26 01:01:32 2013	(r310994)
@@ -280,6 +280,7 @@
     SUBDIR += libtasn1
     SUBDIR += libtomcrypt
     SUBDIR += libwhisker
+    SUBDIR += libyubikey
     SUBDIR += linux-f10-cyrus-sasl2
     SUBDIR += linux-f10-gnutls
     SUBDIR += linux-f10-libgcrypt

Added: head/security/libyubikey/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/libyubikey/Makefile	Sat Jan 26 01:01:32 2013	(r310994)
@@ -0,0 +1,32 @@
+# $FreeBSD$
+
+PORTNAME=	libyubikey
+PORTVERSION=	1.9
+CATEGORIES=	security devel
+MASTER_SITES=	GOOGLE_CODE
+
+MAINTAINER=	matt at mjslabs.com
+COMMENT=	Library for decrypting and parsing YubiKey One-Time Passwords
+
+LICENSE=	BSD
+
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+
+PLIST_FILES=	bin/modhex \
+		bin/ykgenerate \
+		bin/ykparse \
+		include/yubikey.h \
+		lib/libyubikey.a \
+		lib/libyubikey.la \
+		lib/libyubikey.so \
+		lib/libyubikey.so.1
+
+PROJECTHOST=	yubico-c
+
+MAKE_JOBS_UNSAFE=yes
+
+regression-test: build
+	@(cd ${WRKSRC}; ${MAKE} check)
+
+.include <bsd.port.mk>

Added: head/security/libyubikey/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/libyubikey/distinfo	Sat Jan 26 01:01:32 2013	(r310994)
@@ -0,0 +1,2 @@
+SHA256 (libyubikey-1.9.tar.gz) = fb720bd683dd37968904e1ff3d4486307d3d5933f6c6cdc96f81ab27a19c46a6
+SIZE (libyubikey-1.9.tar.gz) = 321889

Added: head/security/libyubikey/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/libyubikey/pkg-descr	Sat Jan 26 01:01:32 2013	(r310994)
@@ -0,0 +1,4 @@
+Library for decrypting and parsing YubiKey One-Time Passwords (OTP), written in
+C.
+
+WWW: https://code.google.com/p/yubico-c/


More information about the svn-ports-all mailing list