2010-04-21 21:28:14 +00:00
|
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
2009-06-08 22:11:28 +00:00
|
|
|
Summary: Generic Programming for Computer Vision
|
|
|
|
Name: vigra
|
2011-02-04 23:42:07 +00:00
|
|
|
Version: 1.7.1
|
2011-08-26 20:35:04 +00:00
|
|
|
Release: 4%{?dist}
|
2009-06-08 22:11:28 +00:00
|
|
|
License: MIT
|
|
|
|
Group: Development/Libraries
|
2010-04-21 21:28:14 +00:00
|
|
|
Source: http://hci.iwr.uni-heidelberg.de/%{name}/%{name}-%{version}-src.tar.gz
|
2011-02-04 23:42:07 +00:00
|
|
|
Patch1: vigra-1.7.1.lib_suffix.patch
|
|
|
|
Patch2: vigra-1.7.1.gcc460.patch
|
2010-04-21 21:28:14 +00:00
|
|
|
URL: http://hci.iwr.uni-heidelberg.de/vigra/
|
2009-06-08 22:11:28 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2010-04-21 21:28:14 +00:00
|
|
|
BuildRequires: zlib-devel libjpeg-devel libpng-devel libtiff-devel fftw-devel >= 3
|
|
|
|
BuildRequires: cmake hdf5-devel boost-devel boost-python doxygen python-sphinx numpy-f2py
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
VIGRA stands for "Vision with Generic Algorithms". It's a novel computer vision
|
|
|
|
library that puts its main emphasis on customizable algorithms and data
|
|
|
|
structures. By using template techniques similar to those in the C++ Standard
|
|
|
|
Template Library, you can easily adapt any VIGRA component to the needs of your
|
|
|
|
application without thereby giving up execution speed.
|
|
|
|
|
|
|
|
%package devel
|
2010-04-21 21:28:14 +00:00
|
|
|
Summary: Development tools for programs which will use the vigra library
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: vigra = %{version}-%{release}
|
|
|
|
Requires: libjpeg-devel libtiff-devel libpng-devel zlib-devel fftw-devel >= 3
|
|
|
|
Requires: hdf5-devel boost-devel boost-python numpy-f2py
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The vigra-devel package includes the header files necessary for developing
|
|
|
|
programs that use the vigra library.
|
|
|
|
|
2010-04-21 21:28:14 +00:00
|
|
|
%package python
|
|
|
|
Summary: Python interface for the vigra computer vision library
|
|
|
|
Requires: vigra = %{version}-%{release}
|
|
|
|
Requires: numpy numpy-f2py
|
|
|
|
|
|
|
|
%description python
|
|
|
|
The vigra-python package provides python bindings for vigra
|
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
%prep
|
2011-02-04 23:42:07 +00:00
|
|
|
%setup -q
|
2010-04-21 21:28:14 +00:00
|
|
|
%patch1 -p1
|
2011-02-04 23:42:07 +00:00
|
|
|
%patch2 -p1
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%build
|
2010-04-21 21:28:14 +00:00
|
|
|
%cmake .
|
|
|
|
make VERBOSE=1 %{?_smp_mflags}
|
|
|
|
# cleanup
|
|
|
|
rm -f doc/vigranumpy/.buildinfo
|
|
|
|
find ./doc/ -type f | xargs chmod -x
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
2010-04-21 21:28:14 +00:00
|
|
|
make install DESTDIR=%{buildroot}
|
2006-09-12 21:50:31 +00:00
|
|
|
rm -rf %{buildroot}/usr/doc
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root,-)
|
2007-02-21 21:38:27 +00:00
|
|
|
%doc LICENSE.txt README.txt
|
2006-09-12 21:50:31 +00:00
|
|
|
%{_libdir}/libvigraimpex.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-, root, root,-)
|
|
|
|
%{_includedir}/vigra
|
2011-02-04 23:42:07 +00:00
|
|
|
%{_bindir}/vigra-config
|
2006-09-12 21:50:31 +00:00
|
|
|
%{_libdir}/libvigraimpex.so
|
2010-04-21 21:28:14 +00:00
|
|
|
%{_libdir}/vigra
|
|
|
|
%doc doc/vigra doc/vigranumpy
|
|
|
|
|
|
|
|
%files python
|
|
|
|
%defattr(-, root, root,-)
|
|
|
|
%{python_sitearch}/vigra
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
%changelog
|
2011-08-26 20:35:04 +00:00
|
|
|
* Fri Aug 26 2011 Tom Callaway <spot@fedoraproject.org> - 1.7.1-4
|
|
|
|
- rebuild against boost
|
|
|
|
|
2011-05-18 04:06:11 +00:00
|
|
|
* Tue May 17 2011 Orion Poplawski <orion@cora.nwra.com> - 1.7.1-3
|
2011-05-18 04:05:32 +00:00
|
|
|
- Rebuild for hdf5 1.8.7
|
|
|
|
|
2011-02-08 01:29:35 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-04 23:42:07 +00:00
|
|
|
* Sun Jan 23 2011 Bruno Postle <bruno@postle.net> 1.7.1-1
|
|
|
|
- upstream release
|
|
|
|
|
2010-07-31 03:03:11 +00:00
|
|
|
* Fri Jul 30 2010 Toshio Kuratomi <toshio@fedoraproject.org> 1.7.0-2
|
|
|
|
- Rebuild for new python release
|
|
|
|
|
2010-04-21 21:28:14 +00:00
|
|
|
* Tue Apr 20 2010 Bruno Postle <bruno@postle.net> 1.7.0-1
|
|
|
|
- new upstream with cmake replacing autotools.
|
|
|
|
- patch for x86_64 systems.
|
|
|
|
- add vigra-python sub-package.
|
|
|
|
|
2009-07-27 06:52:36 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-08 22:11:28 +00:00
|
|
|
* Mon Jun 08 2009 Bruno Postle - 1.6.0-1
|
|
|
|
- Update to latest release
|
|
|
|
|
2009-02-26 00:21:18 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-02-18 21:37:36 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.5.0-4
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-08-21 21:05:35 +00:00
|
|
|
* Tue Aug 21 2007 Bruno Postle <bruno@postle.net> 1.5.0-3
|
|
|
|
- Bumping for Jesse
|
|
|
|
|
2007-02-21 21:55:48 +00:00
|
|
|
* Mon Feb 19 2007 Bruno Postle <bruno@postle.net> 1.5.0-2
|
2007-02-21 21:38:27 +00:00
|
|
|
- update to 1.5.0 release
|
|
|
|
- fix bug 228926: vigra: $RPM_OPT_FLAGS not used
|
|
|
|
|
2006-09-12 21:50:31 +00:00
|
|
|
* Sun Nov 23 2003 Bruno Postle <bruno@postle.net>
|
2009-06-08 22:11:28 +00:00
|
|
|
- initial package
|
2006-09-12 21:50:31 +00:00
|
|
|
|
|
|
|
|