2004-11-08 04:17:17 +00:00
|
|
|
Name: fftw
|
2009-02-15 02:05:31 +00:00
|
|
|
Version: 3.2.1
|
2009-07-24 22:43:09 +00:00
|
|
|
Release: 3%{?dist}
|
2005-03-03 20:33:53 +00:00
|
|
|
Summary: Fast Fourier Transform library
|
2004-11-08 04:17:17 +00:00
|
|
|
Group: System Environment/Libraries
|
2008-07-18 15:54:51 +00:00
|
|
|
License: GPLv2+
|
2004-11-08 04:17:17 +00:00
|
|
|
URL: http://www.fftw.org/
|
2006-09-08 18:07:40 +00:00
|
|
|
Source0: ftp://ftp.fftw.org/pub/fftw/%{name}-%{version}.tar.gz
|
2004-11-08 04:17:23 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2004-11-08 04:17:17 +00:00
|
|
|
|
2005-05-23 13:57:21 +00:00
|
|
|
BuildRequires: gcc-gfortran
|
2006-02-01 20:51:10 +00:00
|
|
|
Requires(post): /sbin/install-info
|
|
|
|
Requires(preun): /sbin/install-info
|
2004-11-08 04:18:14 +00:00
|
|
|
|
2006-02-18 22:25:28 +00:00
|
|
|
Provides: fftw3 = %{version}-%{release}
|
|
|
|
Obsoletes: fftw3 < 3.1
|
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%description
|
2006-02-01 20:51:10 +00:00
|
|
|
FFTW is a C subroutine library for computing the Discrete Fourier
|
|
|
|
Transform (DFT) in one or more dimensions, of both real and complex
|
|
|
|
data, and of arbitrary input size.
|
2004-11-08 04:17:17 +00:00
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
|
|
|
|
%package devel
|
2005-03-03 20:33:53 +00:00
|
|
|
Summary: Headers, libraries and docs for the FFTW library
|
2004-11-08 04:17:23 +00:00
|
|
|
Group: Development/Libraries
|
2006-09-26 20:04:05 +00:00
|
|
|
Requires: %{name} = %{version}-%{release} pkgconfig
|
2004-11-08 04:17:23 +00:00
|
|
|
|
2006-02-18 22:25:28 +00:00
|
|
|
Provides: fftw3-devel = %{version}-%{release}
|
|
|
|
Obsoletes: fftw3-devel < 3.1
|
|
|
|
|
2006-02-01 20:51:10 +00:00
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%description devel
|
2006-02-01 20:51:10 +00:00
|
|
|
FFTW is a C subroutine library for computing the Discrete Fourier
|
|
|
|
Transform (DFT) in one or more dimensions, of both real and complex
|
|
|
|
data, and of arbitrary input size.
|
2004-11-08 04:17:17 +00:00
|
|
|
|
|
|
|
This package contains header files and development libraries needed to
|
|
|
|
develop programs using the FFTW fast Fourier transform library.
|
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
|
2007-07-28 04:23:42 +00:00
|
|
|
%package static
|
|
|
|
Summary: Static version of the FFTW library
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
Provides: fftw3-static = %{version}-%{release}
|
|
|
|
|
|
|
|
%description static
|
|
|
|
The fftw-static package contains the statically linkable version of
|
|
|
|
the FFTW fast Fourier transform library.
|
|
|
|
|
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -c %{name}-%{version}
|
|
|
|
mv %{name}-%{version} single
|
|
|
|
cp -a single double
|
2006-02-24 06:44:30 +00:00
|
|
|
cp -a single long
|
2004-11-08 04:17:17 +00:00
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%build
|
2006-02-24 06:44:30 +00:00
|
|
|
CONFIG_FLAGS="--enable-shared --disable-dependency-tracking --enable-threads"
|
2004-11-08 04:17:17 +00:00
|
|
|
pushd double
|
2006-02-13 21:27:53 +00:00
|
|
|
%configure $CONFIG_FLAGS
|
2004-11-08 04:17:17 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
popd
|
|
|
|
pushd single
|
2006-02-13 21:27:53 +00:00
|
|
|
%configure $CONFIG_FLAGS --enable-single
|
2004-11-08 04:17:17 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
popd
|
2006-02-24 06:44:30 +00:00
|
|
|
pushd long
|
|
|
|
%configure $CONFIG_FLAGS --enable-long-double
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
popd
|
2004-11-08 04:17:17 +00:00
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%install
|
2004-11-08 04:17:23 +00:00
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
2004-11-08 04:17:17 +00:00
|
|
|
pushd double
|
2004-11-08 04:17:23 +00:00
|
|
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
2004-11-08 04:17:17 +00:00
|
|
|
cp -a AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO ../
|
2006-02-01 20:51:10 +00:00
|
|
|
cp -a doc/ ../
|
2004-11-08 04:17:17 +00:00
|
|
|
popd
|
|
|
|
pushd single
|
2004-11-08 04:17:23 +00:00
|
|
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
2004-11-08 04:17:17 +00:00
|
|
|
popd
|
2006-02-24 06:44:30 +00:00
|
|
|
pushd long
|
|
|
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
|
|
|
popd
|
2006-02-13 21:27:53 +00:00
|
|
|
rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir
|
2004-11-08 04:17:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
%clean
|
2004-11-08 04:17:23 +00:00
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
|
2006-02-01 20:51:10 +00:00
|
|
|
%post devel
|
|
|
|
/sbin/install-info --section="Math" %{_infodir}/%{name}.info.gz %{_infodir}/dir 2>/dev/null || :
|
|
|
|
|
|
|
|
%preun devel
|
|
|
|
if [ "$1" = 0 ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/%{name}.info.gz %{_infodir}/dir 2>/dev/null || :
|
|
|
|
fi
|
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS COPYING COPYRIGHT ChangeLog NEWS README* TODO
|
2006-02-01 20:51:10 +00:00
|
|
|
%doc %{_mandir}/man?/*
|
|
|
|
%{_bindir}/*
|
2004-11-08 04:17:17 +00:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2006-02-01 20:51:10 +00:00
|
|
|
%doc doc/*.pdf doc/html/* doc/FAQ/fftw-faq.html/
|
|
|
|
%doc %{_infodir}/*.info*
|
2004-11-08 04:17:17 +00:00
|
|
|
%{_includedir}/*
|
2006-02-01 20:51:10 +00:00
|
|
|
%{_libdir}/pkgconfig/*
|
2004-11-08 04:17:17 +00:00
|
|
|
%{_libdir}/*.so
|
|
|
|
|
2007-07-28 04:23:42 +00:00
|
|
|
%files static
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%exclude %{_libdir}/*.la
|
|
|
|
%{_libdir}/*.a
|
|
|
|
|
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
%changelog
|
2009-07-24 22:43:09 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-24 16:55:03 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-15 02:05:31 +00:00
|
|
|
* Sat Feb 14 2009 Conrad Meyer <konrad@tylerc.org> - 3.2.1-1
|
|
|
|
- Bump to 3.2.1.
|
|
|
|
|
2008-12-05 00:25:25 +00:00
|
|
|
* Thu Dec 4 2008 Conrad Meyer <konrad@tylerc.org> - 3.2-1
|
|
|
|
- Bump to 3.2.
|
|
|
|
|
2008-07-18 15:54:51 +00:00
|
|
|
* Fri Jul 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 3.1.2-7
|
|
|
|
- fix license tag
|
|
|
|
|
2008-02-19 20:23:41 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.1.2-6
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-08-25 02:52:27 +00:00
|
|
|
* Fri Aug 24 2007 Quentin Spencer <qspencer@users.sf.net> 3.1.2-5
|
|
|
|
- Rebuild for F8.
|
|
|
|
|
2007-07-28 04:23:42 +00:00
|
|
|
* Fri Jul 27 2007 Quentin Spencer <qspencer@users.sf.net> 3.1.2-4
|
|
|
|
- Split static libs into separate package (bug 249686).
|
|
|
|
|
2006-10-04 22:13:13 +00:00
|
|
|
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 3.1.2-3
|
2007-07-28 04:23:42 +00:00
|
|
|
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
2006-10-04 22:13:13 +00:00
|
|
|
|
2006-09-26 20:04:05 +00:00
|
|
|
* Tue Sep 26 2006 Quentin Spencer <qspencer@users.sf.net> 3.1.2-2
|
|
|
|
- BuildRequires: pkgconfig for -devel (bug 206444).
|
|
|
|
|
2006-09-08 18:07:40 +00:00
|
|
|
* Fri Sep 8 2006 Quentin Spencer <qspencer@users.sf.net> 3.1.2-1
|
|
|
|
- New release.
|
|
|
|
|
|
|
|
* Fri Jun 2 2006 Quentin Spencer <qspencer@users.sf.net> 3.1.1-1
|
2006-06-02 16:45:06 +00:00
|
|
|
- New upstream release.
|
|
|
|
|
2006-02-24 06:44:30 +00:00
|
|
|
* Fri Feb 24 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-4
|
|
|
|
- Re-enable static libs (bug 181897).
|
|
|
|
- Build long-double version of libraries (bug 182587).
|
|
|
|
|
2006-02-18 22:25:28 +00:00
|
|
|
* Mon Feb 13 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-3
|
|
|
|
- Add Obsoletes and Provides.
|
|
|
|
|
2006-02-13 21:27:53 +00:00
|
|
|
* Mon Feb 13 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-2
|
|
|
|
- Rebuild for Fedora Extras 5.
|
|
|
|
- Disable static libs.
|
|
|
|
- Remove obsolete configure options.
|
|
|
|
|
2006-02-01 20:51:10 +00:00
|
|
|
* Wed Feb 1 2006 Quentin Spencer <qspencer@users.sf.net> 3.1-1
|
|
|
|
- Upgrade to the 3.x branch, incorporating changes from the fftw3 spec file.
|
|
|
|
- Add dist tag.
|
|
|
|
|
2005-05-23 13:57:21 +00:00
|
|
|
* Mon May 23 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 2.1.5-8
|
|
|
|
- BuildReq gcc-gfortran (#156490).
|
|
|
|
|
2005-05-22 22:36:53 +00:00
|
|
|
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 2.1.5-7
|
|
|
|
- rebuild on all arches
|
|
|
|
- buildrequire compat-gcc-32-g77
|
|
|
|
|
2005-04-06 22:11:37 +00:00
|
|
|
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-11-11 19:21:36 +00:00
|
|
|
* Wed Nov 10 2004 Matthias Saou <http://freshrpms.net/> 2.1.5-5
|
|
|
|
- Bump release to provide Extras upgrade path.
|
|
|
|
|
2004-11-08 04:18:14 +00:00
|
|
|
* Tue Apr 06 2004 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.4
|
|
|
|
- BuildReq gcc-g77.
|
|
|
|
|
2004-11-08 04:17:23 +00:00
|
|
|
* Mon Sep 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.3
|
|
|
|
- Dropped post/preun scripts for info.
|
|
|
|
|
|
|
|
* Wed Sep 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.2
|
|
|
|
- Remove aesthetic comments.
|
|
|
|
- buildroot -> RPM_BUILD_ROOT.
|
|
|
|
- post/preun for info files.
|
|
|
|
|
2004-11-08 04:17:17 +00:00
|
|
|
* Mon Apr 07 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.5-0.fdr.1
|
|
|
|
- Updated to 2.1.5.
|
|
|
|
|
|
|
|
* Tue Apr 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:2.1.4-0.fdr.2
|
|
|
|
- Added Epoch:0.
|
|
|
|
- Added ldconfig to post and postun.
|
|
|
|
|
|
|
|
* Sun Mar 22 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 2.1.4-0.fdr.1
|
|
|
|
- Updated to 2.1.4.
|
|
|
|
|
|
|
|
* Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 2.1.3-0.fdr.1
|
|
|
|
- Fedorafied.
|
|
|
|
|
|
|
|
* Mon Oct 21 2002 Matthias Saou <matthias.saou@est.une.marmotte.net>
|
|
|
|
- Initial RPM release.
|
|
|
|
|