4c07ca
Name:           fftw
4c07ca
Version:        3.3.3
4c07ca
Release:        8%{?dist}
4c07ca
Summary:        A Fast Fourier Transform library
4c07ca
Group:          System Environment/Libraries
4c07ca
License:        GPLv2+
4c07ca
URL:            http://www.fftw.org
4c07ca
Source0:        http://www.fftw.org/fftw-%{version}.tar.gz
4c07ca
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
4c07ca
4c07ca
# OpenMP support not available on RHEL 4
4c07ca
%if 0%{?rhel} == 4
4c07ca
BuildRequires:  gcc-g77
4c07ca
%global openmp 0
4c07ca
%else
4c07ca
BuildRequires:  gcc-gfortran
4c07ca
%global openmp 1
4c07ca
%endif
4c07ca
4c07ca
%global quad 0
4c07ca
# Quad precision support only available with gcc >= 4.6
4c07ca
%if 0%{?fedora} >= 15
4c07ca
# and only on these arches
4c07ca
%ifarch %{ix86} x86_64 ia64
4c07ca
%global quad 1
4c07ca
%endif
4c07ca
%endif
4c07ca
4c07ca
# For check phase
4c07ca
BuildRequires:  time
4c07ca
BuildRequires:  perl
4c07ca
4c07ca
Requires(post): info 
4c07ca
Requires(preun): info
4c07ca
4c07ca
4c07ca
%description
4c07ca
FFTW is a C subroutine library for computing the Discrete Fourier
4c07ca
Transform (DFT) in one or more dimensions, of both real and complex
4c07ca
data, and of arbitrary input size.
4c07ca
4c07ca
%package libs
4c07ca
Summary:        FFTW run-time library
4c07ca
Group:          System Environment/Libraries
4c07ca
Provides:       fftw3 = %{version}-%{release}
4c07ca
Obsoletes:      fftw3 < 3.3
4c07ca
# Libs branched from rpm containing binaries in version 3.3
4c07ca
Obsoletes:      fftw < 3.3
4c07ca
# Libs rearranged in 3.3.1-2
4c07ca
Obsoletes:	fftw-libs-threads < %{version}-%{release}
4c07ca
Obsoletes:	fftw-libs-openmp < %{version}-%{release}
4c07ca
4c07ca
# Pull in the actual libraries
4c07ca
Requires:	 %{name}-libs-single%{?_isa} = %{version}-%{release}
4c07ca
Requires:	 %{name}-libs-double%{?_isa} = %{version}-%{release}
4c07ca
Requires:	 %{name}-libs-long%{?_isa} = %{version}-%{release}
4c07ca
%if %{quad}
4c07ca
Requires:	 %{name}-libs-quad%{?_isa} = %{version}-%{release}
4c07ca
%endif
4c07ca
4c07ca
%description libs
4c07ca
This is a dummy package package, pulling in the individual FFTW
4c07ca
run-time libraries.
4c07ca
4c07ca
4c07ca
%package devel
4c07ca
Summary:        Headers, libraries and docs for the FFTW library
4c07ca
Group:          Development/Libraries
4c07ca
Requires:       pkgconfig
4c07ca
Requires:       %{name}%{?_isa} = %{version}-%{release}
4c07ca
Requires:       %{name}-libs%{?_isa} = %{version}-%{release}
4c07ca
Provides:       fftw3-devel%{?_isa} = %{version}-%{release}
4c07ca
Provides:       fftw3-devel = %{version}-%{release}
4c07ca
Obsoletes:      fftw3-devel < 3.3
4c07ca
4c07ca
%description devel
4c07ca
FFTW is a C subroutine library for computing the Discrete Fourier
4c07ca
Transform (DFT) in one or more dimensions, of both real and complex
4c07ca
data, and of arbitrary input size.
4c07ca
4c07ca
This package contains header files and development libraries needed to
4c07ca
develop programs using the FFTW fast Fourier transform library.
4c07ca
4c07ca
%package libs-double
4c07ca
Summary:        FFTW library, double precision
4c07ca
Group:          Development/Libraries
4c07ca
4c07ca
%description libs-double
4c07ca
This package contains the FFTW library compiled in double precision.
4c07ca
4c07ca
%package libs-single
4c07ca
Summary:        FFTW library, single precision
4c07ca
Group:          Development/Libraries
4c07ca
4c07ca
%description libs-single
4c07ca
This package contains the FFTW library compiled in single precision.
4c07ca
4c07ca
%package libs-long
4c07ca
Summary:        FFTW library, long double precision 
4c07ca
Group:          Development/Libraries
4c07ca
4c07ca
%description libs-long
4c07ca
This package contains the FFTW library compiled in long double
4c07ca
precision.
4c07ca
4c07ca
%if %{quad}
4c07ca
%package libs-quad
4c07ca
Summary:        FFTW library, quadruple
4c07ca
Group:          Development/Libraries
4c07ca
4c07ca
%description libs-quad
4c07ca
This package contains the FFTW library compiled in quadruple
4c07ca
precision.
4c07ca
%endif
4c07ca
4c07ca
%package        static
4c07ca
Summary:        Static versions of the FFTW libraries
4c07ca
Group:          Development/Libraries
4c07ca
Requires:       %{name}-devel%{?_isa} = %{version}-%{release}
4c07ca
Provides:       fftw3-static%{?_isa} = %{version}-%{release}
4c07ca
Provides:       fftw3-static = %{version}-%{release}
4c07ca
Obsoletes:      fftw3-static < 3.3
4c07ca
4c07ca
%description static
4c07ca
The fftw-static package contains the statically linkable version of
4c07ca
the FFTW fast Fourier transform library.
4c07ca
4c07ca
%package doc
4c07ca
Summary:        FFTW library manual
4c07ca
Group:          Documentation
4c07ca
%if 0%{?rhel} > 5 || 0%{?fedora} > 12
4c07ca
BuildArch:      noarch
4c07ca
%endif
4c07ca
4c07ca
%description doc
4c07ca
This package contains the manual for the FFTW fast Fourier transform
4c07ca
library.
4c07ca
4c07ca
%prep
4c07ca
%setup -q
4c07ca
4c07ca
%build
4c07ca
%if 0%{?rhel} == 4
4c07ca
# System fortran compiler is g77
4c07ca
export F77=g77
4c07ca
%else
4c07ca
# Configure uses g77 by default, if present on system
4c07ca
export F77=gfortran
4c07ca
%endif
4c07ca
4c07ca
BASEFLAGS="--enable-shared --disable-dependency-tracking --enable-threads"
4c07ca
4c07ca
%if %{openmp}
4c07ca
BASEFLAGS+=" --enable-openmp"
4c07ca
%endif
4c07ca
4c07ca
# Precisions to build
4c07ca
prec_name[0]=single
4c07ca
prec_name[1]=double
4c07ca
prec_name[2]=long
4c07ca
prec_name[3]=quad
4c07ca
4c07ca
# Corresponding flags
4c07ca
prec_flags[0]=--enable-single
4c07ca
prec_flags[1]=--enable-double
4c07ca
prec_flags[2]=--enable-long-double
4c07ca
prec_flags[3]=--enable-quad-precision
4c07ca
4c07ca
%ifarch %{ix86} x86_64
4c07ca
# Enable SSE2 support for x86 and x86_64
4c07ca
# (no avx as it is claimed to drastically slower)
4c07ca
for((i=0;i<2;i++)); do
4c07ca
 prec_flags[i]+=" --enable-sse2"
4c07ca
done
4c07ca
%endif
4c07ca
4c07ca
%ifarch arm
4c07ca
# Compile support for NEON instructions
4c07ca
for((i=0;i<2;i++)); do
4c07ca
 prec_flags[i]+=" --enable-neon"
4c07ca
done
4c07ca
%endif
4c07ca
4c07ca
#%ifarch ppc ppc64
4c07ca
## Compile support for Altivec instructions
4c07ca
#for((i=0;i<2;i++)); do
4c07ca
 #prec_flags[i]+=" --enable-altivec"
4c07ca
#done
4c07ca
#%endif
4c07ca
4c07ca
# Loop over precisions
4c07ca
%if %{quad}
4c07ca
for((iprec=0;iprec<4;iprec++))
4c07ca
%else
4c07ca
for((iprec=0;iprec<3;iprec++))
4c07ca
%endif
4c07ca
do
4c07ca
 mkdir ${prec_name[iprec]}${ver_name[iver]}
4c07ca
 cd ${prec_name[iprec]}${ver_name[iver]}
4c07ca
 ln -s ../configure .
4c07ca
 %{configure} ${BASEFLAGS} ${prec_flags[iprec]}
4c07ca
 sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
4c07ca
 sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
4c07ca
 make %{?_smp_mflags}
4c07ca
 cd ..
4c07ca
done
4c07ca
4c07ca
%install
4c07ca
rm -rf %{buildroot}
4c07ca
%if %{quad}
4c07ca
for ver in single double long quad
4c07ca
%else
4c07ca
for ver in single double long
4c07ca
%endif
4c07ca
do
4c07ca
 make -C $ver install DESTDIR=%{buildroot}
4c07ca
done
4c07ca
rm -f %{buildroot}%{_infodir}/dir
4c07ca
rm -f %{buildroot}%{_libdir}/*.la
4c07ca
4c07ca
%check
4c07ca
bdir=`pwd`
4c07ca
%if %{quad}
4c07ca
for ver in single double long quad
4c07ca
%else
4c07ca
for ver in single double long
4c07ca
%endif
4c07ca
do 
4c07ca
 export LD_LIBRARY_PATH=$bdir/$ver/.libs:$bdir/$ver/threads/.libs
4c07ca
 make -C $ver check
4c07ca
done
4c07ca
4c07ca
%clean
4c07ca
rm -rf %{buildroot}
4c07ca
4c07ca
%post libs-single -p /sbin/ldconfig
4c07ca
%postun libs-single -p /sbin/ldconfig
4c07ca
%post libs-double -p /sbin/ldconfig
4c07ca
%postun libs-double -p /sbin/ldconfig
4c07ca
%post libs-long -p /sbin/ldconfig
4c07ca
%postun libs-long -p /sbin/ldconfig
4c07ca
%if %{quad}
4c07ca
%post libs-quad -p /sbin/ldconfig
4c07ca
%postun libs-quad -p /sbin/ldconfig
4c07ca
%endif
4c07ca
4c07ca
%post devel
4c07ca
/sbin/install-info --section="Math" %{_infodir}/%{name}.info.gz %{_infodir}/dir  2>/dev/null || :
4c07ca
4c07ca
%preun devel
4c07ca
if [ "$1" = 0 ]; then
4c07ca
  /sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir 2>/dev/null || :
4c07ca
fi
4c07ca
4c07ca
%files
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc %{_mandir}/man1/fftw*.1.*
4c07ca
%{_bindir}/fftw*-wisdom*
4c07ca
4c07ca
%files libs
4c07ca
%defattr(-,root,root,-)
4c07ca
4c07ca
%files libs-single
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO
4c07ca
%{_libdir}/libfftw3f.so.*
4c07ca
%{_libdir}/libfftw3f_threads.so.*
4c07ca
%if %{openmp}
4c07ca
%{_libdir}/libfftw3f_omp.so.*
4c07ca
%endif
4c07ca
4c07ca
%files libs-double
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO
4c07ca
%{_libdir}/libfftw3.so.*
4c07ca
%{_libdir}/libfftw3_threads.so.*
4c07ca
%if %{openmp}
4c07ca
%{_libdir}/libfftw3_omp.so.*
4c07ca
%endif
4c07ca
4c07ca
%files libs-long
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO
4c07ca
%{_libdir}/libfftw3l.so.*
4c07ca
%{_libdir}/libfftw3l_threads.so.*
4c07ca
%if %{openmp}
4c07ca
%{_libdir}/libfftw3l_omp.so.*
4c07ca
%endif
4c07ca
4c07ca
%if %{quad}
4c07ca
%files libs-quad
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO
4c07ca
%{_libdir}/libfftw3q.so.*
4c07ca
%{_libdir}/libfftw3q_threads.so.*
4c07ca
%if %{openmp}
4c07ca
%{_libdir}/libfftw3q_omp.so.*
4c07ca
%endif
4c07ca
%endif
4c07ca
4c07ca
%files devel
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc doc/FAQ/fftw-faq.html/
4c07ca
%doc %{_infodir}/fftw3.info*
4c07ca
%{_includedir}/fftw3*
4c07ca
%{_libdir}/pkgconfig/fftw3*.pc
4c07ca
%{_libdir}/libfftw3*.so
4c07ca
4c07ca
%files doc
4c07ca
%defattr(-,root,root,-)
4c07ca
%doc doc/*.pdf doc/html/
4c07ca
4c07ca
%files static
4c07ca
%defattr(-,root,root,-)
4c07ca
%{_libdir}/libfftw3*.a
4c07ca
4c07ca
%changelog
4c07ca
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.3.3-8
4c07ca
- Mass rebuild 2014-01-24
4c07ca
4c07ca
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.3.3-7
4c07ca
- Mass rebuild 2013-12-27
4c07ca
4c07ca
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-6
4c07ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
4c07ca
4c07ca
* Sat Jan 19 2013 PPC Secondary Arch Admin <karsten@redhat.com> 3.3.3-5
4c07ca
- disable altivec flag again, that works with single precision only
4c07ca
4c07ca
* Mon Dec 24 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 3.3.3-4
4c07ca
- Fix typo: should be %%ix86 instead of %%x86. Now should have SSE2 support
4c07ca
  on x86 as well.
4c07ca
4c07ca
* Tue Dec 18 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 3.3.3-3
4c07ca
- After consultation with upstream, enable SSE2 also on x86, altivec on ppc
4c07ca
  and ppc64 and NEON on arm.
4c07ca
4c07ca
* Tue Dec 18 2012 Susi Lehtola <jussilehtola@fedoraproject.org> - 3.3.3-2
4c07ca
- Enable SSE2 on x86_64.
4c07ca
4c07ca
* Mon Nov 26 2012 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.3.3-1
4c07ca
- Update to 3.3.3.
4c07ca
4c07ca
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-2
4c07ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4c07ca
4c07ca
* Fri Jun 15 2012 Orion Poplawski <orion@cora.nwra.com> - 3.3.2-1
4c07ca
- Update to 3.3.2
4c07ca
- Drop alignment patch
4c07ca
4c07ca
* Fri Apr 27 2012 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.3.1-3
4c07ca
- Fix FTBFS with gcc 4.7.
4c07ca
4c07ca
* Thu Apr 26 2012 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.3.1-2
4c07ca
- Reorganized libraries (BZ #812981).
4c07ca
4c07ca
* Mon Feb 27 2012 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.3.1-1
4c07ca
- Update to 3.3.1.
4c07ca
4c07ca
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3-5
4c07ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4c07ca
4c07ca
* Tue Oct 11 2011 Dan Horák <dan[at]danny.cz> - 3.3-4
4c07ca
- libquadmath exists only on x86/x86_64 and ia64
4c07ca
4c07ca
* Mon Oct 10 2011 Rex Dieter <rdieter@fedoraproject.org> 3.3-3
4c07ca
- -devel: Provides: fftw3-devel (#744758)
4c07ca
- -static: Provides: fftw3-static
4c07ca
- drop %%_isa from Obsoletes
4c07ca
4c07ca
* Sat Jul 30 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.3-2
4c07ca
- Conditionalize OpenMP and quadruple precision support based on capabilities
4c07ca
  of system compiler.
4c07ca
4c07ca
* Thu Jul 28 2011 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.3-1
4c07ca
- Update to 3.3.
4c07ca
4c07ca
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.2-5
4c07ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4c07ca
4c07ca
* Sat Jan 9 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.2.2-4
4c07ca
- Get rid of rpath.
4c07ca
4c07ca
* Sat Jan 9 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.2.2-3
4c07ca
- Branch out developers' manual to -doc.
4c07ca
4c07ca
* Sat Jan 2 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.2.2-2
4c07ca
- Add check phase.
4c07ca
- Cosmetic changes to spec file (unified changelog format, removed unnecessary
4c07ca
  space).
4c07ca
- Use rm instead of find -delete, as latter is not present on EPEL-4.
4c07ca
- Generalize obsoletes of fftw3 packages. Add Obsoletes: fftw3-static.
4c07ca
4c07ca
* Fri Jan 1 2010 Jussi Lehtola <jussilehtola@fedoraproject.org> - 3.2.2-1
4c07ca
- Update to 3.2.2.
4c07ca
- Make file listings more explicit.
4c07ca
- Don't use file dependencies for info.
4c07ca
4c07ca
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-3
4c07ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4c07ca
4c07ca
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2
4c07ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4c07ca
4c07ca
* Sat Feb 14 2009 Conrad Meyer <konrad@tylerc.org> - 3.2.1-1
4c07ca
- Bump to 3.2.1.
4c07ca
4c07ca
* Thu Dec 4 2008 Conrad Meyer <konrad@tylerc.org> - 3.2-1
4c07ca
- Bump to 3.2.
4c07ca
4c07ca
* Fri Jul 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.1.2-7
4c07ca
- fix license tag
4c07ca
4c07ca
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.1.2-6
4c07ca
- Autorebuild for GCC 4.3
4c07ca
4c07ca
* Fri Aug 24 2007 Quentin Spencer <qspencer@users.sf.net> 3.1.2-5
4c07ca
- Rebuild for F8.
4c07ca
4c07ca
* Fri Jul 27 2007 Quentin Spencer <qspencer@users.sf.net> 3.1.2-4
4c07ca
- Split static libs into separate package (bug 249686).
4c07ca
4c07ca
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 3.1.2-3
4c07ca
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
4c07ca
4c07ca
* Tue Sep 26 2006 Quentin Spencer <qspencer@users.sf.net> 3.1.2-2
4c07ca
- BuildRequires: pkgconfig for -devel (bug 206444).
4c07ca
4c07ca
* Fri Sep  8 2006 Quentin Spencer <qspencer@users.sf.net> 3.1.2-1
4c07ca
- New release.
4c07ca
4c07ca
* Fri Jun  2 2006 Quentin Spencer <qspencer@users.sf.net> 3.1.1-1
4c07ca
- New upstream release.
4c07ca
4c07ca
* Fri Feb 24 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-4
4c07ca
- Re-enable static libs (bug 181897).
4c07ca
- Build long-double version of libraries (bug 182587).
4c07ca
4c07ca
* Mon Feb 13 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-3
4c07ca
- Add Obsoletes and Provides.
4c07ca
4c07ca
* Mon Feb 13 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-2
4c07ca
- Rebuild for Fedora Extras 5.
4c07ca
- Disable static libs.
4c07ca
- Remove obsolete configure options.
4c07ca
4c07ca
* Wed Feb  1 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-1
4c07ca
- Upgrade to the 3.x branch, incorporating changes from the fftw3 spec file.
4c07ca
- Add dist tag.
4c07ca
4c07ca
* Mon May 23 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 2.1.5-8
4c07ca
- BuildReq gcc-gfortran (#156490).
4c07ca
4c07ca
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 2.1.5-7
4c07ca
- rebuild on all arches
4c07ca
- buildrequire compat-gcc-32-g77
4c07ca
4c07ca
* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
4c07ca
- rebuilt
4c07ca
4c07ca
* Wed Nov 10 2004 Matthias Saou <http://freshrpms.net/> 2.1.5-5
4c07ca
- Bump release to provide Extras upgrade path.
4c07ca
4c07ca
* Tue Apr 06 2004 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.4
4c07ca
- BuildReq gcc-g77.
4c07ca
4c07ca
* Mon Sep 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.3
4c07ca
- Dropped post/preun scripts for info.
4c07ca
4c07ca
* Wed Sep 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.2
4c07ca
- Remove aesthetic comments.
4c07ca
- buildroot -> RPM_BUILD_ROOT.
4c07ca
- post/preun for info files.
4c07ca
4c07ca
* Mon Apr 07 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.1
4c07ca
- Updated to 2.1.5.
4c07ca
4c07ca
* Tue Apr 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.4-0.fdr.2
4c07ca
- Added Epoch:0.
4c07ca
- Added ldconfig to post and postun.
4c07ca
4c07ca
* Sun Mar 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 2.1.4-0.fdr.1
4c07ca
- Updated to 2.1.4.
4c07ca
4c07ca
* Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 2.1.3-0.fdr.1
4c07ca
- Fedorafied.
4c07ca
4c07ca
* Mon Oct 21 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
4c07ca
- Initial RPM release.