| 1 |
%define debug_package %{nil}
|
| 2 |
|
| 3 |
Name: ETL
|
| 4 |
Version: 0.04.12
|
| 5 |
Release: 2%{?dist}
|
| 6 |
Summary: Extended Template Library
|
| 7 |
|
| 8 |
Group: Development/Libraries
|
| 9 |
License: GPLv2+
|
| 10 |
URL: http://synfig.org
|
| 11 |
Source0: http://downloads.sourceforge.net/synfig/ETL-%{version}.tar.gz
|
| 12 |
Patch0: ETL-0.04.12-build.patch
|
| 13 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
| 14 |
Buildrequires: doxygen
|
| 15 |
Buildrequires: autoconf automake
|
| 16 |
Requires: pkgconfig
|
| 17 |
|
| 18 |
%description
|
| 19 |
Voria ETL is a multi-platform class and template library designed to add
|
| 20 |
new datatypes and functions which combine well with the existing
|
| 21 |
types and functions from the C++ Standard Template Library (STL).
|
| 22 |
|
| 23 |
|
| 24 |
%package devel
|
| 25 |
Summary: Development files for %{name}
|
| 26 |
Group: Development/Libraries
|
| 27 |
|
| 28 |
%description devel
|
| 29 |
The %{name}-devel package contains libraries and header files for
|
| 30 |
developing applications that use %{name}.
|
| 31 |
|
| 32 |
|
| 33 |
%prep
|
| 34 |
%setup -q
|
| 35 |
%patch0 -p1 -b .build
|
| 36 |
autoreconf
|
| 37 |
|
| 38 |
|
| 39 |
%build
|
| 40 |
%configure
|
| 41 |
make %{?_smp_mflags} all docs
|
| 42 |
|
| 43 |
|
| 44 |
%install
|
| 45 |
rm -rf $RPM_BUILD_ROOT
|
| 46 |
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
| 47 |
touch -r ChangeLog $RPM_BUILD_ROOT%{_bindir}/ETL-config
|
| 48 |
touch -r ChangeLog $RPM_BUILD_ROOT%{_includedir}/ETL/etl_profile.h
|
| 49 |
|
| 50 |
|
| 51 |
%clean
|
| 52 |
rm -rf $RPM_BUILD_ROOT
|
| 53 |
|
| 54 |
|
| 55 |
%check
|
| 56 |
make check
|
| 57 |
|
| 58 |
|
| 59 |
%files devel
|
| 60 |
%defattr(-,root,root,-)
|
| 61 |
%doc README COPYING AUTHORS NEWS
|
| 62 |
%{_includedir}/ETL/
|
| 63 |
%{_bindir}/ETL-config
|
| 64 |
%{_libdir}/pkgconfig/ETL.pc
|
| 65 |
|
| 66 |
|
| 67 |
%changelog
|
| 68 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.04.12-2
|
| 69 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
| 70 |
|
| 71 |
* Fri Jan 9 2009 Lubomir Rintel <lkundrak@v3.sk> 0.04.12-1
|
| 72 |
- New upstream release
|
| 73 |
- Run regression tests
|
| 74 |
- Build documentation
|
| 75 |
- Fix BRs
|
| 76 |
|
| 77 |
* Tue May 6 2008 Marc Wiriadisastra <marc@mwiriadi.id.au> - 0.4.11-4
|
| 78 |
- Removed some requires and buildrequires to clean stuff up.
|
| 79 |
|
| 80 |
* Thu May 1 2008 Marc Wiriadisastra <marc@mwiriadi.id.a> - 0.4.11-3
|
| 81 |
- Added the lines for timestamp consistency
|
| 82 |
|
| 83 |
* Fri Mar 7 2008 Marc Wiriadisastra <marc@mwiriadi.id.au> - 0.4.11-2
|
| 84 |
- Added patch to clean up etl-profile_.in
|
| 85 |
- renamed package to ETL as requested by ralf
|
| 86 |
|
| 87 |
* Thu Mar 6 2008 Marc Wiriadisastra <marc@mwiriadi.id.au> - 0.4.11-1
|
| 88 |
- Removed patches
|
| 89 |
- New version
|
| 90 |
|
| 91 |
* Sun Feb 3 2008 Marc Wiriadisastra <marc@mwiriadi.id.au> - 0.04-10-3
|
| 92 |
- Added backported patch adding <cstring>
|
| 93 |
|
| 94 |
* Thu Jan 24 2008 Marc Wiriadisastra <marc@mwiriadi.id.au> - 0.04-10-2
|
| 95 |
- Included Ralfs patch for ETL-config
|
| 96 |
|
| 97 |
* Sat Jan 12 2008 Marc Wiriadisastra <marc@mwiriadi.id.au> - 0.04.10-1
|
| 98 |
- new release
|