ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/free/rpms/ffmpeg/F-13/ffmpeg.spec
Revision: 1.16
Committed: Thu Mar 26 23:06:34 2009 UTC (4 years, 1 month ago) by rathann
Branch: MAIN
CVS Tags: ffmpeg-0_5-2_fc11, F-11-split
Changes since 1.15: +4 -1 lines
Log Message:
* Fri Mar 27 2009 Dominik Mierzejewski <rpm at greysector.net> - 0.5-2
- rebuild for new faad2 and x264

Line File contents
1 # TODO: add make test to %%check section
2
3 %define faad2min 1:2.6.1
4
5 Summary: Digital VCR and streaming server
6 Name: ffmpeg
7 Version: 0.5
8 Release: 2%{?dist}
9 License: GPLv2+
10 Group: Applications/Multimedia
11 URL: http://ffmpeg.org/
12 Source0: http://ffmpeg.org/releases/%{name}-%{version}.tar.bz2
13 # get rid of textrels on x86_64 in yasm code
14 Patch0: %{name}-textrel.patch
15 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
16
17 %{?_with_amr:BuildRequires: amrnb-devel amrwb-devel}
18 BuildRequires: bzip2-devel
19 BuildRequires: faac-devel
20 BuildRequires: faad2-devel >= %{faad2min}
21 BuildRequires: gsm-devel
22 BuildRequires: imlib2-devel
23 BuildRequires: lame-devel
24 BuildRequires: libdc1394-devel
25 BuildRequires: libtheora-devel
26 BuildRequires: libvorbis-devel
27 BuildRequires: openjpeg-devel
28 BuildRequires: schroedinger-devel
29 BuildRequires: SDL-devel
30 BuildRequires: speex-devel
31 BuildRequires: texi2html
32 BuildRequires: x264-devel >= 0.0.0-0.14.20080613
33 BuildRequires: xvidcore-devel
34 BuildRequires: zlib-devel
35 %ifarch %{ix86} x86_64
36 BuildRequires: yasm
37 %endif
38
39 %description
40 FFMpeg is a complete and free Internet live audio and video
41 broadcasting solution for Linux/Unix. It also includes a digital
42 VCR. It can encode in real time in many formats including MPEG1 audio
43 and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.
44
45 %package libs
46 Summary: Libraries for %{name}
47 Group: System Environment/Libraries
48 Requires: faad2-libs >= %{faad2min}
49 Obsoletes: ffmpeg-libpostproc < 0.4.9-0.11
50 Obsoletes: ffmpeg-compat < 0.4.9-0.49
51
52 %description libs
53 FFMpeg is a complete and free Internet live audio and video
54 broadcasting solution for Linux/Unix. It also includes a digital
55 VCR. It can encode in real time in many formats including MPEG1 audio
56 and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.
57 This package contains the libraries for %{name}
58
59 %package devel
60 Summary: Development package for %{name}
61 Group: Development/Libraries
62 Requires: %{name}-libs = %{version}-%{release}
63 Requires: pkgconfig
64 Obsoletes: ffmpeg-compat-devel < 0.4.9-0.49
65
66 %description devel
67 FFMpeg is a complete and free Internet live audio and video
68 broadcasting solution for Linux/Unix. It also includes a digital
69 VCR. It can encode in real time in many formats including MPEG1 audio
70 and video, MPEG4, h263, ac3, asf, avi, real, mjpeg, and flash.
71 This package contains development files for %{name}
72
73 %define ff_configure \
74 ../configure \\\
75 --prefix=%{_prefix} \\\
76 --bindir=%{_bindir} \\\
77 --datadir=%{_datadir}/ffmpeg \\\
78 --incdir=%{_includedir}/ffmpeg \\\
79 --libdir=%{_libdir} \\\
80 --mandir=%{_mandir} \\\
81 --arch=%{_target_cpu} \\\
82 --extra-cflags="$RPM_OPT_FLAGS -I%{_includedir}/openjpeg" \\\
83 --extra-version=rpmfusion \\\
84 %{?_with_amr:--enable-libamr-nb --enable-libamr-wb --enable-nonfree} \\\
85 --enable-bzlib \\\
86 --enable-libdc1394 \\\
87 --enable-libfaac \\\
88 --enable-libfaad \\\
89 --enable-libgsm \\\
90 --enable-libmp3lame \\\
91 --enable-libopenjpeg \\\
92 --enable-libschroedinger \\\
93 --enable-libspeex \\\
94 --enable-libtheora \\\
95 --enable-libvorbis \\\
96 --enable-libx264 \\\
97 --enable-libxvid \\\
98 --enable-x11grab \\\
99 --enable-avfilter \\\
100 --enable-avfilter-lavf \\\
101 --enable-postproc \\\
102 --enable-swscale \\\
103 --enable-pthreads \\\
104 --disable-static \\\
105 --enable-shared \\\
106 --enable-gpl \\\
107 --disable-debug \\\
108 --disable-stripping
109
110
111 %prep
112 %setup -q
113 %patch0 -p1 -b .textrel
114
115 %build
116 mkdir generic
117 pushd generic
118 %{ff_configure}\
119 --shlibdir=%{_libdir} \
120 %ifarch %{ix86}
121 --cpu=%{_target_cpu} \
122 --disable-mmx2 \
123 --disable-sse \
124 --disable-ssse3 \
125 --disable-yasm \
126 %endif
127 %ifarch ppc ppc64
128 --disable-altivec \
129 %endif
130 %ifarch sparc sparc64
131 --disable-vis \
132 %endif
133
134 make %{?_smp_mflags}
135 make documentation
136 popd
137
138 mkdir simd
139 pushd simd
140 %ifarch %{ix86}
141 %{ff_configure}\
142 --shlibdir=%{_libdir}/i686 \
143 --cpu=i686 \
144 --disable-ffmpeg \
145 --disable-ffserver \
146 --disable-ffplay \
147
148 make %{?_smp_mflags}
149 %endif
150 %ifarch ppc
151 %{ff_configure}\
152 --shlibdir=%{_libdir}/altivec \
153 --cpu=g4 \
154 --enable-altivec \
155 --disable-ffmpeg \
156 --disable-ffserver \
157 --disable-ffplay \
158
159 make %{?_smp_mflags}
160 %endif
161 %ifarch ppc64
162 %{ff_configure}\
163 --shlibdir=%{_libdir}/altivec \
164 --cpu=g5 \
165 --enable-altivec \
166 --disable-ffmpeg \
167 --disable-ffserver \
168 --disable-ffplay \
169
170 make %{?_smp_mflags}
171 %endif
172 %ifarch sparc sparc64
173 %{ff_configure}\
174 --shlibdir=%{_libdir}/v9 \
175 --cpu=v9 \
176 --enable-vis \
177 --disable-ffmpeg \
178 --disable-ffserver \
179 --disable-ffplay \
180
181 make %{?_smp_mflags}
182 %endif
183 popd
184
185 %install
186 rm -rf $RPM_BUILD_ROOT
187 pushd generic
188 make install DESTDIR=$RPM_BUILD_ROOT
189 popd
190 pushd simd
191 %ifarch %{ix86} ppc ppc64 sparc sparc64
192 make install DESTDIR=$RPM_BUILD_ROOT
193 %endif
194 popd
195
196 %clean
197 rm -rf $RPM_BUILD_ROOT
198
199
200 %post libs -p /sbin/ldconfig
201
202 %postun libs -p /sbin/ldconfig
203
204 %files
205 %defattr(-,root,root,-)
206 %doc COPYING.GPL CREDITS Changelog README RELEASE doc/ffserver.conf
207 %{_bindir}/ffmpeg
208 %{_bindir}/ffplay
209 %{_bindir}/ffserver
210 %{_mandir}/man1/ffmpeg.1*
211 %{_mandir}/man1/ffplay.1*
212 %{_mandir}/man1/ffserver.1*
213 %{_datadir}/ffmpeg
214
215 %files libs
216 %defattr(-,root,root,-)
217 %{_libdir}/lib*.so.*
218 %{_libdir}/vhook/
219 %ifarch %{ix86}
220 %{_libdir}/i686/lib*.so.*
221 %{_libdir}/i686/vhook/
222 %endif
223 %ifarch ppc ppc64
224 %{_libdir}/altivec/lib*.so.*
225 %{_libdir}/altivec/vhook/
226 %endif
227 %ifarch sparc sparc64
228 %{_libdir}/v9/lib*.so.*
229 %{_libdir}/v9/vhook/
230 %endif
231
232 %files devel
233 %defattr(-,root,root,-)
234 %doc MAINTAINERS doc/APIchanges doc/TODO doc/*.txt
235 %{_includedir}/ffmpeg
236 %{_libdir}/pkgconfig/lib*.pc
237 %{_libdir}/lib*.so
238 %ifarch %{ix86}
239 %{_libdir}/i686/lib*.so
240 %endif
241 %ifarch ppc ppc64
242 %{_libdir}/altivec/lib*.so
243 %endif
244 %ifarch sparc sparc64
245 %{_libdir}/v9/lib*.so
246 %endif
247
248
249 %changelog
250 * Fri Mar 27 2009 Dominik Mierzejewski <rpm at greysector.net> - 0.5-2
251 - rebuild for new faad2 and x264
252
253 * Tue Mar 10 2009 Dominik Mierzejewski <rpm at greysector.net> - 0.5-1
254 - 0.5 release
255 - enable yasm on x86_64, fix resulting textrels
256 - add missing obsoletes for ffmpeg-compat-devel (really fix bug #173)
257 - disable yasm and certain asm optimizations for generic ix86 builds
258 - %%{_bindir} is now usable
259 - include more docs
260 - specfile cleanups
261 - add JPEG2000 decoding support via openjpeg
262
263 * Sat Jan 31 2009 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.58.20090131
264 - 20090131 snapshot
265
266 * Wed Dec 17 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.57.20081217
267 - 20081217 snapshot
268 - fix pkgconfig files again (broken in 0.4.9-0.55.20081214)
269
270 * Mon Dec 15 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.56.20081214
271 - drop libdirac support for now
272
273 * Sun Dec 14 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.55.20081214
274 - 20081214 snapshot
275 - change the lib split on x86, it doesn't work right for P3/AthlonXP
276 - specfile cleanups
277 - enable bzlib, dirac and speex support via external libs
278 - sort BR list alphabetically
279 - drop upstream'd patch
280
281 * Thu Dec 11 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.54.20081202
282 - fix pkgconfig file generation
283
284 * Thu Dec 04 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.53.20081202
285 - 20081202 snapshot
286 - drop upstreamed/obsolete patches
287
288 * Thu Nov 20 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.52.20080908
289 - add obsoletes for -compat package (RPMFusion bug #173)
290
291 * Sat Nov 01 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.51.20080908
292 - reworked build system
293 - build optimized versions where it makes sense
294 - specfile cleanups
295 - enable yasm for optimized asm routines on x86_32
296 - add obsoletes for Freshrpms' libpostproc subpackage
297
298 * Thu Sep 18 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.50.20080908
299 - 20080908 snapshot (r25261), last before ABI change
300
301 * Fri Sep 05 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.49.20080905
302 - 20080905 snapshot
303 - fix build --with amr
304 - update snapshot.sh
305 - drop liba52 support, native ac3 decoder is better in every way
306
307 * Mon Aug 25 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.48.20080825
308 - 20080825 snapshot
309 - use CFLAGS more similar to upstream
310 - enable X11 grabbing input
311 - enable libavfilter
312
313 * Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.4.9-0.47.20080614
314 - rebuild
315
316 * Sat Jun 14 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.46.20080614
317 - 20080614 snapshot
318 - no need to conditionalize swscaler anymore
319 - dropped obsolete pkgconfig patch
320 - BR latest x264
321
322 * Mon Mar 03 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.45.20080113
323 - rebuild for new x264
324
325 * Sun Jan 13 2008 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.44.20080113
326 - 20080113 snapshot
327 - drop unnecessary patch
328 - enable libdc1394 support
329 - enable swscaler
330
331 * Mon Nov 12 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.43.20071111
332 - ensure that we use the correct faad2 version
333
334 * Sun Nov 11 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.42.20071111
335 - 20071111 snapshot
336 - current faad2 is good again
337
338 * Thu Oct 18 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.41.20071011
339 - fix BRs and Requires for faad2
340
341 * Thu Oct 11 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.40.20071011
342 - 20071011 snapshot
343 - don't link against faad2-2.5, it makes GPL'd binary non-distributable
344 - go back to normal linking instead of dlopen() of liba52
345
346 * Sun Sep 23 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.39.20070923
347 - 20070923 snapshot
348 - use faad2 2.5
349 - optional AMR support
350 - dropped obsolete patch
351
352 * Thu Jun 07 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.38.20070607
353 - 20070607 snapshot
354 - libdca BR dropped (no longer supported)
355 - drop gsm.h path hack, gsm in Fedora now provides a compatibility symlink
356 - remove arch hacks, ffmpeg's configure is smart enough
357 - enable cmov on x86_64
358
359 * Thu May 03 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.37.20070503
360 - require older faad2 to prevent bugreports like #1388
361 - prepare for libdc1394 support
362 - enable pthreads
363 - 20070503 snapshot
364
365 * Thu Feb 08 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.35.20070204
366 - libswscale.pc is necessary regardless of --enable-swscaler
367
368 * Sun Feb 4 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.34.20070204
369 - 2007-02-04 snapshot, enable libtheora.
370 - Make swscaler optional, disabled again by default (#1379).
371
372 * Fri Jan 05 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.34.20061214
373 - move vhooks to -libs
374
375 * Wed Jan 03 2007 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.33.20061214
376 - split -libs subpackage for multilib installs
377
378 * Tue Dec 26 2006 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.32.20061214
379 - new kino works with swscaler, re-enabled
380
381 * Tue Dec 19 2006 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.31.20061214
382 - disable swscaler, it breaks kino
383
384 * Sun Dec 17 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.30.20061214
385 - fix pkgconfig patch
386
387 * Sat Dec 16 2006 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.29.20061214
388 - liba52 change broke build on 64bit
389 - resurrect lost URL changes
390
391 * Fri Dec 15 2006 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.28.20061214
392 - fixed build on x86
393 - change liba52 file-based dependency to provides-based
394 - resurrect and update pkgconfig patch
395
396 * Thu Dec 14 2006 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.27.20061214
397 - new snapshot URL
398 - new URL
399
400 * Thu Dec 14 2006 Dominik Mierzejewski <rpm at greysector.net> - 0.4.9-0.26.20061214
401 - 2006-12-14 snapshot
402 - added libdca support
403 - enabled swscaler
404 - dropped obsolete patches
405
406 * Mon Oct 30 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.25.20061030
407 - 2006-10-30 snapshot, fixes x86_64 build.
408 - Apply a less intrusive workaround for LAME detection issues.
409
410 * Sat Oct 28 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.25.20061028
411 - 2006-10-28 snapshot, build with x264.
412 - Clean up some pre-FC4 compat build dependency cruft.
413 - Quick and dirty workarounds for ./configure's libmp3lame test and asm
414 register issues on ix86.
415
416 * Fri Oct 06 2006 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 0.4.9-25
417 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
418
419 * Tue Sep 26 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.24.20060817
420 - Drop SELinux fcontext settings, they're supposedly fixed upstream again.
421
422 * Thu Aug 17 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.23.20060817
423 - 2006-08-17 snapshot.
424 - Fix svn rev in "ffmpeg -version" etc.
425
426 * Wed Aug 9 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.23.20060804
427 - Reintroduce SELinux fcontext settings on ix86 (not needed on x86_64, ppc),
428 they're not completely taken care of upstream (#1120).
429 - Split svn snapshot creator into a separate script.
430
431 * Fri Aug 4 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.22.20060804
432 - 2006-08-04 snapshot.
433 - Drop bogus version from SDL-devel build dependency.
434 - Drop no longer relevant libpostproc obsoletion.
435 - Prune pre-2005 changelog entries.
436 - Specfile cleanup.
437
438 * Sat Jun 17 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.22.20060617
439 - 2006-06-17 snapshot.
440
441 * Mon Jun 12 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.22.20060612
442 - 2006-06-12 snapshot, rgb.txt patch applied upstream.
443 - Patch to force linking vhook modules with their dependencies, --as-needed
444 seems to drop needed things for some reason for drawtext and imlib2.
445 - Revert to dlopen()'ing liba52 and add file based dependency on it, it's
446 easier this way again due to --as-needed linkage.
447
448 * Wed May 17 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.22.20060517
449 - 2006-05-17 snapshot.
450 - Link with faad2, don't dlopen() it.
451
452 * Sat May 13 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.22.20060513
453 - 2006-05-13 snapshot.
454 - Drop SELinux fixups, they're part of upstream policy now.
455
456 * Sat Apr 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.22.20060407
457 - SELinux file context fixups (mplayer, vdr-dxr3 etc) while waiting for #188358
458
459 * Sat Apr 8 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.21.20060407
460 - 2006-04-07 CVS snapshot.
461 - Move *.so to -devel, hopefully nothing needs them any more.
462
463 * Fri Mar 31 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.21.20051228
464 - Remove superfluous dependencies from pkgconfig files (#747).
465 - Re-enable MMX on x86_64.
466
467 * Thu Mar 09 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
468 - switch to new release field
469
470 * Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
471 - add dist
472
473 * Wed Dec 28 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.lvn.0.20.20051228
474 - 2005-12-28 CVS snapshot.
475 - Let upstream configure take care of PIC settings (patched for ppc).
476 - Own shared lib symlinks.
477
478 * Fri Dec 23 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.4.9-0.lvn.0.20.20050801
479 - Apply upstream fix for CVE-2005-4048.
480 - Patch to find rgb.txt in FC5 too.
481
482 * Thu Sep 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.9-0.lvn.0.19.20050801
483 - Clean up obsolete pre-FC3 stuff (FAAC is now unconditionally enabled).
484 - Drop zero Epochs.
485
486 * Tue Aug 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.9-0.lvn.0.18.20050801
487 - Apply some upstream and some mine (libdir) fixes to pkgconfig files.
488 - Add pkgconfig dependency to -devel.
489 - Include gsm support.
490
491 * Thu Aug 4 2005 David Woodhouse <dwmw2@infradead.org> - 0:0.4.9-0.lvn.0.17.20050801
492 - Update to 20050801 snapshot to make xine-lib happy
493 - Enable Altivec support by using --cpu=powerpc (not 'ppc')
494 - Enable theora
495 - Add pkgconfig files
496 - Undefine various things which might be macros before redefining them
497
498 * Sat Jul 23 2005 Dams <anvil[AT]livna.org> - 0:0.4.9-0.lvn.0.17.20050427
499 - Added patch from Marc Deslauriers to fix wmv2 distorsion
500
501 * Sun Jul 10 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.9-0.lvn.0.16.20050427
502 - Enable faac by default, rebuild with "--without faac" to disable.
503 - Clean up obsolete pre-FC2 and other stuff.
504
505 * Sun May 22 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.9-0.lvn.0.15.20050427
506 - PPC needs -fPIC too.
507
508 * Sat May 21 2005 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 0:0.4.9-0.lvn.0.14.20050427
509 - disable mmx for now on x86_64 to fix build
510
511 * Sat Apr 30 2005 Dams <anvil[AT]livna.org> - 0:0.4.9-0.lvn.0.13.20050427
512 - Removed bogus devel requires
513 - Re-added conditionnal a52dec buildreq
514
515 * Fri Apr 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0:0.4.9-0.lvn.0.12.20050427
516 - Link avcodec with a52 when building with a52bin, remove unnecessary
517 hardcoded liba52.so.0 dependency.
518
519 * Fri Apr 29 2005 Dams <anvil[AT]livna.org> - 0:0.4.9-0.lvn.0.11.20050427
520 - Fixed devel package deps
521
522 * Fri Apr 29 2005 Dams <anvil[AT]livna.org> - 0:0.4.9-0.lvn.0.10.20050427
523 - texi2html replaces tetex as build dependency (FC4 compliance)
524 - re-added man pages
525
526 * Thu Apr 28 2005 Dams <anvil[AT]livna.org> - 0:0.4.9-0.lvn.0.9.20050427
527 - Patch from Enrico to fix build on gcc4
528 - Missing BuildReq a52dec-devel when a52bin is defined
529 - Patch to fix a52 build
530
531 * Wed Apr 27 2005 Dams <anvil[AT]livna.org> - 0:0.4.9-0.lvn.0.8.20050427
532 - Updated tarball to cvs 20050427 snapshot
533 - Enabled libogg, xvid, a52bin
534 - Dropped Patch[0-3]