Search Criteria
Package Details: pam_pkcs11 0.6.11-1
Git Clone URL: | https://aur.archlinux.org/pam_pkcs11.git (read-only, click to copy) |
---|---|
Package Base: | pam_pkcs11 |
Description: | PAM module allows a X.509 certificate based user login |
Upstream URL: | https://opensc.github.io/pam_pkcs11/ |
Licenses: | |
Submitter: | master |
Maintainer: | ilpianista |
Last Packager: | ilpianista |
Votes: | 7 |
Popularity: | 0.121835 |
First Submitted: | 2009-12-02 20:34 |
Last Updated: | 2019-05-22 21:43 |
Latest Comments
1 2 Next › Last »
Unb0rn commented on 2019-04-25 10:27
Looks like it's finally going to be resolved. https://github.com/OpenSC/pam_pkcs11/issues/35 Here maintainer gave me working solution (well, I don't know if it actually works, but it is possible to build the package now) and told me that this patch will be merged.
Unb0rn commented on 2019-04-13 08:19
Any news on 0.6.10? Maybe you should just bundle your patch in PKGBUILD, last commit in repo was over 7 months ago...
ilpianista commented on 2018-12-03 23:23
0.6.10 doesn't build with openssl 1.1.0. I will update to it if https://github.com/OpenSC/pam_pkcs11/pull/32 gets accepted.
ilpianista commented on 2016-04-18 17:56
Thank you, fixed!
osc commented on 2016-04-18 15:22
hi
it doesn't compile.
ilpianista commented on 2016-03-02 18:46
Thank you, fixed!
Anonymous comment on 2016-03-02 10:50
The original source still exists, but it is now non-bootstrapped and has another directory name.
Changing PKGBUILD like this helped in my case:
build() {
cd ${pkgname}-${pkgname}-$pkgver
./bootstrap
<...>
package() {
cd ${pkgname}-${pkgname}-$pkgver
<...>
visibilityspots commented on 2015-08-10 20:24
The download source has been moved to sourceforge: http://sourceforge.net/projects/opensc/files/pam_pkcs11/pam_pkcs11-0.6.8.tar.gz/download
changing source=("https://www.opensc-project.org/svnp/files/trunk/${pkgname}/${pkgname}-${pkgver}.tar.gz")
to
source=("http://sourceforge.net/projects/opensc/files/${pkgname}/${pkgname}-${pkgver}.tar.gz/download")
Solved the issue for me
visibilityspots commented on 2015-08-10 07:22
curl: (60) SSL certificate problem: unable to get local issuer certificate
==> ERROR: Failure while downloading pam_pkcs11-0.6.8.tar.gz
Aborting...
==> ERROR: Makepkg was unable to build pam_pkcs11.
Seems like opensc-project.org has been moved https://www.opensc-project.org/opensc.
Anonymous comment on 2010-07-28 12:20
Actually I just found this doesn't worke, since apparently the PAM module looks for the other modules (opensc_mapper.so and openssh_mapper.so) in /usr/lib/pam_pkcs11, no matter which --libdir you specify.
I worked around this using your original PKGBUILD (with libdir=/usr/lib) and added the following lines:
mkdir -p -m 755 $startdir/lib/security
install -D -m 644 $startdir/pkg/usr/lib/security/pam_pkcs11.so \
$startdir/pkg/lib/security/pam_pkcs11.so
rm -rf $startdir/pkg/usr/lib/security