From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C72A31382C5 for ; Wed, 16 May 2018 18:36:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4C6CE08DC; Wed, 16 May 2018 18:36:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3F68E08DC for ; Wed, 16 May 2018 18:36:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A22FC335C07 for ; Wed, 16 May 2018 18:36:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0898C43 for ; Wed, 16 May 2018 18:36:06 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1526494549.8c524aadb2c964ca60743e93bcd098d09dcfbf65.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_p11/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/pam_p11/Manifest sys-auth/pam_p11/pam_p11-0.2.0.ebuild X-VCS-Directories: sys-auth/pam_p11/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 8c524aadb2c964ca60743e93bcd098d09dcfbf65 X-VCS-Branch: master Date: Wed, 16 May 2018 18:36:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 30cdd873-fe3f-45d6-845d-5edcdf173ab9 X-Archives-Hash: f1ad142af7a32a1187af66647e00d2b8 commit: 8c524aadb2c964ca60743e93bcd098d09dcfbf65 Author: Alon Bar-Lev gentoo org> AuthorDate: Wed May 16 18:15:49 2018 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Wed May 16 18:15:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c524aad sys-auth/pam_p11: version bump Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-auth/pam_p11/Manifest | 1 + sys-auth/pam_p11/pam_p11-0.2.0.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/sys-auth/pam_p11/Manifest b/sys-auth/pam_p11/Manifest index d62fd315ffe..594b4a64e46 100644 --- a/sys-auth/pam_p11/Manifest +++ b/sys-auth/pam_p11/Manifest @@ -1 +1,2 @@ DIST pam_p11-0.1.6.tar.gz 351244 BLAKE2B a07f747a7abccc49e3c7bb7ceea5d4fce5c0491c2dcadfa0c5f5ce2215af724d187f00f6f1f7e43525e76f88afcf18ad74c3d38a793329e6c3175bfe696bbf3a SHA512 92ea894dfe605400dd3684b67bfb3fa4a4b6b67f0818791b492dd002063ebcf85eeb93c07d2f60ece98e579f298061c2e0c225554b6dc618bb1e335ac69f36b0 +DIST pam_p11-0.2.0.tar.gz 417550 BLAKE2B e3c5bb32d6c7c84776341796ebdb9850a9561778aee820acb2a6c61112a2a5df5ee7c539cb5974439e565046e944f4710b87c3b51dea61fdb2cd9171daac3a0c SHA512 2cadf6fe880c953554757099741f3cfe992067f251b7e7e977a6dda5f65cbe1f55b1de6d180638997eada0d3b760887091014b99f8ae4b6d31b25af8e555343c diff --git a/sys-auth/pam_p11/pam_p11-0.2.0.ebuild b/sys-auth/pam_p11/pam_p11-0.2.0.ebuild new file mode 100644 index 00000000000..5719fc04d4c --- /dev/null +++ b/sys-auth/pam_p11/pam_p11-0.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit ltprune pam + +DESCRIPTION="PAM module for authenticating against PKCS#11 tokens" +HOMEPAGE="https://github.com/opensc/pam_p11/wiki" +SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="virtual/pam + dev-libs/libp11 + dev-libs/openssl:0=" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf --with-pamdir="$(getpam_mod_dir)" +} + +src_install() { + default + prune_libtool_files --all +}