]> git.pld-linux.org Git - packages/opensc.git/blame - opensc.spec
rebuild with openssl 3.0.0
[packages/opensc.git] / opensc.spec
CommitLineData
455ac4e7
JB
1#
2# Conditional build:
46bcb391
JB
3%bcond_with openct # use OpenCT instead of PC/SC for reader access
4%bcond_without openpace # OpenPACE support
53aad453 5#
1cefa9cb 6Summary: OpenSC library - for accessing SmartCard devices using PC/SC Lite
ae88f326 7Summary(pl.UTF-8): Biblioteka OpenSC - do korzystania z kart procesorowych przy użyciu PC/SC Lite
896b833c 8Name: opensc
5f4e2851 9Version: 0.19.0
0cf7bf64 10Release: 5
18e38179 11License: LGPL v2.1+
1cefa9cb 12Group: Applications
46bcb391
JB
13#Source0Download: https://github.com/OpenSC/OpenSC/releases
14Source0: https://github.com/OpenSC/OpenSC/releases/download/%{version}/%{name}-%{version}.tar.gz
5f4e2851
AM
15# Source0-md5: 40734b2343cf83c62c4c403f8a37475e
16Patch0: build.patch
44f39839 17Patch1: no-Werror.patch
4f1bc56e 18URL: https://github.com/OpenSC/OpenSC/wiki
c28ca417
JB
19BuildRequires: autoconf >= 2.60
20BuildRequires: automake >= 1:1.10
455ac4e7 21BuildRequires: docbook-style-xsl
8d087e90 22BuildRequires: libltdl-devel
1cefa9cb 23BuildRequires: libtool >= 1:1.4.2-9
d740a4df 24BuildRequires: libxslt-progs
455ac4e7 25%{?with_openct:BuildRequires: openct-devel}
46bcb391 26%{?with_openpace:BuildRequires: openpace-devel >= 0.9}
72eaba4f 27BuildRequires: openssl-devel >= 0.9.7d
46bcb391 28%{!?with_openct:BuildRequires: pcsc-lite-devel >= 1.8.22}
34f2d3c1 29BuildRequires: pkgconfig >= 1:0.9.0
1cefa9cb 30BuildRequires: readline-devel
c28ca417
JB
31BuildRequires: rpmbuild(macros) >= 1.364
32BuildRequires: zlib-devel
4f1bc56e 33Requires: filesystem >= 4.0-28
46bcb391
JB
34%{?with_openpace:Requires: openpace >= 0.9}
35%{!?with_openct:Requires: pcsc-lite-libs >= 1.8.22}
455ac4e7
JB
36Obsoletes: browser-plugin-opensc
37Obsoletes: mozilla-plugin-opensc
896b833c 38BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
39
1eb351c9 40# datadir is used for config files and (editable) profiles
ac174bda
JB
41%define _datadir /etc
42%define _sysconfdir /etc/opensc
d6f32863 43
896b833c 44%description
1cefa9cb
JB
45libopensc is a library for accessing SmartCard devices using PC/SC
46Lite middleware package. It is also the core library of the OpenSC
47project. Basic functionality (e.g. SELECT FILE, READ BINARY) should
48work on any ISO 7816-4 compatible SmartCard. Encryption and decryption
49using private keys on the SmartCard is at the moment possible only
50with PKCS#15 compatible cards, such as the FINEID (Finnish Electronic
51IDentity) card manufactured by Setec.
896b833c 52
8623b75b 53%description -l pl.UTF-8
1cefa9cb 54libopensc to biblioteka do korzystania z kart procesorowych przy
8623b75b
JR
55użyciu pakietu warstwy pośredniej PC/SC Lite. Jest to także podstawowa
56biblioteka projektu OpenSC. Podstawowa funkcjonalność (np. SELECT
57FILE, READ BINARY) powinna działać także z dowolną kartą procesorową
58zgodną z ISO-7816-4. Szyfrowanie i odszyfrowywanie przy użyciu
59prywatnych kluczy na karcie na razie jest możliwe tylko przy użyciu
1cefa9cb
JB
60kart kompatybilnych z PKCS#16, takich jak FINEID (Finnish Electronic
61IDentity) produkowanych przez Setec.
896b833c 62
63%package devel
1cefa9cb 64Summary: OpenSC development files
ae88f326 65Summary(pl.UTF-8): Pliki dla programistów używających OpenSC
896b833c 66Group: Development/Tools
46bcb391 67Requires: %{name} = %{version}-%{release}
24aae781 68Requires: libltdl-devel
455ac4e7 69%{?with_openct:Requires: openct-devel}
ef886f95 70Requires: openssl-devel >= 0.9.7d
46bcb391 71%{!?with_openct:Requires: pcsc-lite-devel >= 1.8.22}
ef886f95 72Requires: zlib-devel
896b833c 73
74%description devel
1cefa9cb 75OpenSC development files.
896b833c 76
8623b75b
JR
77%description devel -l pl.UTF-8
78Pliki dla programistów używających OpenSC.
896b833c 79
80%package static
455ac4e7
JB
81Summary: Static OpenSC library
82Summary(pl.UTF-8): Bibloteka statyczna OpenSC
896b833c 83Group: Development/Tools
46bcb391 84Requires: %{name}-devel = %{version}-%{release}
896b833c 85
86%description static
455ac4e7 87Static OpenSC library.
896b833c 88
8623b75b 89%description static -l pl.UTF-8
455ac4e7 90Biblioteka statyczna OpenSC.
d6f32863 91
47359102
JB
92%package -n bash-completion-opensc
93Summary: Bash completion for OpenSC commands
94Summary(pl.UTF-8): Bashowe uzupełnianie parametrów poleceń OpenSC
95Group: Applications/Shells
96Requires: %{name} = %{version}-%{release}
97
98%description -n bash-completion-opensc
99Bash completion for OpenSC commands.
100
101%description -n bash-completion-opensc -l pl.UTF-8
102Bashowe uzupełnianie parametrów poleceń OpenSC.
103
896b833c 104%prep
1cefa9cb 105%setup -q
5f4e2851 106%patch0 -p1
44f39839 107%patch1 -p1
2504dc81 108
896b833c 109%build
1cefa9cb 110%{__libtoolize}
c28ca417 111%{__aclocal} -I m4
1cefa9cb 112%{__autoconf}
ac174bda 113%{__autoheader}
1cefa9cb 114%{__automake}
d6f32863 115%configure \
455ac4e7
JB
116 %{?with_openct:--enable-openct --disable-pcsc} \
117 %{!?with_openct:--enable-pcsc --disable-openct} \
46bcb391 118 %{!?with_openpace:--disable-openpace} \
80bde4f7 119 --disable-silent-rules \
455ac4e7
JB
120 --enable-doc \
121 --with-pcsc-provider=%{_libdir}/libpcsclite.so.1
896b833c 122
1cefa9cb 123%{__make}
896b833c 124
125%install
126rm -rf $RPM_BUILD_ROOT
3d10579f 127install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_libdir}/pkcs11}
70be04b7 128
3d10579f 129%{__make} install \
47359102
JB
130 DESTDIR=$RPM_BUILD_ROOT \
131 completiondir=/etc/bash_completion.d
896b833c 132
455ac4e7 133# not needed (dlopened by soname)
ef886f95 134%{__rm} $RPM_BUILD_ROOT%{_libdir}/{onepin-opensc-pkcs11,opensc-pkcs11,pkcs11-spy}.la
46bcb391 135# API not exported
ef886f95 136%{__rm} $RPM_BUILD_ROOT%{_libdir}/lib{opensc,smm-local}.la
61f848e8 137
53aad453 138%{__rm} -r $RPM_BUILD_ROOT%{_docdir}/%{name}
0a3c046b 139
896b833c 140%clean
141rm -rf $RPM_BUILD_ROOT
142
1cefa9cb
JB
143%post -p /sbin/ldconfig
144%postun -p /sbin/ldconfig
896b833c 145
146%files
147%defattr(644,root,root,755)
112cff34 148%doc NEWS README doc/tools/tools.html
d9747ba8 149%attr(755,root,root) %{_bindir}/cardos-tool
1cefa9cb 150%attr(755,root,root) %{_bindir}/cryptoflex-tool
ef886f95 151%attr(755,root,root) %{_bindir}/dnie-tool
5f4e2851 152%attr(755,root,root) %{_bindir}/egk-tool
8d087e90 153%attr(755,root,root) %{_bindir}/eidenv
112cff34 154%attr(755,root,root) %{_bindir}/gids-tool
4f1bc56e 155%attr(755,root,root) %{_bindir}/iasecc-tool
8d087e90 156%attr(755,root,root) %{_bindir}/netkey-tool
46bcb391 157%attr(755,root,root) %{_bindir}/npa-tool
4f1bc56e 158%attr(755,root,root) %{_bindir}/openpgp-tool
5f4e2851 159%attr(755,root,root) %{_bindir}/opensc-asn1
1cefa9cb 160%attr(755,root,root) %{_bindir}/opensc-explorer
5f4e2851 161%attr(755,root,root) %{_bindir}/opensc-notify
1cefa9cb 162%attr(755,root,root) %{_bindir}/opensc-tool
88647e66 163%attr(755,root,root) %{_bindir}/piv-tool
61f848e8 164%attr(755,root,root) %{_bindir}/pkcs11-tool
455ac4e7
JB
165%attr(755,root,root) %{_bindir}/pkcs15-crypt
166%attr(755,root,root) %{_bindir}/pkcs15-init
167%attr(755,root,root) %{_bindir}/pkcs15-tool
4f1bc56e 168%attr(755,root,root) %{_bindir}/sc-hsm-tool
c9f4880d 169%attr(755,root,root) %{_bindir}/westcos-tool
c39ac2c0 170%attr(755,root,root) %{_libdir}/libopensc.so.*.*.*
5f4e2851 171%attr(755,root,root) %ghost %{_libdir}/libopensc.so.6
ef886f95 172%attr(755,root,root) %{_libdir}/libsmm-local.so.*.*.*
5f4e2851 173%attr(755,root,root) %ghost %{_libdir}/libsmm-local.so.6
c28ca417 174# PKCS11 modules
ef886f95 175%attr(755,root,root) %{_libdir}/onepin-opensc-pkcs11.so
2f74c13c 176%attr(755,root,root) %{_libdir}/opensc-pkcs11.so
8d087e90 177%attr(755,root,root) %{_libdir}/pkcs11-spy.so
ef886f95 178%attr(755,root,root) %{_libdir}/pkcs11/onepin-opensc-pkcs11.so
c28ca417
JB
179%attr(755,root,root) %{_libdir}/pkcs11/opensc-pkcs11.so
180%attr(755,root,root) %{_libdir}/pkcs11/pkcs11-spy.so
1cefa9cb 181%dir %{_datadir}/opensc
c9f4880d 182%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/opensc.conf
4bdbfbe7 183%config(noreplace) %verify(not md5 mtime size) %{_datadir}/opensc/*.profile
46bcb391
JB
184%if %{with openpace}
185/etc/eac/cvc/DESRCACC100001
186%endif
d9747ba8 187%{_mandir}/man1/cardos-tool.1*
61f848e8 188%{_mandir}/man1/cryptoflex-tool.1*
47359102 189%{_mandir}/man1/dnie-tool.1*
5f4e2851 190%{_mandir}/man1/egk-tool.1*
53aad453 191%{_mandir}/man1/eidenv.1*
112cff34 192%{_mandir}/man1/gids-tool.1*
4f1bc56e 193%{_mandir}/man1/iasecc-tool.1*
8d087e90 194%{_mandir}/man1/netkey-tool.1*
46bcb391 195%{_mandir}/man1/npa-tool.1*
4f1bc56e 196%{_mandir}/man1/openpgp-tool.1*
5f4e2851 197%{_mandir}/man1/opensc-asn1.1*
61f848e8 198%{_mandir}/man1/opensc-explorer.1*
5f4e2851 199%{_mandir}/man1/opensc-notify.1*
61f848e8 200%{_mandir}/man1/opensc-tool.1*
53aad453 201%{_mandir}/man1/piv-tool.1*
92519f5f 202%{_mandir}/man1/pkcs11-tool.1*
455ac4e7
JB
203%{_mandir}/man1/pkcs15-crypt.1*
204%{_mandir}/man1/pkcs15-init.1*
205%{_mandir}/man1/pkcs15-tool.1*
4f1bc56e 206%{_mandir}/man1/sc-hsm-tool.1*
c9f4880d 207%{_mandir}/man1/westcos-tool.1*
5f4e2851 208%{_mandir}/man5/opensc.conf.5*
c39ac2c0 209%{_mandir}/man5/pkcs15-profile.5*
896b833c 210
211%files devel
212%defattr(644,root,root,755)
1cefa9cb 213%attr(755,root,root) %{_libdir}/libopensc.so
ef886f95 214%attr(755,root,root) %{_libdir}/libsmm-local.so
46bcb391 215%{_pkgconfigdir}/opensc-pkcs11.pc
896b833c 216
217%files static
218%defattr(644,root,root,755)
8d087e90 219%{_libdir}/libopensc.a
47359102
JB
220
221%files -n bash-completion-opensc
222%defattr(644,root,root,755)
223/etc/bash_completion.d/cardos-tool
224/etc/bash_completion.d/cryptoflex-tool
225/etc/bash_completion.d/dnie-tool
5f4e2851 226/etc/bash_completion.d/egk-tool
47359102 227/etc/bash_completion.d/eidenv
112cff34 228/etc/bash_completion.d/gids-tool
47359102
JB
229/etc/bash_completion.d/iasecc-tool
230/etc/bash_completion.d/netkey-tool
5f4e2851 231/etc/bash_completion.d/npa-tool
47359102 232/etc/bash_completion.d/openpgp-tool
5f4e2851 233/etc/bash_completion.d/opensc-asn1
47359102 234/etc/bash_completion.d/opensc-explorer
5f4e2851 235/etc/bash_completion.d/opensc-notify
47359102
JB
236/etc/bash_completion.d/opensc-tool
237/etc/bash_completion.d/piv-tool
238/etc/bash_completion.d/pkcs11-tool
239/etc/bash_completion.d/pkcs15-crypt
240/etc/bash_completion.d/pkcs15-init
241/etc/bash_completion.d/pkcs15-tool
242/etc/bash_completion.d/sc-hsm-tool
243/etc/bash_completion.d/westcos-tool
This page took 0.124302 seconds and 4 git commands to generate.