From owner-svn-ports-head@FreeBSD.ORG Wed Jan 30 00:58:23 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D94562E8; Wed, 30 Jan 2013 00:58:23 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CBAFE2F2; Wed, 30 Jan 2013 00:58:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r0U0wNQR021678; Wed, 30 Jan 2013 00:58:23 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r0U0wMi3021673; Wed, 30 Jan 2013 00:58:22 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201301300058.r0U0wMi3021673@svn.freebsd.org> From: Jason Helfman Date: Wed, 30 Jan 2013 00:58:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311194 - in head/security: . pam_yubico pam_yubico/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.14 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: Wed, 30 Jan 2013 00:58:23 -0000 Author: jgh Date: Wed Jan 30 00:58:22 2013 New Revision: 311194 URL: http://svnweb.freebsd.org/changeset/ports/311194 Log: - add new port: security/pam_yubico The Yubico authentication device Yubikey generates one-time passwords that can be used for authentication. This module allows you to use the Yubikey device to authenticate to the PAM system. WWW: https://code.google.com/p/yubico-pam/ PR: 175650 Submitted by: matt@mjslabs.com Added: head/security/pam_yubico/ head/security/pam_yubico/Makefile (contents, props changed) head/security/pam_yubico/distinfo (contents, props changed) head/security/pam_yubico/files/ head/security/pam_yubico/files/pkg-message.in (contents, props changed) head/security/pam_yubico/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jan 30 00:42:38 2013 (r311193) +++ head/security/Makefile Wed Jan 30 00:58:22 2013 (r311194) @@ -618,6 +618,7 @@ SUBDIR += pam_search_list SUBDIR += pam_smb SUBDIR += pam_ssh_agent_auth + SUBDIR += pam_yubico SUBDIR += pamtester SUBDIR += paperkey SUBDIR += parano Added: head/security/pam_yubico/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pam_yubico/Makefile Wed Jan 30 00:58:22 2013 (r311194) @@ -0,0 +1,60 @@ +# $FreeBSD$ + +PORTNAME= pam_yubico +PORTVERSION= 2.12 +CATEGORIES= security +MASTER_SITES= GOOGLE_CODE + +MAINTAINER= matt@mjslabs.com +COMMENT= PAM module for authenticating with a Yubico YubiKey + +LICENSE= BSD + +LIB_DEPENDS= ykclient:${PORTSDIR}/security/ykclient \ + ykpers-1:${PORTSDIR}/security/ykpers \ + yubikey:${PORTSDIR}/security/libyubikey + +GNU_CONFIGURE= yes +USE_PKGCONFIG= build + +PLIST_FILES= include/drop_privs.h \ + include/util.h \ + lib/security/pam_yubico.la \ + lib/security/pam_yubico.so +PLIST_DIRS= lib/security +SUB_FILES= pkg-message +PORTDOCS= * + +PROJECTHOST= yubico-pam + +OPTIONS_DEFINE= CR LDAP DOCS +CR_DESC= Include Challenge/response support +OPTIONS_DEFAULT= CR LDAP + +.include + +.if ${PORT_OPTIONS:MCR} +CONFIGURE_ARGS+= --with-cr +MAN1= ykpamcfg.1 +PLIST_FILES+= bin/ykpamcfg +.else +CONFIGURE_ARGS+= --without-cr +.endif + +.if ${PORT_OPTIONS:MLDAP} +CONFIGURE_ARGS+= --with-ldap +.else +CONFIGURE_ARGS+= --without-ldap +.endif + +regression-test: build + @(cd ${WRKSRC}; ${MAKE} check) + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + @${CAT} ${PKGMESSAGE} + +.include Added: head/security/pam_yubico/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pam_yubico/distinfo Wed Jan 30 00:58:22 2013 (r311194) @@ -0,0 +1,2 @@ +SHA256 (pam_yubico-2.12.tar.gz) = b3efb41b72191b2ccb0b9cde691bd4ee6df5d8245254dd4f4c4e4bb8886c25c3 +SIZE (pam_yubico-2.12.tar.gz) = 367164 Added: head/security/pam_yubico/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pam_yubico/files/pkg-message.in Wed Jan 30 00:58:22 2013 (r311194) @@ -0,0 +1,6 @@ + +For setup instructions on authenticating with your YubiKey, see: +%%DOCSDIR%%/README +or +https://github.com/Yubico/yubico-pam/blob/master/README + Added: head/security/pam_yubico/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pam_yubico/pkg-descr Wed Jan 30 00:58:22 2013 (r311194) @@ -0,0 +1,5 @@ +The Yubico authentication device Yubikey generates one-time passwords that can +be used for authentication. This module allows you to use the Yubikey device to +authenticate to the PAM system. + +WWW: https://code.google.com/p/yubico-pam/