]> git.pld-linux.org Git - packages/libdv.git/blobdiff - libdv.spec
- disable asm on x86_64 because of relocation problems
[packages/libdv.git] / libdv.spec
index 0b3eecf57a3dec93f5b106d956106c8ffeffd137..49d1508f8e417775d3df269a9c039b0611146319 100644 (file)
@@ -1,22 +1,35 @@
 #
-# _with_mmx - uses MMX asm (won't run on non-MMX CPU!)
+# Conditional build:
+%bcond_without gui     # don't build gui stuff
+%bcond_with    mmx     # use MMX asm (won't run on non-MMX CPU!)
+%bcond_without static_libs     # don't build static library
+#
+%ifarch athlon pentium3 pentium4
+# %{x8664} skipped - gas generates PIC-incompatible relocation entries
+%define                with_mmx        1
+%endif
 Summary:       DV video software codec
 Summary(pl):   Biblioteka do obs³ugi formatu wideo DV
 Name:          libdv
-Version:       0.98
+Version:       0.104
 Release:       2
-License:       GPL
-Group:         X11/Libraries
-Source0:       http://download.sourceforge.net/libdv/%{name}-%{version}.tar.gz
-Patch0:                %{name}-extern.patch
+License:       LGPL
+Group:         Libraries
+Source0:       http://dl.sourceforge.net/libdv/%{name}-%{version}.tar.gz
+# Source0-md5: f6b08efce7472daa20685e6e8431f542
+Patch0:                %{name}-include_fix.patch
 URL:           http://libdv.sourceforge.net/
+%if %{with gui}
+BuildRequires: SDL-devel >= 1.1.6
 BuildRequires: XFree86-devel
 BuildRequires: gtk+-devel >= 1.2.10-3
-BuildRequires: pkgconfig >= 0.7
+%endif
+BuildRequires: automake
+BuildRequires: pkgconfig >= 1:0.7
 BuildRequires: popt-devel
+BuildRequires: rpmbuild(macros) >= 1.213
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-
 %description
 The Quasar DV codec (libdv) is a software codec for DV video. DV is
 the encoding format used by most digital camcorders, typically those
@@ -34,7 +47,7 @@ pisany zgodnie z oficjalnymi standardami DV, IEC 61834, SMPTE 314M.
 Summary:       Programs to encode and play DV files
 Summary(pl):   Programy do kodowania i odtwarzania plików DV
 Group:         X11/Applications/Multimedia
-Requires:      %{name} = %{version}
+Requires:      %{name} = %{version}-%{release}
 
 %description -n dv
 Programs to encode and play DV files.
@@ -46,7 +59,7 @@ Programy do kodowania i odtwarzania plik
 Summary:       DV library headers
 Summary(pl):   Pliki nag³ówkowe biblioteki DV
 Group:         Development/Libraries
-Requires:      %{name} = %{version}
+Requires:      %{name} = %{version}-%{release}
 
 %description devel
 This is the libraries, include files and other resources you can use
@@ -60,7 +73,7 @@ libdv.
 Summary:       DV static libraries
 Summary(pl):   Statyczne biblioteki do obs³ugi formatu DV
 Group:         Development/Libraries
-Requires:      %{name}-devel = %{version}
+Requires:      %{name}-devel = %{version}-%{release}
 
 %description static
 This is package with static libdv libraries.
@@ -73,10 +86,19 @@ Statyczna wersja biblioteki libdv.
 %patch0 -p1
 
 %build
+cp /usr/share/automake/config.sub .
 %configure \
        --enable-shared \
+%if %{with gui}
+       --enable-sdl \
+       --enable-gtk \
+%else
+       --disable-sdl \
+       --disable-gtk \
+%endif
        --without-debug \
-       %{!?_with_mmx:--disable-asm}
+       %{!?with_mmx:--disable-asm} \
+       %{!?with_static_libs:--disable-static}
 
 %{__make}
 
@@ -96,12 +118,14 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog NEWS README.* TODO
-%attr(755,root,root) %{_libdir}/lib*.so.*
+%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
 
+%if %{with gui}
 %files -n dv
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_bindir}/*
 %{_mandir}/man1/*
+%endif
 
 %files devel
 %defattr(644,root,root,755)
@@ -110,6 +134,8 @@ rm -rf $RPM_BUILD_ROOT
 %{_includedir}/libdv
 %{_pkgconfigdir}/*
 
+%if %{with static_libs}
 %files static
 %defattr(644,root,root,755)
 %{_libdir}/lib*.a
+%endif
This page took 0.035846 seconds and 4 git commands to generate.