2005-12-15 19:35:41 +00:00
|
|
|
%define nspr_version 4.6
|
|
|
|
|
|
|
|
Summary: Network Security Services
|
|
|
|
Name: nss
|
|
|
|
Version: 3.11
|
2006-02-07 13:14:45 +00:00
|
|
|
Release: 3.1
|
2005-12-15 19:35:41 +00:00
|
|
|
License: MPL/GPL/LGPL
|
|
|
|
URL: http://www.mozilla.org/projects/security/pki/nss/
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
Requires: nspr >= %{nspr_version}
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: nspr-devel >= %{nspr_version}
|
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: gawk
|
|
|
|
Provides: mozilla-nss
|
|
|
|
Obsoletes: mozilla-nss
|
|
|
|
|
2005-12-16 06:48:37 +00:00
|
|
|
Source0: %{name}-%{version}.tar.gz
|
2005-12-15 19:35:41 +00:00
|
|
|
Source1: nss.pc.in
|
|
|
|
Source2: nss-config.in
|
|
|
|
|
2005-12-15 21:39:46 +00:00
|
|
|
Patch1: nss-3.11-zdefs.patch
|
|
|
|
|
2005-12-15 19:35:41 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Network Security Services (NSS) is a set of libraries designed to
|
|
|
|
support cross-platform development of security-enabled client and
|
|
|
|
server applications. Applications built with NSS can support SSL v2
|
|
|
|
and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509
|
|
|
|
v3 certificates, and other security standards.
|
|
|
|
|
|
|
|
|
|
|
|
%package tools
|
|
|
|
Summary: Tools for the Network Security Services
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: nss = %{version}-%{release}
|
|
|
|
|
|
|
|
%description tools
|
|
|
|
Network Security Services (NSS) is a set of libraries designed to
|
|
|
|
support cross-platform development of security-enabled client and
|
|
|
|
server applications. Applications built with NSS can support SSL v2
|
|
|
|
and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509
|
|
|
|
v3 certificates, and other security standards.
|
|
|
|
|
|
|
|
Install the nss-tools package if you need command-line tools to
|
|
|
|
manipulate the NSS certificate and key database.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development libraries for Network Security Services
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: nss = %{version}-%{release}
|
|
|
|
Requires: nspr-devel >= %{nspr_version}
|
|
|
|
Provides: mozilla-nss-devel
|
|
|
|
Obsoletes: mozilla-nss-devel
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
Header and Library files for doing development with Network Security Services.
|
|
|
|
|
|
|
|
|
|
|
|
%package pkcs11-devel
|
|
|
|
Summary: Development libraries for PKCS #11 (Cryptoki) using NSS
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: nss-devel = %{version}-%{release}
|
|
|
|
|
|
|
|
%description pkcs11-devel
|
|
|
|
Library files for developing PKCS #11 modules using basic NSS
|
|
|
|
low level services.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2005-12-15 21:39:46 +00:00
|
|
|
%patch1 -p0
|
2005-12-15 19:35:41 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
# Enable compiler optimizations and disable debugging code
|
|
|
|
BUILD_OPT=1
|
|
|
|
export BUILD_OPT
|
|
|
|
|
|
|
|
# Generate symbolic info for debuggers
|
|
|
|
XCFLAGS=$RPM_OPT_FLAGS
|
|
|
|
export XCFLAGS
|
|
|
|
|
|
|
|
#export NSPR_INCLUDE_DIR=`nspr-config --includedir`
|
|
|
|
#export NSPR_LIB_DIR=`nspr-config --libdir`
|
|
|
|
|
|
|
|
PKG_CONFIG_ALLOW_SYSTEM_LIBS=1
|
|
|
|
PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
|
|
|
|
|
|
|
|
export PKG_CONFIG_ALLOW_SYSTEM_LIBS
|
|
|
|
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS
|
|
|
|
|
|
|
|
NSPR_INCLUDE_DIR=`/usr/bin/pkg-config --cflags-only-I nspr | sed 's/-I//'`
|
|
|
|
NSPR_LIB_DIR=`/usr/bin/pkg-config --libs-only-L nspr | sed 's/-L//'`
|
|
|
|
|
|
|
|
export NSPR_INCLUDE_DIR
|
|
|
|
export NSPR_LIB_DIR
|
|
|
|
|
|
|
|
%ifarch x86_64 ppc64 ia64 s390x
|
|
|
|
USE_64=1
|
|
|
|
export USE_64
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%{__make} -C ./mozilla/security/coreconf
|
|
|
|
%{__make} -C ./mozilla/security/dbm
|
|
|
|
%{__make} -C ./mozilla/security/nss
|
|
|
|
|
|
|
|
# Set up our package file
|
|
|
|
%{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
|
|
|
|
%{__cat} %{SOURCE1} | sed -e "s,%%libdir%%,%{_libdir},g" \
|
|
|
|
-e "s,%%prefix%%,%{_prefix},g" \
|
|
|
|
-e "s,%%exec_prefix%%,%{_prefix},g" \
|
|
|
|
-e "s,%%includedir%%,%{_includedir}/nss3,g" \
|
2005-12-15 22:06:15 +00:00
|
|
|
-e "s,%%NSPR_VERSION%%,%{nspr_version},g" \
|
2005-12-15 19:35:41 +00:00
|
|
|
-e "s,%%NSS_VERSION%%,%{version},g" > \
|
|
|
|
$RPM_BUILD_ROOT/%{_libdir}/pkgconfig/nss.pc
|
|
|
|
|
|
|
|
NSS_VMAJOR=`cat mozilla/security/nss/lib/nss/nss.h | grep "#define.*NSS_VMAJOR" | awk '{print $3}'`
|
|
|
|
NSS_VMINOR=`cat mozilla/security/nss/lib/nss/nss.h | grep "#define.*NSS_VMINOR" | awk '{print $3}'`
|
|
|
|
NSS_VPATCH=`cat mozilla/security/nss/lib/nss/nss.h | grep "#define.*NSS_VPATCH" | awk '{print $3}'`
|
|
|
|
|
|
|
|
export NSS_VMAJOR
|
|
|
|
export NSS_VMINOR
|
|
|
|
export NSS_VPATCH
|
|
|
|
|
|
|
|
%{__mkdir_p} $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
%{__cat} %{SOURCE2} | sed -e "s,@libdir@,%{_libdir},g" \
|
|
|
|
-e "s,@prefix@,%{_prefix},g" \
|
|
|
|
-e "s,@exec_prefix@,%{_prefix},g" \
|
|
|
|
-e "s,@includedir@,%{_includedir}/nss3,g" \
|
|
|
|
-e "s,@MOD_MAJOR_VERSION@,$NSS_VMAJOR,g" \
|
|
|
|
-e "s,@MOD_MINOR_VERSION@,$NSS_VMINOR,g" \
|
|
|
|
-e "s,@MOD_PATCH_VERSION@,$NSS_VPATCH,g" \
|
|
|
|
> $RPM_BUILD_ROOT/%{_bindir}/nss-config
|
|
|
|
|
|
|
|
chmod 755 $RPM_BUILD_ROOT/%{_bindir}/nss-config
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
|
|
|
# There is no make install target so we'll do it ourselves.
|
|
|
|
|
|
|
|
%{__mkdir_p} $RPM_BUILD_ROOT/%{_includedir}/nss3
|
|
|
|
%{__mkdir_p} $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
%{__mkdir_p} $RPM_BUILD_ROOT/%{_libdir}
|
|
|
|
|
|
|
|
# Copy the binary libraries we want
|
|
|
|
for file in libnss3.so libssl3.so libsmime3.so libsoftokn3.so libsoftokn3.chk libnssckbi.so libfreebl3.so libfreebl3.chk
|
|
|
|
do
|
|
|
|
%{__install} -m 644 mozilla/dist/*.OBJ/lib/$file $RPM_BUILD_ROOT/%{_libdir}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Copy the development libraries we want
|
|
|
|
for file in libcrmf.a libnssb.a libnssckfw.a
|
|
|
|
do
|
|
|
|
%{__install} -m 644 mozilla/dist/*.OBJ/lib/$file $RPM_BUILD_ROOT/%{_libdir}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Copy the binaries we want
|
|
|
|
for file in certutil modutil pk12util signtool ssltap
|
|
|
|
do
|
|
|
|
%{__install} -m 755 mozilla/dist/*.OBJ/bin/$file $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Copy the include files
|
|
|
|
for file in mozilla/dist/public/nss/*.h
|
|
|
|
do
|
|
|
|
%{__install} -m 644 $file $RPM_BUILD_ROOT/%{_includedir}/nss3
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%{__rm} -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/ldconfig >/dev/null 2>/dev/null
|
|
|
|
|
|
|
|
|
|
|
|
%postun
|
|
|
|
/sbin/ldconfig >/dev/null 2>/dev/null
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libnss3.so
|
|
|
|
%{_libdir}/libssl3.so
|
|
|
|
%{_libdir}/libsmime3.so
|
|
|
|
%{_libdir}/libsoftokn3.so
|
|
|
|
%{_libdir}/libsoftokn3.chk
|
|
|
|
%{_libdir}/libnssckbi.so
|
|
|
|
%{_libdir}/libfreebl3.so
|
|
|
|
%{_libdir}/libfreebl3.chk
|
|
|
|
|
|
|
|
|
|
|
|
%files tools
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/certutil
|
|
|
|
%{_bindir}/modutil
|
|
|
|
%{_bindir}/pk12util
|
|
|
|
%{_bindir}/signtool
|
|
|
|
%{_bindir}/ssltap
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libcrmf.a
|
|
|
|
%{_libdir}/pkgconfig/nss.pc
|
|
|
|
%{_bindir}/nss-config
|
|
|
|
|
|
|
|
%dir %{_includedir}/nss3
|
|
|
|
%{_includedir}/nss3/base64.h
|
|
|
|
%{_includedir}/nss3/blapit.h
|
|
|
|
%{_includedir}/nss3/cert.h
|
|
|
|
%{_includedir}/nss3/certdb.h
|
|
|
|
%{_includedir}/nss3/certt.h
|
|
|
|
%{_includedir}/nss3/ciferfam.h
|
|
|
|
%{_includedir}/nss3/cmmf.h
|
|
|
|
%{_includedir}/nss3/cmmft.h
|
|
|
|
%{_includedir}/nss3/cms.h
|
|
|
|
%{_includedir}/nss3/cmsreclist.h
|
|
|
|
%{_includedir}/nss3/cmst.h
|
|
|
|
%{_includedir}/nss3/crmf.h
|
|
|
|
%{_includedir}/nss3/crmft.h
|
|
|
|
%{_includedir}/nss3/cryptohi.h
|
|
|
|
%{_includedir}/nss3/cryptoht.h
|
|
|
|
%{_includedir}/nss3/ecl-exp.h
|
|
|
|
%{_includedir}/nss3/hasht.h
|
|
|
|
%{_includedir}/nss3/jar-ds.h
|
|
|
|
%{_includedir}/nss3/jar.h
|
|
|
|
%{_includedir}/nss3/jarfile.h
|
|
|
|
%{_includedir}/nss3/key.h
|
|
|
|
%{_includedir}/nss3/keyhi.h
|
|
|
|
%{_includedir}/nss3/keyt.h
|
|
|
|
%{_includedir}/nss3/keythi.h
|
|
|
|
%{_includedir}/nss3/nss.h
|
|
|
|
%{_includedir}/nss3/nssb64.h
|
|
|
|
%{_includedir}/nss3/nssb64t.h
|
2005-12-17 05:27:19 +00:00
|
|
|
%{_includedir}/nss3/nssckbi.h
|
2005-12-15 19:35:41 +00:00
|
|
|
%{_includedir}/nss3/nssilckt.h
|
|
|
|
%{_includedir}/nss3/nssilock.h
|
|
|
|
%{_includedir}/nss3/nsslocks.h
|
|
|
|
%{_includedir}/nss3/nssrwlk.h
|
|
|
|
%{_includedir}/nss3/nssrwlkt.h
|
|
|
|
%{_includedir}/nss3/ocsp.h
|
|
|
|
%{_includedir}/nss3/ocspt.h
|
|
|
|
%{_includedir}/nss3/p12.h
|
|
|
|
%{_includedir}/nss3/p12plcy.h
|
|
|
|
%{_includedir}/nss3/p12t.h
|
|
|
|
%{_includedir}/nss3/pk11func.h
|
|
|
|
%{_includedir}/nss3/pk11pqg.h
|
|
|
|
%{_includedir}/nss3/pk11priv.h
|
|
|
|
%{_includedir}/nss3/pk11pub.h
|
|
|
|
%{_includedir}/nss3/pk11sdr.h
|
|
|
|
%{_includedir}/nss3/pkcs11.h
|
|
|
|
%{_includedir}/nss3/pkcs11f.h
|
|
|
|
%{_includedir}/nss3/pkcs11n.h
|
|
|
|
%{_includedir}/nss3/pkcs11p.h
|
|
|
|
%{_includedir}/nss3/pkcs11t.h
|
|
|
|
%{_includedir}/nss3/pkcs11u.h
|
|
|
|
%{_includedir}/nss3/pkcs12.h
|
|
|
|
%{_includedir}/nss3/pkcs12t.h
|
|
|
|
%{_includedir}/nss3/pkcs7t.h
|
|
|
|
%{_includedir}/nss3/portreg.h
|
|
|
|
%{_includedir}/nss3/preenc.h
|
|
|
|
%{_includedir}/nss3/secasn1.h
|
|
|
|
%{_includedir}/nss3/secasn1t.h
|
|
|
|
%{_includedir}/nss3/seccomon.h
|
|
|
|
%{_includedir}/nss3/secder.h
|
|
|
|
%{_includedir}/nss3/secdert.h
|
|
|
|
%{_includedir}/nss3/secdig.h
|
|
|
|
%{_includedir}/nss3/secdigt.h
|
|
|
|
%{_includedir}/nss3/secerr.h
|
|
|
|
%{_includedir}/nss3/sechash.h
|
|
|
|
%{_includedir}/nss3/secitem.h
|
|
|
|
%{_includedir}/nss3/secmime.h
|
|
|
|
%{_includedir}/nss3/secmod.h
|
|
|
|
%{_includedir}/nss3/secmodt.h
|
|
|
|
%{_includedir}/nss3/secoid.h
|
|
|
|
%{_includedir}/nss3/secoidt.h
|
|
|
|
%{_includedir}/nss3/secpkcs5.h
|
|
|
|
%{_includedir}/nss3/secpkcs7.h
|
|
|
|
%{_includedir}/nss3/secport.h
|
|
|
|
%{_includedir}/nss3/shsign.h
|
|
|
|
%{_includedir}/nss3/smime.h
|
|
|
|
%{_includedir}/nss3/ssl.h
|
|
|
|
%{_includedir}/nss3/sslerr.h
|
|
|
|
%{_includedir}/nss3/sslproto.h
|
|
|
|
%{_includedir}/nss3/sslt.h
|
|
|
|
%{_includedir}/nss3/watcomfx.h
|
|
|
|
|
|
|
|
|
|
|
|
%files pkcs11-devel
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{_includedir}/nss3/nssbase.h
|
|
|
|
%{_includedir}/nss3/nssbaset.h
|
2005-12-17 05:27:19 +00:00
|
|
|
%{_includedir}/nss3/nssckepv.h
|
|
|
|
%{_includedir}/nss3/nssckft.h
|
|
|
|
%{_includedir}/nss3/nssckfw.h
|
|
|
|
%{_includedir}/nss3/nssckfwc.h
|
|
|
|
%{_includedir}/nss3/nssckfwt.h
|
|
|
|
%{_includedir}/nss3/nssckg.h
|
|
|
|
%{_includedir}/nss3/nssckmdt.h
|
|
|
|
%{_includedir}/nss3/nssckt.h
|
2005-12-15 19:35:41 +00:00
|
|
|
%{_libdir}/libnssb.a
|
|
|
|
%{_libdir}/libnssckfw.a
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2006-02-07 13:14:45 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.11-3.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-19 14:42:48 +00:00
|
|
|
* Thu Jan 19 2006 Ray Strode <rstrode@redhat.com> 3.11-3
|
|
|
|
- rebuild
|
|
|
|
|
2005-12-17 05:27:19 +00:00
|
|
|
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> 3.11-2
|
|
|
|
- Update file list for the devel packages
|
|
|
|
|
2005-12-16 06:48:37 +00:00
|
|
|
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 3.11-1
|
|
|
|
- Update to 3.11
|
|
|
|
|
2005-12-15 21:39:46 +00:00
|
|
|
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 3.11-0.cvs.2
|
|
|
|
- Add patch to allow building on ppc*
|
2005-12-15 21:50:37 +00:00
|
|
|
- Update the pkgconfig file to Require nspr
|
2005-12-15 21:39:46 +00:00
|
|
|
|
2005-12-15 19:35:41 +00:00
|
|
|
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> 3.11-0.cvs
|
|
|
|
- Initial import into Fedora Core, based on a CVS snapshot of
|
|
|
|
the NSS_3_11_RTM tag
|
|
|
|
- Fix up the pkcs11-devel subpackage to contain the proper headers
|
|
|
|
- Build with RPM_OPT_FLAGS
|
|
|
|
- No need to have rpath of /usr/lib in the pc file
|
|
|
|
|
|
|
|
* Thu Dec 15 2005 Kai Engert <kengert@redhat.com>
|
|
|
|
- Adressed review comments by Wan-Teh Chang, Bob Relyea,
|
|
|
|
Christopher Aillon.
|
|
|
|
|
|
|
|
* Tue Jul 9 2005 Rob Crittenden <rcritten@redhat.com> 3.10-1
|
|
|
|
- Initial build
|