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