149 lines
4.1 KiB
RPMSpec
149 lines
4.1 KiB
RPMSpec
Name: opencryptoki
|
|
Summary: Implementation of the PKCS#11 (Cryptoki) specification v2.11
|
|
Version: 2.2.8
|
|
Release: 5%{?dist}
|
|
License: CPL
|
|
Group: System Environment/Base
|
|
URL: http://sourceforge.net/projects/opencryptoki
|
|
Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
|
Patch0: %{name}-2.2.8-do-not-create-group-in-pkcs11_startup.patch
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
Requires(pre): shadow-utils coreutils sed
|
|
Requires(post): chkconfig
|
|
Requires(preun): chkconfig
|
|
# This is for /sbin/service
|
|
Requires(preun): initscripts
|
|
Requires(postun): initscripts
|
|
BuildRequires: openssl-devel trousers-devel
|
|
BuildRequires: autoconf automake libtool
|
|
%ifarch s390 s390x
|
|
BuildRequires: libica-devel >= 1.3.7
|
|
%endif
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%description
|
|
openCryptoki implements the PKCS#11 specification v2.11. It includes support
|
|
for cryptographic hardware such as the IBM 4758 Cryptographic CoProcessor,
|
|
the IBM eServer Cryptographic Accelerator (FC 4960 on pSeries) or the Trusted
|
|
Platform Module (TPM) as well as a software token for testing.
|
|
|
|
%package libs
|
|
Group: System Environment/Libraries
|
|
Summary: The runtime libraries for opencryptoki package
|
|
|
|
%description libs
|
|
The runtime libraries for use with openCryptoki based applications.
|
|
|
|
%package devel
|
|
Group: Development/Libraries
|
|
Summary: Development files for openCryptoki
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
%description devel
|
|
This package contains the development header files for building openCryptoki
|
|
based applications.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
|
|
%build
|
|
# Upstream tarball has unnecessary executable perms set on the sources
|
|
find . -name '*.[ch]' -print0 | xargs -0 chmod -x
|
|
|
|
./bootstrap.sh
|
|
%configure --enable-tpmtok
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/usr/include/opencryptoki
|
|
cp -a usr/include/pkcs11/{apiclient.h,pkcs11.h,pkcs11types.h} $RPM_BUILD_ROOT/usr/include/opencryptoki
|
|
|
|
# Move the initscript to its proper place
|
|
mkdir -p $RPM_BUILD_ROOT%{_initddir}
|
|
mv $RPM_BUILD_ROOT%{_sysconfdir}/init.d/pkcsslotd $RPM_BUILD_ROOT%{_initddir}/pkcsslotd
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_sharedstatedir}/%{name}
|
|
|
|
# Remove unwanted cruft
|
|
rm -rf doc/CVS
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/*.la
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/%{name}/stdll/*.la
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun
|
|
if [ "$1" -ge "1" ] ; then
|
|
/sbin/service pkcsslotd condrestart >/dev/null 2>&1
|
|
fi
|
|
exit 0
|
|
|
|
%post
|
|
/sbin/chkconfig --add pkcsslotd
|
|
exit 0
|
|
|
|
%preun
|
|
if [ "$1" = "0" ] ; then
|
|
/sbin/service pkcsslotd stop >/dev/null 2>&1
|
|
/sbin/chkconfig --del pkcsslotd
|
|
fi
|
|
exit 0
|
|
|
|
%pre
|
|
getent group pkcs11 >/dev/null || groupadd -r pkcs11
|
|
# Add root to the pkcs11 group
|
|
/usr/sbin/usermod -G $(/usr/bin/id --groups --name root | /bin/sed -e '
|
|
# add the pkcs group if it is missing
|
|
/(^| )pkcs11( |$)/!s/$/ pkcs11/
|
|
# replace spaces by commas
|
|
y/ /,/
|
|
'),pkcs11 root
|
|
exit 0
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc FAQ README LICENSE doc/*
|
|
%{_initddir}/pkcsslotd
|
|
%{_sbindir}/*
|
|
%{_mandir}/man*/*
|
|
%dir %attr(770,root,pkcs11) %{_sharedstatedir}/%{name}
|
|
%ifarch s390 s390x
|
|
%doc usr/lib/pkcs11/cca_stdll/README-IBM_CCA_users
|
|
%endif
|
|
|
|
%files libs
|
|
%defattr(-,root,root,-)
|
|
%{_sysconfdir}/ld.so.conf.d/*
|
|
# Unversioned .so symlinks usually belong to -devel packages, but opencryptoki
|
|
# needs them in the main package, because:
|
|
# pkcs11_startup looks for opencryptoki/stdll/*.so, and
|
|
# documentation suggests that programs should dlopen "PKCS11_API.so".
|
|
%{_libdir}/opencryptoki
|
|
%{_libdir}/pkcs11
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_includedir}/*
|
|
|
|
|
|
%changelog
|
|
* Tue Jul 21 2009 Michal Schmidt <mschmidt@redhat.com> - 2.2.8-5
|
|
- Require arch-specific dependency on -libs.
|
|
|
|
* Tue Jul 21 2009 Michal Schmidt <mschmidt@redhat.com> - 2.2.8-4
|
|
- Return support for crypto hw on s390.
|
|
- Renamed to opencryptoki.
|
|
- Simplified multilib by putting libs in subpackage as suggested by Dan Horák.
|
|
|
|
* Tue Jul 21 2009 Michal Schmidt <mschmidt@redhat.com> - 2.2.8-2
|
|
- Fedora package based on RHEL-5 package.
|