From owner-svn-ports-head@freebsd.org Sat Oct 17 12:58:52 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A1C8A17034; Sat, 17 Oct 2015 12:58:52 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 599D81DD3; Sat, 17 Oct 2015 12:58:52 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9HCwpbX032534; Sat, 17 Oct 2015 12:58:51 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9HCwojM032528; Sat, 17 Oct 2015 12:58:50 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201510171258.t9HCwojM032528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Sat, 17 Oct 2015 12:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399532 - in head/security: . yubikey-personalization yubikey-personalization/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Oct 2015 12:58:52 -0000 Author: romain Date: Sat Oct 17 12:58:50 2015 New Revision: 399532 URL: https://svnweb.freebsd.org/changeset/ports/399532 Log: The YubiKey Personalization package contains a library and command line tool used to personalize (i.e., set a AES key) YubiKeys. WWW: https://github.com/Yubico/yubikey-personalization Added: head/security/yubikey-personalization/ head/security/yubikey-personalization/Makefile (contents, props changed) head/security/yubikey-personalization/distinfo (contents, props changed) head/security/yubikey-personalization/files/ head/security/yubikey-personalization/files/patch-Makefile.am (contents, props changed) head/security/yubikey-personalization/pkg-descr (contents, props changed) head/security/yubikey-personalization/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Oct 17 12:28:29 2015 (r399531) +++ head/security/Makefile Sat Oct 17 12:58:50 2015 (r399532) @@ -1101,6 +1101,7 @@ SUBDIR += yersinia SUBDIR += ykclient SUBDIR += ykpers + SUBDIR += yubikey-personalization SUBDIR += zebedee SUBDIR += zenmap SUBDIR += zxid Added: head/security/yubikey-personalization/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yubikey-personalization/Makefile Sat Oct 17 12:58:50 2015 (r399532) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= yubikey-personalization +PORTVERSION= 1.17.2 +CATEGORIES= security + +MAINTAINER= romain@FreeBSD.org +COMMENT= YubiKey personalization library and tool + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libyubikey.so:${PORTSDIR}/security/libyubikey + +USE_GITHUB= yes +GH_ACCOUNT= Yubico +GH_TAGNAME= v${PORTVERSION} + +GNU_CONFIGURE= yes +USES= autoreconf gmake libtool pathfix +USE_LDCONFIG= yes + +.include Added: head/security/yubikey-personalization/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yubikey-personalization/distinfo Sat Oct 17 12:58:50 2015 (r399532) @@ -0,0 +1,2 @@ +SHA256 (Yubico-yubikey-personalization-1.17.2-v1.17.2_GH0.tar.gz) = aa74ba4b9e6904133b54d19a99fd01da10a7dd5c906d839d47da88dd54a7c007 +SIZE (Yubico-yubikey-personalization-1.17.2-v1.17.2_GH0.tar.gz) = 125731 Added: head/security/yubikey-personalization/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yubikey-personalization/files/patch-Makefile.am Sat Oct 17 12:58:50 2015 (r399532) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2015-09-22 13:43:19 UTC ++++ Makefile.am +@@ -63,7 +63,7 @@ libykpers_1_la_LDFLAGS = -no-undefined \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + EXTRA_libykpers_1_la_DEPENDENCIES = libykpers-1.map + +-pkgconfigdir = $(libdir)/pkgconfig ++pkgconfigdir = $(libdir)/../libdata/pkgconfig + pkgconfig_DATA = ykpers-1.pc + + if HAVE_LD_VERSION_SCRIPT Added: head/security/yubikey-personalization/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yubikey-personalization/pkg-descr Sat Oct 17 12:58:50 2015 (r399532) @@ -0,0 +1,4 @@ +The YubiKey Personalization package contains a library and command line tool +used to personalize (i.e., set a AES key) YubiKeys. + +WWW: https://github.com/Yubico/yubikey-personalization Added: head/security/yubikey-personalization/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/yubikey-personalization/pkg-plist Sat Oct 17 12:58:50 2015 (r399532) @@ -0,0 +1,17 @@ +bin/ykchalresp +bin/ykinfo +bin/ykpersonalize +include/ykpers-1/ykcore.h +include/ykpers-1/ykdef.h +include/ykpers-1/ykpbkdf2.h +include/ykpers-1/ykpers-version.h +include/ykpers-1/ykpers.h +include/ykpers-1/ykstatus.h +lib/libykpers-1.a +lib/libykpers-1.so +lib/libykpers-1.so.1 +lib/libykpers-1.so.1.17.2 +libdata/pkgconfig/ykpers-1.pc +man/man1/ykchalresp.1.gz +man/man1/ykinfo.1.gz +man/man1/ykpersonalize.1.gz