]> git.pld-linux.org Git - packages/pam-pam_pkcs11.git/blame - pam-pam_pkcs11.spec
- new URLs, updated to 0.6.9
[packages/pam-pam_pkcs11.git] / pam-pam_pkcs11.spec
CommitLineData
3814dc6a
JB
1#
2# Conditional build:
3%bcond_without curl # cURL support
4%bcond_without ldap # LDAP support (via OpenLDAP)
5%bcond_with nss # NSS instead of OpenSSL
6%bcond_without pcsc # PC/SC Lite support
7
069b30c5 8Summary: PAM login module that allows a X.509 certificate based user login
0e8e401c 9Summary(pl.UTF-8): Moduł PAM umożliwiający logowanie się w oparciu o certyfikat X.509
069b30c5 10Name: pam-pam_pkcs11
3814dc6a 11Version: 0.6.9
069b30c5
JB
12Release: 1
13License: LGPL v2.1+
14Group: Libraries
3814dc6a
JB
15#Source0Download: https://github.com/OpenSC/pam_pkcs11/releases
16Source0: https://github.com/OpenSC/pam_pkcs11/archive/pam_pkcs11-%{version}.tar.gz
17# Source0-md5: e09e5e54ca92e0610e70eef9170e2355
18URL: https://github.com/OpenSC/pam_pkcs11
19BuildRequires: autoconf >= 2.69
161e1d39 20BuildRequires: automake
3814dc6a 21%{?with_curl:BuildRequires: curl-devel}
0d4f7561 22BuildRequires: gettext-tools >= 0.17
069b30c5 23BuildRequires: libxslt-progs
3814dc6a
JB
24BuildRequires: libtool >= 2:2
25%{?with_nss:BuildRequires: nss-devel}
26%{?with_ldap:BuildRequires: openldap-devel >= 2.4.6}
27%{!?with_nss:BuildRequires: openssl-devel}
069b30c5 28BuildRequires: pam-devel
3814dc6a 29%{?with_pcsc:BuildRequires: pcsc-lite-devel >= 1.6.0}
069b30c5 30BuildRequires: pkgconfig
3814dc6a 31%{?with_pcsc:Requires: pcsc-lite-libs >= 1.6.0}
069b30c5
JB
32BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
33
34%define _libdir /%{_lib}
35
36%description
37This PAM login module allows a X.509 certificate based user login. The
38certificate and its dedicated private key are thereby accessed by
39means of an appropriate PKCS#11 module. For the verification of the
40users' certificates, locally stored CA certificates as well as either
41online or locally accessible CRLs are used.
42
5642c86a
JR
43%description -l pl.UTF-8
44Ten moduł PAM umożliwia logowanie się w oparciu o certyfikaty X.509.
45Certyfikat i jego klucz prywatny są odczytywane poprzez odpowiedni
46moduł PKCS#11. Do weryfikacji certyfikatów użytkowników używane są
47lokalnie przechowywane certyfikaty CA albo dostępne lokalnie lub
069b30c5
JB
48zdalnie CRL.
49
50%prep
3814dc6a 51%setup -q -n pam_pkcs11-pam_pkcs11-%{version}
161e1d39 52
069b30c5 53%build
161e1d39
JB
54%{__gettextize}
55%{__libtoolize}
56%{__aclocal} -I aclocal
57%{__autoconf}
58%{__autoheader}
59%{__automake}
069b30c5 60%configure \
718c7224 61 --disable-silent-rules \
3814dc6a
JB
62 %{?with_curl:--with-curl} \
63 %{!?with_ldap:--without-ldap} \
64 %{?with_nss:--with-nss} \
65 %{!?with_pcsc:--without-pcsclite}
069b30c5
JB
66%{__make}
67
68%install
69rm -rf $RPM_BUILD_ROOT
70
71%{__make} install \
72 DESTDIR=$RPM_BUILD_ROOT
73
39a287df
JB
74%{__rm} $RPM_BUILD_ROOT/%{_lib}/security/pam_pkcs11.la
75%{__rm} $RPM_BUILD_ROOT%{_libdir}/pam_pkcs11/*.la
3814dc6a
JB
76# packaged as %doc
77%{__rm} $RPM_BUILD_ROOT%{_docdir}/pam_pkcs11/*.example
069b30c5 78
161e1d39
JB
79%find_lang pam_pkcs11
80
069b30c5
JB
81%clean
82rm -rf $RPM_BUILD_ROOT
83
161e1d39 84%files -f pam_pkcs11.lang
069b30c5
JB
85%defattr(644,root,root,755)
86%doc AUTHORS ChangeLog NEWS README TODO doc/{README.*,*.html,*.css} etc/*.example
39a287df 87%attr(755,root,root) %{_bindir}/card_eventmgr
3814dc6a
JB
88%attr(755,root,root) %{_bindir}/pkcs11_eventmgr
89%attr(755,root,root) %{_bindir}/pkcs11_inspect
90%attr(755,root,root) %{_bindir}/pkcs11_listcerts
91%attr(755,root,root) %{_bindir}/pkcs11_make_hash_link
92%attr(755,root,root) %{_bindir}/pkcs11_setup
39a287df 93%attr(755,root,root) %{_bindir}/pklogin_finder
069b30c5
JB
94%attr(755,root,root) /%{_lib}/security/pam_pkcs11.so
95%dir %{_libdir}/pam_pkcs11
96%attr(755,root,root) %{_libdir}/pam_pkcs11/*.so
39a287df
JB
97%{_mandir}/man1/card_eventmgr.1*
98%{_mandir}/man1/pkcs11_*.1*
99%{_mandir}/man1/pklogin_finder.1*
100%{_mandir}/man8/pam_pkcs11.8*
This page took 0.049523 seconds and 4 git commands to generate.