libgcrypt/libgcrypt.spec

144 lines
4.1 KiB
RPMSpec

#
# spec file for package libgcrypt
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libgcrypt
BuildRequires: libgpg-error-devel
BuildRequires: libtool
URL: http://www.gnu.org/directory/Security/libgcrypt.html
Version: 1.5.0
Release: 1
Summary: The GNU Crypto Library
License: GPLv2+ ; LGPLv2.1+
Group: Development/Libraries/C and C++
Source: %name-%version.tar.bz2
Source2: baselibs.conf
Patch0: %name-ppc64.patch
Patch1: libgcrypt-strict-aliasing.patch
Patch3: libgcrypt-1.4.1-rijndael_no_strict_aliasing.patch
Patch4: libgcrypt-sparcv9.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Libgcrypt is a general purpose crypto library based on the code used in
GnuPG (alpha version).
%package -n libgcrypt11
Summary: The GNU Crypto Library
Group: Development/Libraries/C and C++
# bug437293
%ifarch ppc64
Obsoletes: libgcrypt-64bit
%endif
#
# libgcrypt last used in 10.3
Obsoletes: libgcrypt < %{version}
Provides: libgcrypt = %{version}
%description -n libgcrypt11
Libgcrypt is a general purpose crypto library based on the code used in
GnuPG (alpha version).
%package devel
License: GFDLv1.1 ; GPLv2+ ; LGPLv2.1+ ; MIT
Summary: The GNU Crypto Library
Group: Development/Libraries/C and C++
Requires: libgcrypt11 = %version libgpg-error-devel
# bug437293
%ifarch ppc64
Obsoletes: libgcrypt-devel-64bit
%endif
#
PreReq: %install_info_prereq
%description devel
Libgcrypt is a general purpose crypto library based on the code used in
GnuPG (alpha version).
This package contains needed files to compile and link against the
library.
%prep
%setup -q -n libgcrypt-%version
%patch0 -p1
%patch1
%patch3 -p1
%patch4 -p1
%build
# define ciphers to build
ENABLE_CIPHER="arcfour blowfish cast5 des aes twofish serpent rfc2268 seed camellia"
ENABLE_PUBKEY="dsa elgamal rsa ecc"
ENABLE_DIGEST="crc md4 md5 rmd160 sha1 sha256 sha512 tiger whirlpool"
#
%{?suse_update_config}
autoreconf -fi
%configure --with-pic --libdir=/%{_lib} \
--enable-noexecstack \
--disable-static \
%ifarch %sparc
--disable-asm \
%endif
--enable-ciphers="$ENABLE_CIPHER" \
--enable-pubkey-ciphers="$ENABLE_PUBKEY" \
--enable-digests="$ENABLE_DIGEST"
%{__make} %{?_smp_mflags}
%check
# Nice idea. however this uses /dev/random, which hangs
# on hardware without random feeds.
#make check
%install
make DESTDIR=$RPM_BUILD_ROOT install
#
rm $RPM_BUILD_ROOT/%{_lib}/libgcrypt.la
mkdir -p $RPM_BUILD_ROOT%_libdir
%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/%{name}.so) %{buildroot}%{_libdir}/%{name}.so
%{__rm} -v %{buildroot}/%{_lib}/%{name}.so
%post -n libgcrypt11 -p /sbin/ldconfig
%postun -n libgcrypt11 -p /sbin/ldconfig
%post devel
%install_info --info-dir=%{_infodir} %{_infodir}/gcrypt.info.gz
%install_info --info-dir=%{_infodir} %{_infodir}/gcrypt-1.info.gz
%postun devel
%install_info_delete --info-dir=%{_infodir} %{_infodir}/gcrypt.info.gz
%install_info_delete --info-dir=%{_infodir} %{_infodir}/gcrypt-1.info.gz
%files -n libgcrypt11
%defattr(-,root,root)
%doc AUTHORS COPYING COPYING.LIB ChangeLog NEWS README THANKS TODO
/%_lib/libgcrypt.so.11*
%files devel
%defattr(-,root,root)
%_infodir/gcrypt.info.gz
%_infodir/gcrypt.info-1.gz
%_bindir/dumpsexp
%_bindir/hmac256
%_bindir/libgcrypt-config
%_libdir/libgcrypt.so
%_includedir/gcrypt*.h
%_datadir/aclocal/libgcrypt.m4
%changelog