diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2019-05-17 22:14:24 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2019-05-17 22:15:22 +0300 |
commit | 77378ffef5ca28c1c4f9c1da7c245b0b31424a87 (patch) | |
tree | a7ba862661e440b80296dbfa8555ea6a7fb34558 /sys-auth | |
parent | dev-libs/libxslt: stable 1.1.33-r1 for sparc, bug #684206 (diff) | |
download | gentoo-77378ffef5ca28c1c4f9c1da7c245b0b31424a87.tar.gz gentoo-77378ffef5ca28c1c4f9c1da7c245b0b31424a87.tar.bz2 gentoo-77378ffef5ca28c1c4f9c1da7c245b0b31424a87.zip |
sys-auth/pam_p11: version bump
Closes: https://bugs.gentoo.org/show_bug.cgi?id=686088
Signed-off-by: Alon Bar-Lev <alonbl@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/pam_p11/Manifest | 1 | ||||
-rw-r--r-- | sys-auth/pam_p11/pam_p11-0.3.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/sys-auth/pam_p11/Manifest b/sys-auth/pam_p11/Manifest index 824bcd823bc0..55e93521a679 100644 --- a/sys-auth/pam_p11/Manifest +++ b/sys-auth/pam_p11/Manifest @@ -1 +1,2 @@ DIST pam_p11-0.2.0.tar.gz 417550 BLAKE2B e3c5bb32d6c7c84776341796ebdb9850a9561778aee820acb2a6c61112a2a5df5ee7c539cb5974439e565046e944f4710b87c3b51dea61fdb2cd9171daac3a0c SHA512 2cadf6fe880c953554757099741f3cfe992067f251b7e7e977a6dda5f65cbe1f55b1de6d180638997eada0d3b760887091014b99f8ae4b6d31b25af8e555343c +DIST pam_p11-0.3.0.tar.gz 422806 BLAKE2B 60ac1cc0b8fff536553b2502f906f7730c1be760b2948389f5a6399979f994b3fcfa04226f1605c64d02bad47f46c9bd28fa076d819814b9121241b034407d4b SHA512 f89cf57f6365c25e54830d18180aad7d14b7eaef82eb0d419bcc3d8b881e1e07993a2c4e635e90b4f2fb779fec24fa0d912388f898d726e387bc0db63d772d49 diff --git a/sys-auth/pam_p11/pam_p11-0.3.0.ebuild b/sys-auth/pam_p11/pam_p11-0.3.0.ebuild new file mode 100644 index 000000000000..0bcd0d266656 --- /dev/null +++ b/sys-auth/pam_p11/pam_p11-0.3.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools 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" + +RDEPEND="virtual/pam + dev-libs/libp11:= + dev-libs/openssl:0=" + +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_configure() { + econf --with-pamdir="$(getpam_mod_dir)" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |