Summary: This is the ASN.1 library used in GNUTLS Name: libtasn1 Version: 1.5 Release: 1 License: LGPL Group: System Environment/Libraries URL: http://www.gnu.org/software/gnutls/download.html Source0: ftp://ftp.gnutls.org/pub/gnutls/%{name}/%{name}-%{version}.tar.gz Source1: ftp://ftp.gnutls.org/pub/gnutls/%{name}/%{name}-%{version}.tar.gz.sig Patch0: %{name}-%{version}-aix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: bison %description This is the ASN.1 library used in GNUTLS. More up to date information can be found at http://www.gnu.org/software/gnutls and http://www.gnutls.org. The library is available as 32-bit and 64-bit. %package devel Summary: Files for development of applications which will use libtasn1 Group: Development/Libraries Requires: %{name} = %{version}-%{release} Requires: info Requires: /sbin/install-info %description devel This is the ASN.1 library used in GNUTLS. More up to date information can be found at http://www.gnu.org/software/gnutls and http://www.gnutls.org. This package contains files for development of applications which will use libtasn1. If you are compiling a 32-bit program, no special compiler options are needed. If you are compiling a 64-bit program, you have to compile and link your application with "xlc -q64" or "gcc -maix64". %package tools Summary: Some ASN.1 tools Group: Applications/Text Requires: %{name} = %{version}-%{release} %description tools This is the ASN.1 library used in GNUTLS. More up to date information can be found at http://www.gnu.org/software/gnutls and http://www.gnutls.org. This package contains tools using the libtasn library. %prep %setup -q %patch0 %build # setup environment for 32-bit and 64-bit builds export AR="ar -X32_64" export NM="nm -X32_64" # first build the 64-bit version export CC="xlc -q64" ./configure \ --prefix=%{_prefix} \ --mandir=%{_prefix}/man \ --infodir=%{_prefix}/info \ --enable-shared --enable-static make %{?_smp_mflags} cp lib/.libs/libtasn1.so.3 . make distclean # now build the 32-bit version export CC="xlc" ./configure \ --prefix=%{_prefix} \ --mandir=%{_prefix}/man \ --infodir=%{_prefix}/info \ --enable-shared --enable-static make %{?_smp_mflags} # add the 64-bit shared objects to the shared library containing already the # 32-bit shared objects ${AR} -q lib/.libs/libtasn1.a ./libtasn1.so.3 %install [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} make install DESTDIR=${RPM_BUILD_ROOT} gzip --best ${RPM_BUILD_ROOT}%{_infodir}/*.info rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir ( cd ${RPM_BUILD_ROOT} for dir in bin include lib do mkdir -p usr/${dir} cd usr/${dir} ln -sf ../..%{_prefix}/${dir}/* . cd - done ) %clean [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} %post devel /sbin/install-info %{_infodir}/%{name}.info.gz %{_infodir}/dir || : %preun devel if [ "$1" = 0 ]; then /sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir || : fi %files %defattr(-,root,system,-) %doc doc/TODO %doc AUTHORS COPYING* ChangeLog NEWS README THANKS %{_libdir}/*.a /usr/lib/*.a %files tools %defattr(-,root,system,-) %{_bindir}/asn1* %{_mandir}/man1/* /usr/bin/asn1* %files devel %defattr(-,root,system,-) %{_bindir}/*-config %{_libdir}/*.la %{_libdir}/pkgconfig/*.pc %{_includedir}/* %{_datadir}/aclocal/libtasn1.m4 %{_infodir}/*.info.* %{_mandir}/man3/* /usr/bin/*-config /usr/include/* /usr/lib/*.la %changelog * Fri Sep 26 2008 Michael Perzl - 1.5-1 - updated to version 1.5 * Fri May 16 2008 Michael Perzl - 1.4-1 - updated to version 1.4 * Fri Mar 28 2008 Michael Perzl - 1.3-2 - corrected some SPEC file errors * Wed Feb 20 2008 Michael Perzl - 1.3-1 - updated to version 1.3 * Mon Jan 07 2008 Michael Perzl - 1.2-2 - included both 32-bit and 64-bit shared objects * Mon Dec 17 2007 Michael Perzl 1.2-1 - First version for AIX5L v5.1 and higher