2004-09-09 07:43:27 +00:00
|
|
|
Summary: Theora Video Compression Codec
|
|
|
|
Name: libtheora
|
2006-08-02 22:21:58 +00:00
|
|
|
Version: 1.0alpha7
|
2007-03-25 21:59:42 +00:00
|
|
|
Release: 2%{?dist}
|
2004-09-09 07:43:46 +00:00
|
|
|
Epoch: 0
|
2004-09-09 07:43:27 +00:00
|
|
|
License: BSD
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
URL: http://www.theora.org
|
2007-03-25 21:59:42 +00:00
|
|
|
Source0: http://downloads.xiph.org/releases/theora/%{name}-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2004-09-09 07:43:27 +00:00
|
|
|
BuildRequires: libogg-devel >= 2:1.1
|
2004-10-05 18:01:59 +00:00
|
|
|
BuildRequires: libvorbis-devel
|
2004-09-09 07:43:27 +00:00
|
|
|
BuildRequires: SDL-devel
|
|
|
|
|
|
|
|
%description
|
|
|
|
Theora is Xiph.Org's first publicly released video codec, intended
|
|
|
|
for use within the Ogg's project's Ogg multimedia streaming system.
|
|
|
|
Theora is derived directly from On2's VP3 codec; Currently the two are
|
|
|
|
nearly identical, varying only in encapsulating decoder tables in the
|
|
|
|
bitstream headers, but Theora will make use of this extra freedom
|
|
|
|
in the future to improve over what is possible with VP3.
|
|
|
|
|
|
|
|
%package devel
|
2007-03-25 21:59:42 +00:00
|
|
|
Summary: Development tools for Theora applications
|
2004-09-09 07:43:27 +00:00
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: libogg-devel >= 2:1.1
|
2004-09-09 07:43:46 +00:00
|
|
|
Requires: libtheora = %{epoch}:%{version}-%{release}
|
2007-03-25 21:59:42 +00:00
|
|
|
Requires: pkgconfig
|
2004-09-09 07:43:27 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The libtheora-devel package contains the header files and documentation
|
|
|
|
needed to develop applications with libtheora.
|
|
|
|
|
|
|
|
%package -n theora-tools
|
|
|
|
Summary: Command line tools for Theora videos
|
|
|
|
Group: Applications/Multimedia
|
2004-09-09 07:43:46 +00:00
|
|
|
Requires: libtheora = %{epoch}:%{version}-%{release}
|
2004-09-09 07:43:27 +00:00
|
|
|
|
|
|
|
%description -n theora-tools
|
|
|
|
The theora-tools package contains simple command line tools for use
|
|
|
|
with theora bitstreams.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2007-03-25 21:59:42 +00:00
|
|
|
%configure --enable-shared --disable-static
|
2004-09-09 07:43:27 +00:00
|
|
|
make
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%makeinstall
|
|
|
|
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
install -m 755 examples/.libs/dump_video $RPM_BUILD_ROOT/%{_bindir}/theora_dump_video
|
|
|
|
install -m 755 examples/.libs/encoder_example $RPM_BUILD_ROOT/%{_bindir}/theora_encode
|
|
|
|
install -m 755 examples/.libs/player_example $RPM_BUILD_ROOT/%{_bindir}/theora_player
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc README COPYING
|
|
|
|
%doc doc/vp3-format.txt
|
2005-01-04 00:07:22 +00:00
|
|
|
%doc doc/spec/Theora_I_spec.pdf
|
2004-09-09 07:43:27 +00:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2007-03-25 21:59:42 +00:00
|
|
|
%dir %{_includedir}/theora
|
2004-09-09 07:43:37 +00:00
|
|
|
%{_includedir}/theora/theora.h
|
2004-09-09 07:43:27 +00:00
|
|
|
%{_libdir}/*.so
|
2005-01-04 00:07:22 +00:00
|
|
|
%{_libdir}/pkgconfig/theora.pc
|
2004-09-09 07:43:27 +00:00
|
|
|
|
|
|
|
%files -n theora-tools
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/*
|
|
|
|
|
|
|
|
%changelog
|
2007-03-25 21:59:42 +00:00
|
|
|
* Sun Mar 25 2007 Matthias Clasen <mclasen@redhat.com> - 0:1.0alpha7-2
|
|
|
|
- Fix a directory ownership issue (#233872)
|
|
|
|
- Small spec cleanups
|
|
|
|
|
2006-08-02 22:21:58 +00:00
|
|
|
* Wed Aug 02 2006 Monty <cmontgom@redhat.com> - 0:1.0alpha7-1
|
|
|
|
- Update to 1.0alpha7
|
|
|
|
|
2006-07-12 06:57:42 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0:1.0alpha5-1.2.2
|
|
|
|
- rebuild
|
|
|
|
|
2006-02-11 04:14:25 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0:1.0alpha5-1.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 12:44:45 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0:1.0alpha5-1.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:41:42 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-11-09 20:49:42 +00:00
|
|
|
* Wed Nov 09 2005 John (J5) Palmieri <johnp@redhar.com> - 1.0alpha5-1
|
|
|
|
- Update to 1.0alpha5
|
|
|
|
|
2005-03-02 23:57:49 +00:00
|
|
|
* Wed Mar 02 2005 John (J5) Palmieri <johnp@redhar.com> - 1.0alpha4-2
|
|
|
|
- rebuild with gcc 4.0
|
|
|
|
|
2005-01-04 00:07:22 +00:00
|
|
|
* Mon Jan 03 2005 Colin Walters <walters@redhat.com> - 1.0alpha4-1
|
|
|
|
- New upstream version 1.0alpha4
|
|
|
|
- Remove upstreamed patch libtheora-1.0alpha3-include.patch
|
|
|
|
- Use Theora_I_spec.pdf for spec
|
|
|
|
- Add in .pc file (yay! another library sees the light)
|
|
|
|
|
2004-10-05 18:01:59 +00:00
|
|
|
* Tue Oct 05 2004 Colin Walters <walters@redhat.com> - 1.0alpha3-5
|
|
|
|
- Add BuildRequires on libvorbis-devel (134664)
|
|
|
|
|
2004-09-09 07:43:46 +00:00
|
|
|
* Sat Jul 17 2004 Warren Togami <wtogami@redhat.com> - 1.0alpha3-4
|
|
|
|
- Add Epoch dependencies for future Epoch increment safety measure
|
|
|
|
|
2004-09-09 07:43:37 +00:00
|
|
|
* Thu Jul 15 2004 Colin Walters <walters@redhat.com> - 1.0alpha3-3
|
|
|
|
- Apply patch to fix include path, thanks to Thomas Vander Stichele
|
|
|
|
|
2004-09-09 07:43:27 +00:00
|
|
|
* Tue Jul 13 2004 Jeremy Katz <katzj@redhat.com> - 1.0alpha3-2
|
|
|
|
- rebuild
|
|
|
|
|
|
|
|
* Mon Jun 21 2004 Jeremy Katz <katzj@redhat.com> - 1.0alpha3-1
|
|
|
|
- Initial build
|