basesink: fix emergency rendering timestamp tracking
[platform/upstream/gstreamer.git] / gstreamer.spec.in
1 %define         gstreamer       gstreamer
2 %define         majorminor      @GST_MAJORMINOR@
3
4 %define         _glib2          @GLIB_REQ@
5 %define         _libxml2        @LIBXML2_REQ@
6
7 Name:           %{gstreamer}
8 Version:        @VERSION@
9 Release:        @PACKAGE_VERSION_RELEASE@
10 Summary:        GStreamer streaming media framework runtime
11
12 Group:          Applications/Multimedia
13 License:        LGPL
14 URL:            http://gstreamer.freedesktop.org/
15 Source:         http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.bz2
16 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
17
18 Requires:       gstreamer-tools >= %{version}
19 # gst-feedback uses these
20 Requires:       which, pkgconfig
21
22 BuildRequires:  glib2-devel >= %{_glib2}
23 BuildRequires:  libxml2-devel >= %{_libxml2}
24 BuildRequires:  bison
25 BuildRequires:  flex
26 BuildRequires:  m4
27 BuildRequires:  check-devel
28 BuildRequires:  gtk-doc >= 1.3
29 BuildRequires:  gettext
30
31 # because AM_PROG_LIBTOOL was used in configure.ac
32 BuildRequires:  gcc-c++
33
34 ### documentation requirements
35 BuildRequires:  python2
36 BuildRequires:  openjade
37 BuildRequires:  jadetex
38 BuildRequires:  libxslt
39 BuildRequires:  docbook-style-dsssl
40 BuildRequires:  docbook-style-xsl
41 BuildRequires:  docbook-utils
42 BuildRequires:  transfig
43 BuildRequires:  xfig
44 BuildRequires:  netpbm-progs
45 BuildRequires:  tetex-dvips
46 BuildRequires:  ghostscript
47 BuildRequires:  PyXML
48
49 %description
50 GStreamer is a streaming media framework, based on graphs of filters which
51 operate on media data. Applications using this library can do anything
52 from real-time sound processing to playing videos, and just about anything
53 else media-related.  Its plugin-based architecture means that new data
54 types or processing capabilities can be added simply by installing new 
55 plugins.
56
57 %package devel
58 Summary:        Libraries/include files for GStreamer streaming media framework
59 Group:          Development/Libraries
60
61 Requires:       %{name} = %{version}-%{release}
62 Requires:       glib2-devel >= %{_glib2}
63 Requires:       libxml2-devel >= %{_libxml2}
64 Requires:       check-devel
65
66 %description devel
67 GStreamer is a streaming media framework, based on graphs of filters which
68 operate on media data. Applications using this library can do anything
69 from real-time sound processing to playing videos, and just about anything
70 else media-related.  Its plugin-based architecture means that new data
71 types or processing capabilities can be added simply by installing new   
72 plugins.
73
74 This package contains the libraries and includes files necessary to develop
75 applications and plugins for GStreamer, as well as general and API
76 documentation.
77
78 %package -n gstreamer-tools
79 Summary:        common tools and files for GStreamer streaming media framework
80 Group:          Applications/Multimedia
81
82 %description -n gstreamer-tools
83 GStreamer is a streaming media framework, based on graphs of filters which
84 operate on media data. Applications using this library can do anything
85 from real-time sound processing to playing videos, and just about anything
86 else media-related.  Its plugin-based architecture means that new data
87 types or processing capabilities can be added simply by installing new   
88 plugins.
89
90 This package contains wrapper scripts for the command-line tools that work
91 with different major/minor versions of GStreamer.
92
93 %prep
94 %setup -q -n gstreamer-%{version}
95
96 %build
97 # 0.10.0: manuals do not build due to an openjade error; disable for now
98 %configure \
99   --with-package-name='CVS gstreamer package' \
100   --with-package-origin='http://gstreamer.freedesktop.org' \
101   --enable-debug \
102   --enable-gtk-doc \
103   --enable-docbook \
104   --enable-introspection=no
105
106 #make %{?_smp_mflags}
107 # FIXME: docs building doesn't work with smp yet
108 make
109
110 %install  
111 rm -rf $RPM_BUILD_ROOT
112
113 # Install doc temporarily in order to be included later by rpm
114 make install DESTDIR=$RPM_BUILD_ROOT
115
116 %find_lang gstreamer-%{majorminor}
117 # Clean out files that should not be part of the rpm. 
118 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/gstreamer-%{majorminor}
119 rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.la
120 rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.a
121 rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
122 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
123 # Create empty cache directory
124 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/gstreamer-%{majorminor}
125
126 %clean
127 rm -rf $RPM_BUILD_ROOT
128
129 %post -p /sbin/ldconfig
130
131 %postun -p /sbin/ldconfig
132
133 %files -f gstreamer-%{majorminor}.lang
134 %defattr(-, root, root, -)
135 %doc AUTHORS COPYING NEWS README RELEASE TODO
136 %{_libdir}/libgstreamer-%{majorminor}.so.*
137 %{_libdir}/libgstbase-%{majorminor}.so.*
138 %{_libdir}/libgstcontroller-%{majorminor}.so.*
139 %{_libdir}/libgstdataprotocol-%{majorminor}.so.*
140 %{_libdir}/libgstnet-%{majorminor}.so.*
141
142 %dir %{_libdir}/gstreamer-%{majorminor}
143 %{_libdir}/gstreamer-%{majorminor}/libgstcoreelements.so
144 %{_libdir}/gstreamer-%{majorminor}/libgstcoreindexers.so
145
146 %{_bindir}/gst-feedback-%{majorminor}
147 %{_bindir}/gst-inspect-%{majorminor}
148 %{_bindir}/gst-launch-%{majorminor}
149 %{_bindir}/gst-typefind-%{majorminor}
150 %{_bindir}/gst-xmlinspect-%{majorminor}
151 %{_bindir}/gst-xmllaunch-%{majorminor}
152 %{_libexecdir}/gstreamer-%{majorminor}/gst-plugin-scanner
153 %doc %{_mandir}/man1/gst-feedback-%{majorminor}.*
154 %doc %{_mandir}/man1/gst-inspect-%{majorminor}.*
155 %doc %{_mandir}/man1/gst-launch-%{majorminor}.*
156 %doc %{_mandir}/man1/gst-typefind-%{majorminor}.*
157 %doc %{_mandir}/man1/gst-xmlinspect-%{majorminor}.*
158 %doc %{_mandir}/man1/gst-xmllaunch-%{majorminor}.*
159 %doc %{_datadir}/doc/gstreamer-%{majorminor}/manual
160 %doc %{_datadir}/doc/gstreamer-%{majorminor}/pwg
161 %doc %{_datadir}/doc/gstreamer-%{majorminor}/faq/
162
163 %files -n gstreamer-tools
164 %defattr(-, root, root, -)
165 %{_bindir}/gst-feedback
166 %{_bindir}/gst-inspect
167 %{_bindir}/gst-launch
168 %{_bindir}/gst-typefind
169 %{_bindir}/gst-xmlinspect
170 %{_bindir}/gst-xmllaunch
171
172 %files devel
173 %defattr(-, root, root, -)
174 %dir %{_includedir}/gstreamer-%{majorminor}
175 %dir %{_includedir}/gstreamer-%{majorminor}/gst
176 %{_includedir}/gstreamer-%{majorminor}/gst/*.h
177
178 %{_includedir}/gstreamer-%{majorminor}/gst/base
179 %{_includedir}/gstreamer-%{majorminor}/gst/check
180 %{_includedir}/gstreamer-%{majorminor}/gst/controller
181 %{_includedir}/gstreamer-%{majorminor}/gst/dataprotocol
182 %{_includedir}/gstreamer-%{majorminor}/gst/net
183
184 %{_libdir}/libgstreamer-%{majorminor}.so
185 %{_libdir}/libgstdataprotocol-%{majorminor}.so
186 %{_libdir}/libgstbase-%{majorminor}.so
187 %{_libdir}/libgstcheck-%{majorminor}.so*
188 %{_libdir}/libgstcontroller-%{majorminor}.so
189 %{_libdir}/libgstnet-%{majorminor}.so
190
191 %{_datadir}/aclocal/gst-element-check-%{majorminor}.m4
192 %{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc
193 %{_libdir}/pkgconfig/gstreamer-base-%{majorminor}.pc
194 %{_libdir}/pkgconfig/gstreamer-controller-%{majorminor}.pc
195 %{_libdir}/pkgconfig/gstreamer-check-%{majorminor}.pc
196 %{_libdir}/pkgconfig/gstreamer-dataprotocol-%{majorminor}.pc
197 %{_libdir}/pkgconfig/gstreamer-net-%{majorminor}.pc
198
199 %doc %{_datadir}/gtk-doc/html/gstreamer-%{majorminor}/*
200 %doc %{_datadir}/gtk-doc/html/gstreamer-libs-%{majorminor}/*
201 %doc %{_datadir}/gtk-doc/html/gstreamer-plugins-%{majorminor}/*
202
203 %changelog
204 * Thu Apr 3 2008 Christian Schaller <christian.schaller at collabora co uk>
205 - Update spec file to make inclusion of all docs explicit
206
207 * Tue Dec 11 2007 Christian Schaller <christian.schaller@collabora.co.uk> 
208 - Import from Fedora package
209
210 * Fri Nov 16 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10.15-1
211 - Update to 0.10.15
212
213 * Mon Oct  1 2007 Matthias Clasen <mclasen@redhat.com> - 0.10.14-4
214 - Add missing Requires (#312671)
215
216 * Tue Aug 14 2007 Matthias Clasen <mclasen@redhat.com> - 0.10.14-3
217 - Require check-devel (#251956)
218
219 * Sat Aug 04 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10.14-1
220 - Update to 0.10.14
221
222 * Tue Jun 05 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10.13-2
223 - Remove upstreamed docs patch
224
225 * Tue Jun 05 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10.13-1
226 - Update to 0.10.13
227
228 * Thu Mar 08 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10.12-1
229 - Update to 0.10.12
230
231 * Tue Feb 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10.11-2
232 - Remove Requires on packages that BuildRequire us
233
234 * Tue Dec 12 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.11-1
235 - Update to 0.10.11
236
237 * Fri Oct 27 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.10-2
238 - Cleanups
239 - Attempt to fix multilib conflicts
240
241 * Mon Oct 23 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.10-1
242 - Update to 0.10.10
243
244 * Thu Jul 27 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.9-2
245 - Disable gtk-doc to fix multilib conflicts
246
247 * Thu Jul 20 2006 John (J5) Palmieri <johnp@redhat.com> - 0.10.9-1
248 - Update to new upstream version
249
250 * Wed Jul 19 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.8-4
251 - Re-add the gstreamer-plugins-good dependency
252
253 * Wed Jul 19 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.8-3.2
254 - Temporarily break the dependency cycle with gsteamer-plugins-good
255
256 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.10.8-3.1
257 - rebuild
258
259 * Wed Jun 28 2006 Karsten Hopp <karsten@redhat.de> 0.10.8-3
260 - remove RPATH pointing to RPM_BUILD_ROOT (#196870)
261
262 * Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.8-2
263 - Rebuild
264
265 * Tue Jun 13 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.8-1
266 - Update to 0.10.8
267
268 * Mon May 22 2006 Matthias Clasen <mclasen@redhat.com> - 0.10.6-1
269 - Update to 0.10.6
270
271 * Tue Feb 14 2006 Rik van Riel <riel@redhat.com> - 0.10-3-3
272 - Obsolete gstreamer-plugins (#181296)
273
274 * Mon Feb 13 2006 Christopher Aillon <caillon@redhat.com> - 0.10.3-2
275 - Rebuild
276
277 * Fri Feb 10 2006 Christopher Aillon <caillon@redhat.com> - 0.10.3-1
278 - Update to 0.10.3
279
280 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.10.2-1.1
281 - rebuilt for new gcc4.1 snapshot and glibc changes
282
283 * Wed Jan 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.10.2-1
284 - Upgrade to 0.10.2
285
286 * Fri Jan 06 2006 John (J5) Palmieri <johnp@redhat.com> - 0.10.1-1
287 - New upstream version
288
289 * Fri Dec 16 2005 Thomas Vander Stichele <thomas at apestaart dot org>
290 - 0.10.0-1
291 - rebuilt for Fedora Core Development
292
293 * Wed Dec 14 2005 Thomas Vander Stichele <thomas at apestaart dot org>
294 - 0.10.0-0.gst.2
295 - rebuilt against newer GLib and friends
296
297 * Mon Dec 05 2005 Thomas Vander Stichele <thomas at apestaart dot org>
298 - 0.10.0-0.gst.1
299 - new release
300
301 * Thu Dec 01 2005 Thomas Vander Stichele <thomas at apestaart dot org>
302 - 0.9.7-0.gst.1
303 - new release, with 0.10 majorminor
304 - removed compprep and complete
305 - added plugins docs
306 - renamed libgstcorelements, libgstcoreindexers
307 - added libgstnet
308
309 * Sat Nov 12 2005 Thomas Vander Stichele <thomas at apestaart dot org>
310 - 0.9.5-0.gst.1
311 - new release
312
313 * Mon Oct 24 2005 Thomas Vander Stichele <thomas at apestaart dot org>
314 - 0.9.4-0.gst.1
315 - new release
316
317 * Mon Oct 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
318 - 0.9.3-0.gst.1
319 - new release
320
321 * Thu Sep 08 2005 Thomas Vander Stichele <thomas at apestaart dot org>
322 - 0.9.2-0.gst.1
323 - added libgstcheck
324 - new release
325
326 * Thu Jun 09 2005 Thomas Vander Stichele <thomas at apestaart dot org>
327 - 0.9.1-0.gst.1
328 - first development series release
329
330 * Tue May 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
331 - 0.8.10-0.gst.1
332 - new release
333 - up glib2 to 2.4 because disting on 2.4 builds marshalling code needing 2.4
334
335 * Mon May 02 2005 Thomas Vander Stichele <thomas at apestaart dot org>
336 - 0.8.9.2-0.gst.1
337 - new prerelease
338
339 * Tue Feb 08 2005 Thomas Vander Stichele <thomas at apestaart dot org>
340 - 0.8.9-0.gst.1
341 - new release
342 - switch back to the gst tag since fedora.us is gone
343
344 * Thu Feb 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
345 - 0.8.8.2-0.fdr.1
346 - new prerelease
347
348 * Thu Dec 23 2004 Thomas Vander Stichele <thomas at apestaart dot org>
349 - 0.8.8-0.fdr.1
350 - new upstream release
351
352 * Fri Dec 17 2004 Thomas Vander Stichele <thomas at apestaart dot org>
353 - 0.8.7.2-0.fdr.1
354 - new prerelease
355 - added fair gthread scheduler
356
357 * Wed Oct 06 2004 Thomas Vander Stichele <thomas at apestaart dot org>
358 - 0.8.7-0.fdr.1
359 - update for new GStreamer release
360
361 * Tue Oct 05 2004 Thomas Vander Stichele <thomas at apestaart dot org>
362 - 0.8.6-0.fdr.1
363 - update for new GStreamer release
364
365 * Sun Sep 26 2004 Thomas Vander Stichele <thomas at apestaart dot org>
366 - 0.8.5.3-0.fdr.1
367 - update for new GStreamer prerelease
368
369 * Sun Sep 12 2004 Thomas Vander Stichele <thomas at apestaart dot org>
370 - 0.8.5.2-0.fdr.1
371 - update for new GStreamer prerelease
372
373 * Mon Aug 16 2004 Thomas Vander Stichele <thomas at apestaart dot org>
374 - 0.8.5-0.fdr.1
375 - update for new GStreamer release
376
377 * Thu Aug 12 2004 Thomas Vander Stichele <thomas at apestaart dot org>
378 - 0.8.4.2-0.fdr.1
379 - update for new GStreamer prerelease
380 - set package name and origin
381
382 * Tue Jul 20 2004 Thomas Vander Stichele <thomas at apestaart dot org>
383 - 0.8.4-0.fdr.1
384 - update for new GStreamer release
385 - unbreak the postun script by not removing the cache dir
386
387 * Tue Jul 20 2004 Thomas Vander Stichele <thomas at apestaart dot org>
388 - 0.8.3.3-0.fdr.1: update for new GStreamer prerelease
389
390 * Fri Jul 16 2004 Thomas Vander Stichele <thomas at apestaart dot org>
391 - 0.8.3.2-0.fdr.1: update for new GStreamer prerelease
392
393 * Sat Jun 05 2004 Thomas Vander Stichele <thomas at apestaart dot org>
394 - 0.8.3-0.fdr.1: update for new GStreamer release
395
396 * Fri Jun 04 2004 Thomas Vander Stichele <thomas at apestaart dot org>
397 - 0.8.2-0.fdr.1: update for new GStreamer release
398
399 * Thu Apr 15 2004 Thomas Vander Stichele <thomas at apestaart dot org>
400 - 0.8.1-0.fdr.1: update for new GStreamer release
401
402 * Thu Apr 15 2004 Thomas Vander Stichele <thomas at apestaart dot org>
403 - add entry schedulers, clean up scheduler file section
404
405 * Tue Mar 16 2004 Thomas Vander Stichele <thomas at apestaart dot org>
406 - 0.8.0-0.fdr.1: update for new GStreamer release, renamed base to gstreamer
407
408 * Tue Mar 09 2004 Thomas Vander Stichele <thomas at apestaart dot org>
409 - 0.7.6-0.fdr.1: updated for new GStreamer release, with maj/min set to 0.8
410
411 * Mon Mar 08 2004 Thomas Vander Stichele <thomas at apestaart dot org>
412 - 0.7.5-0.fdr.3: fix postun script
413
414 * Fri Mar 05 2004 Thomas Vander Stichele <thomas at apestaart dot org>
415 - 0.7.5-0.fdr.2: new release
416
417 * Wed Feb 11 2004 Thomas Vander Stichele <thomas at apestaart dot org>
418 - 0.7.4-0.fdr.1: synchronize with Matthias's package
419
420 * Sat Feb 07 2004 Thomas Vander Stichele <thomas at apestaart dot org>
421 - make the package name gstreamer07 since this is an unstable release
422
423 * Wed Feb 04 2004 Thomas Vander Stichele <thomas at apestaart dot org>
424 - put versioned tools inside base package, and put unversioned tools in tools
425
426 * Mon Dec 01 2003 Thomas Vander Stichele <thomas at apestaart dot org>
427 - changed documentation buildrequires
428
429 * Sun Nov 09 2003 Christian Schaller <Uraeus@gnome.org>
430 - Fix spec to handle new bytestream library 
431
432 * Sun Aug 17 2003 Christian Schaller <uraeus@gnome.org>
433 - Remove docs build from RPM as the build is broken
434 - Fix stuff since more files are versioned now
435 - Remove wingo schedulers
436 - Remove putbits stuff
437
438 * Sun May 18 2003 Thomas Vander Stichele <thomas at apestaart dot org>
439 - devhelp files are now generated by gtk-doc, changed accordingly
440
441 * Sun Mar 16 2003 Christian F.K. Schaller <Uraeus@gnome.org>
442 - Add gthread scheduler
443
444 * Sat Dec 07 2002 Thomas Vander Stichele <thomas at apestaart dot org>
445 - define majorminor and use it everywhere
446 - full parallel installability
447
448 * Tue Nov 05 2002 Christian Schaller <Uraeus@linuxrising.org>
449 - Add optwingo scheduler
450 * Sat Oct 12 2002 Christian Schaller <Uraeus@linuxrising.org>
451 - Updated to work better with default RH8 rpm
452 - Added missing unspeced files
453 - Removed .a and .la files from buildroot
454
455 * Sat Sep 21 2002 Thomas Vander Stichele <thomas@apestaart.org>
456 - added gst-md5sum
457
458 * Tue Sep 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
459 - adding flex to buildrequires
460
461 * Fri Sep 13 2002 Christian F.K. Schaller <Uraeus@linuxrising.org>
462 - Fixed the schedulers after the renaming
463 * Sun Sep 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
464 - added transfig to the BuildRequires:
465
466 * Sat Jun 22 2002 Thomas Vander Stichele <thomas@apestaart.org>
467 - moved header location
468
469 * Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
470 - added popt
471 - removed .la
472
473 * Fri Jun 07 2002 Thomas Vander Stichele <thomas@apestaart.org>
474 - added release of gstreamer to req of gstreamer-devel
475 - changed location of API docs to be in gtk-doc like other gtk-doc stuff
476 - reordered SPEC file
477
478 * Mon Apr 29 2002 Thomas Vander Stichele <thomas@apestaart.org>
479 - moved html docs to gtk-doc standard directory
480
481 * Tue Mar 5 2002 Thomas Vander Stichele <thomas@apestaart.org>
482 - move version defines of glib2 and libxml2 to configure.ac
483 - add BuildRequires for these two libs
484
485 * Sun Mar 3 2002 Thomas Vander Stichele <thomas@apestaart.org>
486 - put html docs in canonical place, avoiding %doc erasure
487 - added devhelp support, current install of it is hackish
488
489 * Sat Mar 2 2002 Christian Schaller <Uraeus@linuxrising.org>
490 - Added documentation to build
491
492 * Mon Feb 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
493 - added libgstbasicscheduler
494 - renamed libgst to libgstreamer
495
496 * Fri Jan 04 2002 Christian Schaller <Uraeus@linuxrising.org>
497 - Added configdir parameter as it seems the configdir gets weird otherwise
498
499 * Thu Jan 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
500 - split off gstreamer-editor from core
501 - removed gstreamer-gnome-apps
502
503 * Sat Dec 29 2001 Rodney Dawes <dobey@free.fr>
504 - Cleaned up the spec file for the gstreamer core/plug-ins split
505 - Improve spec file
506
507 * Sat Dec 15 2001 Christian Schaller <Uraeus@linuxrising.org>
508 - Split of more plugins from the core and put them into their own modules
509 - Includes colorspace, xfree and wav
510 - Improved package Require lines
511 - Added mp3encode (lame based) to the SPEC
512
513 * Wed Dec 12 2001 Christian Schaller <Uraeus@linuxrising.org>
514 - Thomas merged mpeg plugins into one
515 * Sat Dec 08 2001 Christian Schaller <Uraeus@linuxrising.org>
516 - More minor cleanups including some fixed descriptions from Andrew Mitchell
517
518 * Fri Dec 07 2001 Christian Schaller <Uraeus@linuxrising.org>
519 - Added logging to the make statement
520
521 * Wed Dec 05 2001 Christian Schaller <Uraeus@linuxrising.org>
522 - Updated in preparation for 0.3.0 release
523
524 * Fri Jun 29 2001 Christian Schaller <Uraeus@linuxrising.org>
525 - Updated for 0.2.1 release
526 - Split out the GUI packages into their own RPM
527 - added new plugins (FLAC, festival, quicktime etc.)
528
529 * Sat Jun 09 2001 Christian Schaller <Uraeus@linuxrising.org>
530 - Visualisation plugins bundled out togheter
531 - Moved files sections up close to their respective descriptions
532
533 * Sat Jun 02 2001 Christian Schaller <Uraeus@linuxrising.org>
534 - Split the package into separate RPMS, 
535   putting most plugins out by themselves.
536
537 * Fri Jun 01 2001 Christian Schaller <Uraeus@linuxrising.org>
538 - Updated with change suggestions from Dennis Bjorklund
539
540 * Tue Jan 09 2001 Erik Walthinsen <omega@cse.ogi.edu>
541 - updated to build -devel package as well
542
543 * Sun Jan 30 2000 Erik Walthinsen <omega@cse.ogi.edu>
544 - first draft of spec file
545