Bug 175503 - New port: security/ykclient Yubico C client library
Summary: New port: security/ykclient Yubico C client library
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-22 11:10 UTC by matt
Modified: 2013-01-26 01:40 UTC (History)
0 users

See Also:


Attachments
ykclient.shar (1.71 KB, text/plain)
2013-01-22 11:10 UTC, matt
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description matt 2013-01-22 11:10:00 UTC
	ykclient implements online validation of Yubikey One-Time Passwords

	WWW: http://yubico.com
Comment 1 Jason Helfman freebsd_committer freebsd_triage 2013-01-26 01:13:50 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-01-26 01:35:52 UTC
Author: jgh
Date: Sat Jan 26 01:35:42 2013
New Revision: 310995
URL: http://svnweb.freebsd.org/changeset/ports/310995

Log:
  - add new port: security/ykclient
  
  This project implements online validation of Yubikey OTPs. It is written in C
  and provides a shared library for use by other software.
  
  WWW: https://code.google.com/p/yubico-c-client
  
  PR:		175503
  Submitted by:	matt@mjslabs.com

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sat Jan 26 01:01:32 2013	(r310994)
+++ head/security/Makefile	Sat Jan 26 01:35:42 2013	(r310995)
@@ -985,6 +985,7 @@
     SUBDIR += yara
     SUBDIR += yassl
     SUBDIR += yersinia
+    SUBDIR += ykclient
     SUBDIR += zebedee
     SUBDIR += zenmap
     SUBDIR += zombiezapper

Added: head/security/ykclient/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/ykclient/Makefile	Sat Jan 26 01:35:42 2013	(r310995)
@@ -0,0 +1,34 @@
+# $FreeBSD$
+
+PORTNAME=	ykclient
+PORTVERSION=	2.9
+CATEGORIES=	security
+MASTER_SITES=	GOOGLE_CODE
+
+MAINTAINER=	matt@mjslabs.com
+COMMENT=	Yubico C client library
+
+LICENSE=	BSD
+
+LIB_DEPENDS=	curl:${PORTSDIR}/ftp/curl
+BUILD_DEPENDS=	curl-config:${PORTSDIR}/ftp/curl
+
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+
+PLIST_FILES=	bin/ykclient \
+		include/ykclient.h \
+		include/ykclient_server_response.h \
+		lib/libykclient.a \
+		lib/libykclient.la \
+		lib/libykclient.so \
+		lib/libykclient.so.7
+
+PROJECTHOST=	yubico-c-client
+
+MAKE_JOBS_UNSAFE=	yes
+
+regression-test: build
+	@(cd ${WRKSRC}; ${MAKE} check)
+
+.include <bsd.port.mk>

Added: head/security/ykclient/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/ykclient/distinfo	Sat Jan 26 01:35:42 2013	(r310995)
@@ -0,0 +1,2 @@
+SHA256 (ykclient-2.9.tar.gz) = f5f93d77dd9f2e3fd1854f7fcfbbc3cfbf4227c3ebe145c8a3f7a2339efbeca5
+SIZE (ykclient-2.9.tar.gz) = 352183

Added: head/security/ykclient/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/ykclient/pkg-descr	Sat Jan 26 01:35:42 2013	(r310995)
@@ -0,0 +1,4 @@
+This project implements online validation of Yubikey OTPs. It is written in C
+and provides a shared library for use by other software.
+
+WWW: https://code.google.com/p/yubico-c-client
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Jason Helfman freebsd_committer freebsd_triage 2013-01-26 01:35:54 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!