From owner-svn-ports-all@freebsd.org Mon Feb 3 16:34:25 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1CDF92281ED; Mon, 3 Feb 2020 16:34:25 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48BD1Y00z5z3H0n; Mon, 3 Feb 2020 16:34:25 +0000 (UTC) (envelope-from mat@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EF9C83987; Mon, 3 Feb 2020 16:34:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 013GYO49058498; Mon, 3 Feb 2020 16:34:24 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 013GYNgq058493; Mon, 3 Feb 2020 16:34:23 GMT (envelope-from mat@FreeBSD.org) Message-Id: <202002031634.013GYNgq058493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 3 Feb 2020 16:34:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525046 - in head/security: . gnupg-pkcs11-scd X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/security: . gnupg-pkcs11-scd X-SVN-Commit-Revision: 525046 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Feb 2020 16:34:25 -0000 Author: mat Date: Mon Feb 3 16:34:23 2020 New Revision: 525046 URL: https://svnweb.freebsd.org/changeset/ports/525046 Log: gnupg-pkcs11 is a project to implement a BSD-licensed smart-card daemon to enable the use of PKCS#11 tokens with GnuPG. WWW: https://github.com/alonbl/gnupg-pkcs11-scd Added: head/security/gnupg-pkcs11-scd/ head/security/gnupg-pkcs11-scd/Makefile (contents, props changed) head/security/gnupg-pkcs11-scd/distinfo (contents, props changed) head/security/gnupg-pkcs11-scd/pkg-descr (contents, props changed) head/security/gnupg-pkcs11-scd/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Feb 3 15:55:05 2020 (r525045) +++ head/security/Makefile Mon Feb 3 16:34:23 2020 (r525046) @@ -178,6 +178,7 @@ SUBDIR += gnome-ssh-askpass SUBDIR += gnomint SUBDIR += gnupg + SUBDIR += gnupg-pkcs11-scd SUBDIR += gnupg1 SUBDIR += gnutls SUBDIR += go-cve-dictionary Added: head/security/gnupg-pkcs11-scd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gnupg-pkcs11-scd/Makefile Mon Feb 3 16:34:23 2020 (r525046) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= gnupg-pkcs11-scd +DISTVERSION= 0.9.2 +CATEGORIES= security +MASTER_SITES= https://github.com/alonbl/${PORTNAME}/releases/download/${DISTNAME}/ + +MAINTAINER= mat@FreeBSD.org +COMMENT= PKCS\#11 enabled gnupg scd + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libassuan.so:security/libassuan \ + libgcrypt.so:security/libgcrypt \ + libgnutls.so:security/gnutls \ + libgpg-error.so:security/libgpg-error \ + libpkcs11-helper.so:security/pkcs11-helper + +USES= pkgconfig ssl tar:bz2 + +GNU_CONFIGURE= yes + +CONFIGURE_ARGS= --with-libassuan-prefix=${LOCALBASE} \ + --with-libgcrypt-prefix=${LOCALBASE} \ + --with-libgpg-error-prefix=${LOCALBASE} \ + --without-docs \ + --without-openssl + +OPTIONS_DEFINE= EXAMPLES + +post-install-EXAMPLES-on: + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/gnupg-pkcs11-scd/gnupg-pkcs11-scd.conf.example \ + ${STAGEDIR}${EXAMPLESDIR}/gnupg-pkcs11-scd.conf + +.include Added: head/security/gnupg-pkcs11-scd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gnupg-pkcs11-scd/distinfo Mon Feb 3 16:34:23 2020 (r525046) @@ -0,0 +1,3 @@ +TIMESTAMP = 1580745692 +SHA256 (gnupg-pkcs11-scd-0.9.2.tar.bz2) = fddd798f8b5f9f960d2a7f6961b00ef7b49b00e8bf069c113a4d42b5e44fd0d5 +SIZE (gnupg-pkcs11-scd-0.9.2.tar.bz2) = 147337 Added: head/security/gnupg-pkcs11-scd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gnupg-pkcs11-scd/pkg-descr Mon Feb 3 16:34:23 2020 (r525046) @@ -0,0 +1,4 @@ +gnupg-pkcs11 is a project to implement a BSD-licensed smart-card daemon to +enable the use of PKCS#11 tokens with GnuPG. + +WWW: https://github.com/alonbl/gnupg-pkcs11-scd Added: head/security/gnupg-pkcs11-scd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/gnupg-pkcs11-scd/pkg-plist Mon Feb 3 16:34:23 2020 (r525046) @@ -0,0 +1,3 @@ +bin/gnupg-pkcs11-scd +man/man1/gnupg-pkcs11-scd.1.gz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gnupg-pkcs11-scd.conf