automatic rebuild by autodist [release 1.0.0-4mamba;Sun Aug 22 2010]
This commit is contained in:
parent
a50d49c57f
commit
a91cf64034
@ -1,2 +1,5 @@
|
|||||||
# libdv
|
# libdv
|
||||||
|
|
||||||
|
The Quasar DV Codec (libdv) is a software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards.
|
||||||
|
DV is the encoding format used by consumer-grade digital camcorders.
|
||||||
|
|
||||||
|
11
libdv-1.0.0-gtk2.patch
Normal file
11
libdv-1.0.0-gtk2.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- libdv-1.0.0/configure.ac.orig 2007-01-19 15:48:43.000000000 -0500
|
||||||
|
+++ libdv-1.0.0/configure.ac 2007-01-19 15:50:08.000000000 -0500
|
||||||
|
@@ -162,7 +162,7 @@
|
||||||
|
dnl Checks for libraries.
|
||||||
|
have_gtk="false"
|
||||||
|
if $use_gtk; then
|
||||||
|
- REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4'
|
||||||
|
+ REQUIRES='glib-2.0 >= 2.1.0 gtk+-x11-2.0 >= 2.1.0'
|
||||||
|
PKG_CHECK_MODULES(GTK,$REQUIRES,have_gtk="true",have_gtk="false")
|
||||||
|
AC_DEFINE(HAVE_GTK)
|
||||||
|
fi
|
1634
libdv-1.0.0-pic.patch
Normal file
1634
libdv-1.0.0-pic.patch
Normal file
File diff suppressed because it is too large
Load Diff
110
libdv.spec
Normal file
110
libdv.spec
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
Name: libdv
|
||||||
|
Version: 1.0.0
|
||||||
|
Release: 4mamba
|
||||||
|
Summary: A software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards
|
||||||
|
Group: System/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://libdv.sourceforge.net/
|
||||||
|
Source: http://downloads.sourceforge.net/libdv/libdv-%{version}.tar.gz
|
||||||
|
Patch1: %{name}-1.0.0-pic.patch
|
||||||
|
Patch2: %{name}-1.0.0-gtk2.patch
|
||||||
|
License: GPL
|
||||||
|
BuildRequires: libgtk-devel
|
||||||
|
BuildRequires: libXv-devel
|
||||||
|
BuildRequires: libXt-devel
|
||||||
|
BuildRequires: libSDL-devel
|
||||||
|
BuildRequires: libpopt-devel
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
The Quasar DV Codec (libdv) is a software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards.
|
||||||
|
DV is the encoding format used by consumer-grade digital camcorders.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Devel files for %{name}
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The Quasar DV Codec (libdv) is a software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards.
|
||||||
|
DV is the encoding format used by consumer-grade digital camcorders.
|
||||||
|
|
||||||
|
This package contains static libraries and header files need for development.
|
||||||
|
|
||||||
|
%package -n dv
|
||||||
|
Summary: Basic tools to manipulate Digital Video streams
|
||||||
|
Group: Applications/Multimedia
|
||||||
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description -n dv
|
||||||
|
Some basic programs to display and encode Digital Video streams.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
sh bootstrap
|
||||||
|
%configure \
|
||||||
|
--enable-sdl \
|
||||||
|
--with-pic
|
||||||
|
|
||||||
|
%make
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
%makeinstall
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
%doc ChangeLog COPYING README AUTHORS NEWS TODO COPYRIGHT
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/*.a
|
||||||
|
%{_libdir}/*.la
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_includedir}/%{name}/*.h
|
||||||
|
%{_libdir}/pkgconfig/%{name}.pc
|
||||||
|
|
||||||
|
%files -n dv
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_mandir}/man1/*
|
||||||
|
%doc README.encoder README.dvconnect
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sun Aug 22 2010 Automatic Build System <autodist@mambasoft.it> 1.0.0-4mamba
|
||||||
|
- automatic rebuild by autodist
|
||||||
|
|
||||||
|
* Mon Jun 29 2009 Automatic Build System <autodist@mambasoft.it> 1.0.0-3mamba
|
||||||
|
- automatic rebuild by autodist
|
||||||
|
|
||||||
|
* Sun May 17 2009 Automatic Build System <autodist@mambasoft.it> 1.0.0-2mamba
|
||||||
|
- automatic rebuild by autodist
|
||||||
|
|
||||||
|
* Sun May 13 2007 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 1.0.0-1mamba
|
||||||
|
- update to 1.0.0
|
||||||
|
- binary files moved to the new package dv
|
||||||
|
|
||||||
|
* Thu Jun 08 2006 Stefano Cotta Ramusino <stefano.cotta@qilinux.it> 0.104-1qilnx
|
||||||
|
- update to version 0.104 by autospec
|
||||||
|
|
||||||
|
* Sat Oct 02 2004 Davide Madrisan <davide.madrisan@qilinux.it> 0.103-2qilnx
|
||||||
|
- some specfile fixes
|
||||||
|
|
||||||
|
* Wed Sep 15 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 0.103-1qilnx
|
||||||
|
- new version build
|
||||||
|
|
||||||
|
* Fri Mar 05 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 0.101-1qilnx
|
||||||
|
- first build
|
Loading…
Reference in New Issue
Block a user