lots of fixes to the spec based on the more strict rules of RH8, actually a good...
[platform/upstream/gst-plugins-good.git] / gst-plugins.spec.in
1 Name:           gstreamer-plugins
2 Version:        @VERSION@
3 Release:        @GST_PLUGINS_RELEASE@
4 Summary:        GStreamer Streaming-media framework plug-ins.
5
6 %define         prefix  /usr
7 %define         sysconfdir /etc
8 Docdir:         %{prefix}/share/doc
9 Prefix:         %prefix
10
11 Group:          Libraries/Multimedia
12 License:        LGPL
13 URL:            http://gstreamer.net/
14 Vendor:         GStreamer Backpackers Team <package@gstreamer.net>
15 Source:         http://gstreamer.net/releases/%{version}/src/gst-plugins-%{version}.tar.gz
16 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
17
18 %define         _glib2          @GLIB2_REQ@
19
20 Requires:       glib2 >= %_glib2
21 BuildRequires:  glib2-devel >= %_glib2
22 Requires:       gstreamer = %{version}
23 BuildRequires:  nasm => 0.90
24 BuildRequires:  gstreamer-devel = %{version} 
25 Obsoletes:      gstreamer-plugin-libs
26
27 %description
28 GStreamer is a streaming-media framework, based on graphs of filters which
29 operate on media data. Applications using this library can do anything
30 from real-time sound processing to playing videos, and just about anything
31 else media-related.  Its plugin-based architecture means that new data
32 types or processing capabilities can be added simply by installing new
33 plug-ins.
34
35 %prep
36 %setup -n gst-plugins-%{version}
37 %build
38 CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
39 CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
40 FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
41 %{?__libtoolize:[ -f configure.in ] && %{__libtoolize} --copy --force} ; \
42 ./configure \
43   --prefix=%{_prefix} \
44   --exec-prefix=%{_exec_prefix} \
45   --bindir=%{_bindir} \
46   --sbindir=%{_sbindir} \
47   --sysconfdir=%{_sysconfdir} \
48   --datadir=%{_datadir} \
49   --includedir=%{_includedir} \
50   --libdir=%{_libdir} \
51   --libexecdir=%{_libexecdir} \
52   --localstatedir=%{_localstatedir} \
53   --sharedstatedir=%{_sharedstatedir} \
54   --mandir=%{_mandir} \
55   --infodir=%{_infodir} \
56   --enable-debug \
57   --enable-DEBUG 
58
59 if [ "$SMP" != "" ]; then
60   (make "MAKE=make -k -j $SMP"; exit 0)
61   make 2>&1 | tee make.log
62 else
63   make 2>&1 | tee make.log
64 fi
65
66 %install
67 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
68 export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
69 make prefix=%{?buildroot:%{buildroot}}%{_prefix} \
70      exec_prefix=%{?buildroot:%{buildroot}}%{_exec_prefix} \
71      bindir=%{?buildroot:%{buildroot}}%{_bindir} \
72      sbindir=%{?buildroot:%{buildroot}}%{_sbindir} \
73      sysconfdir=%{?buildroot:%{buildroot}}%{_sysconfdir} \
74      datadir=%{?buildroot:%{buildroot}}%{_datadir} \
75      includedir=%{?buildroot:%{buildroot}}%{_includedir} \
76      libdir=%{?buildroot:%{buildroot}}%{_libdir} \
77      libexecdir=%{?buildroot:%{buildroot}}%{_libexecdir} \
78      localstatedir=%{?buildroot:%{buildroot}}%{_localstatedir} \
79      sharedstatedir=%{?buildroot:%{buildroot}}%{_sharedstatedir} \
80      mandir=%{?buildroot:%{buildroot}}%{_mandir} \
81      infodir=%{?buildroot:%{buildroot}}%{_infodir} \
82   install
83 unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
84
85 # Clean out files that should not be part of the rpm.
86 # This is the recommended way of dealing with it for RH8
87 rm -f $RPM_BUILD_ROOT%{_libdir}/gst/*.la
88 rm -f $RPM_BUILD_ROOT%{_libdir}/gst/*.a
89 rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
90 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
91
92
93 %clean
94 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
95
96 %files
97 %defattr(-, root, root)
98 %doc AUTHORS COPYING README RELEASE
99 %{_bindir}/gst-launch-ext
100 %{_bindir}/gst-visualise
101 %{_mandir}/man1/gst-launch-ext.*
102 %{_mandir}/man1/gst-visualise.1.*
103 %{_libdir}/gst/libgstaudioscale.so
104 %{_libdir}/gst/libgstaudio.so
105 %{_libdir}/gst/libgstidct.so
106 %{_libdir}/gst/libgstresample.so
107 %{_libdir}/gst/libgstriff.so
108 %{_libdir}/gst/libgstvideo.so
109
110 %package -n gstreamer-plugins-devel
111 Summary:        GStreamer Plugin Library Headers.
112 Group:          Development/Libraries
113 Requires:       gstreamer-plugins = %{version}
114
115 %description -n gstreamer-plugins-devel
116 GStreamer support libraries header files.
117
118 %files -n gstreamer-plugins-devel
119 %defattr(-, root, root)
120 %{_includedir}/gst-plugins-%{version}/gst/audio/audio.h
121 %{_includedir}/gst-plugins-%{version}/gst/floatcast/floatcast.h
122 %{_includedir}/gst-plugins-%{version}/gst/gconf/gconf.h
123 %{_includedir}/gst-plugins-%{version}/gst/idct/idct.h
124 %{_includedir}/gst-plugins-%{version}/gst/resample/resample.h
125 %{_includedir}/gst-plugins-%{version}/gst/riff/riff.h
126 %{_includedir}/gst-plugins-%{version}/gst/video/video.h
127 %{_libdir}/pkgconfig/gstreamer-libs.pc
128
129 # Here are all the packages depending on external libs #
130
131 ### A52DEC ###
132 @USE_A52DEC_TRUE@%package -n gstreamer-a52dec
133 @USE_A52DEC_TRUE@Summary:       GStreamer VOB decoder plug-in.
134 @USE_A52DEC_TRUE@Group:         Libraries/Multimedia
135 @USE_A52DEC_TRUE@Requires:      gstreamer-plugins = %{version}
136 @USE_A52DEC_TRUE@Requires:      a52dec >= 0.7.3
137 @USE_A52DEC_TRUE@BuildRequires: a52dec-devel >= 0.7.3
138 @USE_A52DEC_TRUE@
139 @USE_A52DEC_TRUE@%description -n gstreamer-a52dec
140 @USE_A52DEC_TRUE@Plug-in for decoding of VOB files.
141 @USE_A52DEC_TRUE@
142 @USE_A52DEC_TRUE@%files -n gstreamer-a52dec
143 @USE_A52DEC_TRUE@%defattr(-, root, root)
144 @USE_A52DEC_TRUE@%{_libdir}/gst/libgsta52dec.so
145 @USE_A52DEC_TRUE@%{_libdir}/gst/libgstac3parse.so
146 @USE_A52DEC_TRUE@
147 @USE_A52DEC_TRUE@%post -n gstreamer-a52dec
148 @USE_A52DEC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
149 @USE_A52DEC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
150 @USE_A52DEC_TRUE@
151 @USE_A52DEC_TRUE@%postun -n gstreamer-a52dec
152 @USE_A52DEC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
153 @USE_A52DEC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
154
155 ### AALIB ###
156 @USE_AALIB_TRUE@%package -n gstreamer-aalib
157 @USE_AALIB_TRUE@Summary:       GStreamer plug-in for Ascii-art output.
158 @USE_AALIB_TRUE@Group:         Libraries/Multimedia
159 @USE_AALIB_TRUE@Requires:      gstreamer-plugins = %{version}
160 @USE_AALIB_TRUE@Requires:      aalib >= 1.3
161 @USE_AALIB_TRUE@BuildRequires: aalib-devel >= 1.3
162 @USE_AALIB_TRUE@
163 @USE_AALIB_TRUE@%description -n gstreamer-aalib
164 @USE_AALIB_TRUE@Plug-in for viewing video in Ascii-art using aalib library.
165 @USE_AALIB_TRUE@
166 @USE_AALIB_TRUE@%files -n gstreamer-aalib
167 @USE_AALIB_TRUE@%defattr(-, root, root)
168 @USE_AALIB_TRUE@%{_libdir}/gst/libgstaasink.so
169 @USE_AALIB_TRUE@
170 @USE_AALIB_TRUE@%post -n gstreamer-aalib
171 @USE_AALIB_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
172 @USE_AALIB_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
173 @USE_AALIB_TRUE@
174 @USE_AALIB_TRUE@%postun -n gstreamer-aalib
175 @USE_AALIB_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
176 @USE_AALIB_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
177
178 ### ALSA ###
179 @USE_ALSA_TRUE@%package -n gstreamer-alsa
180 @USE_ALSA_TRUE@Summary:  GStreamer plug-ins for the ALSA sound system.
181 @USE_ALSA_TRUE@Group:    Libraries/Multimedia
182 @USE_ALSA_TRUE@Requires: gstreamer-plugins = %{version}
183 @USE_ALSA_TRUE@
184 @USE_ALSA_TRUE@%description -n gstreamer-alsa
185 @USE_ALSA_TRUE@Input and output plug-in for the ALSA soundcard driver system. 
186 @USE_ALSA_TRUE@This plug-in depends on Alsa 0.9.x or higher.
187 @USE_ALSA_TRUE@
188 @USE_ALSA_TRUE@%files -n gstreamer-alsa
189 @USE_ALSA_TRUE@%defattr(-, root, root)
190 @USE_ALSA_TRUE@%{_libdir}/gst/libgstalsa.so
191 @USE_ALSA_TRUE@%{_mandir}/man1/gstalsa*
192 @USE_ALSA_TRUE@
193 @USE_ALSA_TRUE@%post -n gstreamer-alsa
194 @USE_ALSA_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
195 @USE_ALSA_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
196 @USE_ALSA_TRUE@
197 @USE_ALSA_TRUE@%postun -n gstreamer-alsa
198 @USE_ALSA_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
199 @USE_ALSA_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
200
201 ### ARTS WRAPPER ###
202 @USE_ARTS_TRUE@%package -n gstreamer-arts
203 @USE_ARTS_TRUE@Summary:       GStreamer arts wrapper plug-in.
204 @USE_ARTS_TRUE@Group:         Libraries/Multimedia
205 @USE_ARTS_TRUE@Requires:      gstreamer-plugins = %{version}
206 @USE_ARTS_TRUE@Requires:      kdelibs-sound >= 2
207 @USE_ARTS_TRUE@BuildRequires: kdelibs-sound-devel >= 2
208 @USE_ARTS_TRUE@BuildRequires: gcc-c++
209 @USE_ARTS_TRUE@
210 @USE_ARTS_TRUE@%description -n gstreamer-arts
211 @USE_ARTS_TRUE@This plug-in wraps arts plug-ins.
212 @USE_ARTS_TRUE@
213 @USE_ARTS_TRUE@%files -n gstreamer-arts
214 @USE_ARTS_TRUE@%defattr(-, root, root)
215 @USE_ARTS_TRUE@%{_libdir}/gst/libgstarts.so
216 @USE_ARTS_TRUE@
217 @USE_ARTS_TRUE@%post -n gstreamer-arts
218 @USE_ARTS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
219 @USE_ARTS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
220 @USE_ARTS_TRUE@
221 @USE_ARTS_TRUE@%postun -n gstreamer-arts
222 @USE_ARTS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
223 @USE_ARTS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
224
225 ### ARTSD SOUND SERVER ###
226 @USE_ARTSC_TRUE@%package -n gstreamer-artsd
227 @USE_ARTSC_TRUE@Summary:  GStreamer artsd output plug-in.
228 @USE_ARTSC_TRUE@Group:    Libraries/Multimedia
229 @USE_ARTSC_TRUE@Requires: gstreamer-plugins = %{version}
230 @USE_ARTSC_TRUE@
231 @USE_ARTSC_TRUE@%description -n gstreamer-artsd
232 @USE_ARTSC_TRUE@Plug-in for outputting to artsd sound server.
233 @USE_ARTSC_TRUE@
234 @USE_ARTSC_TRUE@%files -n gstreamer-artsd
235 @USE_ARTSC_TRUE@%defattr(-, root, root)
236 @USE_ARTSC_TRUE@%{_libdir}/gst/libgstartsdsink.so
237 @USE_ARTSC_TRUE@
238 @USE_ARTSC_TRUE@%post -n gstreamer-artsd
239 @USE_ARTSC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
240 @USE_ARTSC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
241 @USE_ARTSC_TRUE@
242 @USE_ARTSC_TRUE@%postun -n gstreamer-artsd
243 @USE_ARTSC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
244 @USE_ARTSC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
245
246 ### AUDIOFILE ###
247 @USE_AUDIOFILE_TRUE@%package -n gstreamer-audiofile
248 @USE_AUDIOFILE_TRUE@Summary:       GStreamer plug-in for audiofile support.
249 @USE_AUDIOFILE_TRUE@Group:         Libraries/Multimedia
250 @USE_AUDIOFILE_TRUE@Requires:      gstreamer-plugins = %{version}
251 @USE_AUDIOFILE_TRUE@Requires:      audiofile >= 0.2.1
252 @USE_AUDIOFILE_TRUE@BuildRequires: audiofile-devel >= 0.2.1
253 @USE_AUDIOFILE_TRUE@
254 @USE_AUDIOFILE_TRUE@%description -n gstreamer-audiofile
255 @USE_AUDIOFILE_TRUE@Plug-in for supporting reading and writing of all files supported by audiofile.
256 @USE_AUDIOFILE_TRUE@
257 @USE_AUDIOFILE_TRUE@%files -n gstreamer-audiofile
258 @USE_AUDIOFILE_TRUE@%defattr(-, root, root)
259 @USE_AUDIOFILE_TRUE@%{_libdir}/gst/libgstaudiofile.so
260 @USE_AUDIOFILE_TRUE@
261 @USE_AUDIOFILE_TRUE@%post -n  gstreamer-audiofile
262 @USE_AUDIOFILE_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
263 @USE_AUDIOFILE_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
264 @USE_AUDIOFILE_TRUE@
265 @USE_AUDIOFILE_TRUE@%postun -n  gstreamer-audiofile
266 @USE_AUDIOFILE_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
267 @USE_AUDIOFILE_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
268
269 ### AVI ###
270 %package -n gstreamer-avi
271 Summary:       GStreamer plug-in for AVI movie playback.
272 Group:         Libraries/Multimedia
273 Requires:      gstreamer-plugins = %{version}
274 Requires:      gstreamer-colorspace = %{version}
275
276 %description -n gstreamer-avi
277 Plug-ins for playback of AVI format media files.
278
279 %files -n gstreamer-avi
280 %defattr(-, root, root)
281 %{_libdir}/gst/libgstavidemux.so
282 %{_libdir}/gst/libgstavimux.so
283
284 %post -n gstreamer-avi
285 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
286 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
287
288 %postun -n gstreamer-avi
289 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
290 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
291
292 ### Windec ###
293 @USE_AVIFILE_TRUE@%package -n gstreamer-windec
294 @USE_AVIFILE_TRUE@Summary:       GStreamer plug-in for Windows DLL loading
295 @USE_AVIFILE_TRUE@Group:         Libraries/Multimedia
296 @USE_AVIFILE_TRUE@Requires:      gstreamer-plugins = %{version}
297 @USE_AVIFILE_TRUE@Requires:      avifile
298 @USE_AVIFILE_TRUE@BuildRequires: avifile-devel
299 @USE_AVIFILE_TRUE@
300 @USE_AVIFILE_TRUE@%description -n gstreamer-windec
301 @USE_AVIFILE_TRUE@Plug-ins for playback for loading window DLL files. 
302 @USE_AVIFILE_TRUE@Needed for playback of some  AVI format media files.
303 @USE_AVIFILE_TRUE@
304 @USE_AVIFILE_TRUE@%files -n gstreamer-windec
305 @USE_AVIFILE_TRUE@%defattr(-, root, root)
306 @USE_AVIFILE_TRUE@%{_libdir}/gst/libgstwincodec.so
307 @USE_AVIFILE_TRUE@
308 @USE_AVIFILE_TRUE@%post -n gstreamer-windec
309 @USE_AVIFILE_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
310 @USE_AVIFILE_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
311 @USE_AVIFILE_TRUE@
312 @USE_AVIFILE_TRUE@%postun -n gstreamer-windec
313 @USE_AVIFILE_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
314 @USE_AVIFILE_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
315
316 ### CDPARANOIA ###
317 @USE_CDPARANOIA_TRUE@%package -n gstreamer-cdparanoia
318 @USE_CDPARANOIA_TRUE@Summary:       GStreamer plug-in for CD audio input using CDParanoia IV.
319 @USE_CDPARANOIA_TRUE@Group:         Libraries/Multimedia
320 @USE_CDPARANOIA_TRUE@Requires:      gstreamer-plugins = %{version}
321 @USE_CDPARANOIA_TRUE@Requires:      cdparanoia-libs >= alpha9.7
322 @USE_CDPARANOIA_TRUE@BuildRequires: cdparanoia-devel >= alpha9.7
323 @USE_CDPARANOIA_TRUE@
324 @USE_CDPARANOIA_TRUE@%description -n gstreamer-cdparanoia
325 @USE_CDPARANOIA_TRUE@Plug-in for ripping audio tracks using cdparanoia under GStreamer.
326 @USE_CDPARANOIA_TRUE@
327 @USE_CDPARANOIA_TRUE@%files -n gstreamer-cdparanoia
328 @USE_CDPARANOIA_TRUE@%defattr(-, root, root)
329 @USE_CDPARANOIA_TRUE@%{_libdir}/gst/libgstcdparanoia.so
330 @USE_CDPARANOIA_TRUE@
331 @USE_CDPARANOIA_TRUE@%post -n gstreamer-cdparanoia
332 @USE_CDPARANOIA_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
333 @USE_CDPARANOIA_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
334 @USE_CDPARANOIA_TRUE@
335 @USE_CDPARANOIA_TRUE@%postun -n gstreamer-cdparanoia
336 @USE_CDPARANOIA_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
337 @USE_CDPARANOIA_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
338
339 ### DVDREAD ###
340 @USE_DVDREAD_TRUE@%package -n gstreamer-libdvdread
341 @USE_DVDREAD_TRUE@Summary:       GStreamer plug-in for DVD playback.
342 @USE_DVDREAD_TRUE@Group:         Libraries/Multimedia
343 @USE_DVDREAD_TRUE@Requires:      gstreamer-plugins = %{version}
344 @USE_DVDREAD_TRUE@Requires:      libdvdread >= 0.9.0
345 @USE_DVDREAD_TRUE@BuildRequires: libdvdread-devel >= 0.9.0
346 @USE_DVDREAD_TRUE@Obsoletes:     gstreamer-libdvd
347 @USE_DVDREAD_TRUE@
348 @USE_DVDREAD_TRUE@%description -n gstreamer-libdvdread
349 @USE_DVDREAD_TRUE@Plug-in for reading DVDs using libdvdread and libdvdnav 
350 @USE_DVDREAD_TRUE@under GStreamer.
351 @USE_DVDREAD_TRUE@
352 @USE_DVDREAD_TRUE@%files -n gstreamer-libdvdread
353 @USE_DVDREAD_TRUE@%defattr(-, root, root)
354 @USE_DVDREAD_TRUE@%{_libdir}/gst/libgstdvdreadsrc.so
355 @USE_DVDREAD_TRUE@%{_libdir}/gst/libgstdvdnavsrc.so
356 @USE_DVDREAD_TRUE@
357 @USE_DVDREAD_TRUE@%post -n gstreamer-libdvdread
358 @USE_DVDREAD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
359 @USE_DVDREAD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
360 @USE_DVDREAD_TRUE@
361 @USE_DVDREAD_TRUE@%postun -n gstreamer-libdvdread
362 @USE_DVDREAD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
363 @USE_DVDREAD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
364
365 ## DXR3 ###
366 @USE_DXR3_TRUE@%package -n gstreamer-dxr3
367 @USE_DXR3_TRUE@Summary:       GStreamer plug-in for playback using dxr3 card.
368 @USE_DXR3_TRUE@Group:         Libraries/Multimedia
369 @USE_DXR3_TRUE@Requires:      gstreamer-plugins = %{version}
370 @USE_DXR3_TRUE@Requires:      em8300 => 0.12.0
371 @USE_DXR3_TRUE@BuildRequires: em8300-devel => 0.12.0
372 @USE_DXR3_TRUE@
373 @USE_DXR3_TRUE@%description -n gstreamer-dxr3
374 @USE_DXR3_TRUE@Plug-in supporting DVD playback using cards
375 @USE_DXR3_TRUE@with the dxr3 chipset like Hollywood Plus
376 @USE_DXR3_TRUE@and Creative Labs DVD cards.
377 @USE_DXR3_TRUE@
378 @USE_DXR3_TRUE@%files -n gstreamer-dxr3
379 @USE_DXR3_TRUE@%defattr(-, root, root)
380 @USE_DXR3_TRUE@%{_libdir}/gst/libgstdxr3.so
381 @USE_DXR3_TRUE@
382 @USE_DXR3_TRUE@%post -n gstreamer-dxr3
383 @USE_DXR3_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
384 @USE_DXR3_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
385 @USE_DXR3_TRUE@
386 @USE_DXR3_TRUE@%postun -n gstreamer-dxr3
387 @USE_DXR3_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
388 @USE_DXR3_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
389
390 ### ESD ###
391 @USE_ESD_TRUE@%package -n gstreamer-esound
392 @USE_ESD_TRUE@Summary:       GStreamer plug-in for ESD sound output.
393 @USE_ESD_TRUE@Group:         Libraries/Multimedia
394 @USE_ESD_TRUE@Requires:      gstreamer-plugins = %{version}
395 @USE_ESD_TRUE@Requires:      esound >= 0.2.8
396 @USE_ESD_TRUE@BuildRequires: esound-devel >= 0.2.8
397 @USE_ESD_TRUE@Obsoletes:     gstreamer-esd
398 @USE_ESD_TRUE@
399 @USE_ESD_TRUE@%description -n gstreamer-esound
400 @USE_ESD_TRUE@Output and monitoring plug-ins for GStreamer using ESound.
401 @USE_ESD_TRUE@
402 @USE_ESD_TRUE@%files -n gstreamer-esound
403 @USE_ESD_TRUE@%defattr(-, root, root)
404 @USE_ESD_TRUE@%{_libdir}/gst/libgstesdmon.so
405 @USE_ESD_TRUE@%{_libdir}/gst/libgstesdsink.so
406 @USE_ESD_TRUE@
407 @USE_ESD_TRUE@%post -n gstreamer-esound
408 @USE_ESD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
409 @USE_ESD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
410 @USE_ESD_TRUE@
411 @USE_ESD_TRUE@%postun -n gstreamer-esound
412 @USE_ESD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
413 @USE_ESD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
414
415 ### FLAC ###
416 @USE_FLAC_TRUE@%package -n gstreamer-flac
417 @USE_FLAC_TRUE@Summary:       GStreamer plug-in for FLAC lossless audio.
418 @USE_FLAC_TRUE@Group:         Libraries/Multimedia
419 @USE_FLAC_TRUE@Requires:      gstreamer-plugins = %{version}
420 @USE_FLAC_TRUE@Requires:      flac >= 1.0.3
421 @USE_FLAC_TRUE@BuildRequires: flac-devel >= 1.0.3
422 @USE_FLAC_TRUE@
423 @USE_FLAC_TRUE@%description -n gstreamer-flac
424 @USE_FLAC_TRUE@Plug-in for the free FLAC lossless audio format.
425 @USE_FLAC_TRUE@
426 @USE_FLAC_TRUE@%files -n gstreamer-flac
427 @USE_FLAC_TRUE@%defattr(-, root, root)
428 @USE_FLAC_TRUE@%{_libdir}/gst/libgstflac.so
429 @USE_FLAC_TRUE@
430 @USE_FLAC_TRUE@%post -n gstreamer-flac
431 @USE_FLAC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
432 @USE_FLAC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
433 @USE_FLAC_TRUE@
434 @USE_FLAC_TRUE@%postun -n gstreamer-flac
435 @USE_FLAC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
436 @USE_FLAC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
437
438 ### GNOME VFS 2 ###
439 @USE_GNOME_VFS_TRUE@%package -n gstreamer-gnomevfs
440 @USE_GNOME_VFS_TRUE@Summary:       GStreamer plug-ins for Gnome-VFS input and output.
441 @USE_GNOME_VFS_TRUE@Group:         Libraries/Multimedia
442 @USE_GNOME_VFS_TRUE@Requires:      gstreamer-plugins = %{version}
443 @USE_GNOME_VFS_TRUE@Requires:      gnome-vfs2 > 1.9.4.00
444 @USE_GNOME_VFS_TRUE@BuildRequires: gnome-vfs2-devel > 1.9.4.00
445 @USE_GNOME_VFS_TRUE@
446 @USE_GNOME_VFS_TRUE@%description -n gstreamer-gnomevfs
447 @USE_GNOME_VFS_TRUE@Plug-ins for reading and writing through GNOME VFS.
448 @USE_GNOME_VFS_TRUE@
449 @USE_GNOME_VFS_TRUE@%files -n gstreamer-gnomevfs
450 @USE_GNOME_VFS_TRUE@%defattr(-, root, root)
451 @USE_GNOME_VFS_TRUE@%{_libdir}/gst/libgstgnomevfssrc.so
452 @USE_GNOME_VFS_TRUE@%{_libdir}/gst/libgstgnomevfssink.so
453 @USE_GNOME_VFS_TRUE@
454 @USE_GNOME_VFS_TRUE@%post -n gstreamer-gnomevfs
455 @USE_GNOME_VFS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
456 @USE_GNOME_VFS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
457 @USE_GNOME_VFS_TRUE@
458 @USE_GNOME_VFS_TRUE@%postun -n gstreamer-gnomevfs
459 @USE_GNOME_VFS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
460 @USE_GNOME_VFS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
461
462 ### GSM ###
463 @USE_GSM_TRUE@%package -n gstreamer-gsm
464 @USE_GSM_TRUE@Summary:       GStreamer plug-in for GSM lossy audio format.
465 @USE_GSM_TRUE@Group:         Libraries/Multimedia
466 @USE_GSM_TRUE@Requires:      gstreamer-plugins = %{version}
467 @USE_GSM_TRUE@Requires:      gsm >= 1.0.10
468 @USE_GSM_TRUE@BuildRequires: gsm-devel >= 1.0.10
469 @USE_GSM_TRUE@
470 @USE_GSM_TRUE@%description -n gstreamer-gsm
471 @USE_GSM_TRUE@Output plug-in for GStreamer to convert to GSM lossy audio format.
472 @USE_GSM_TRUE@
473 @USE_GSM_TRUE@%files -n gstreamer-gsm
474 @USE_GSM_TRUE@%defattr(-, root, root)
475 @USE_GSM_TRUE@%{_libdir}/gst/libgstgsm.so
476 @USE_GSM_TRUE@
477 @USE_GSM_TRUE@%post -n gstreamer-gsm
478 @USE_GSM_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
479 @USE_GSM_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
480 @USE_GSM_TRUE@
481 @USE_GSM_TRUE@%postun -n gstreamer-gsm
482 @USE_GSM_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
483 @USE_GSM_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
484
485 ### HERMES ###
486 @USE_HERMES_TRUE@%package -n gstreamer-colorspace
487 @USE_HERMES_TRUE@Summary:       GStreamer colorspace conversion plug-in.
488 @USE_HERMES_TRUE@Group:         Libraries/Multimedia
489 @USE_HERMES_TRUE@Requires:      gstreamer-plugins = %{version}
490 @USE_HERMES_TRUE@Requires:      Hermes => 1.3.0
491 @USE_HERMES_TRUE@BuildRequires: Hermes-devel => 1.3.0
492 @USE_HERMES_TRUE@%description -n gstreamer-colorspace
493 @USE_HERMES_TRUE@Colorspace plug-in based on Hermes library.
494 @USE_HERMES_TRUE@
495 @USE_HERMES_TRUE@%files -n gstreamer-colorspace
496 @USE_HERMES_TRUE@%defattr(-, root, root)
497 @USE_HERMES_TRUE@%{_libdir}/gst/libgstcolorspace.so
498 @USE_HERMES_TRUE@
499 @USE_HERMES_TRUE@%post -n gstreamer-colorspace
500 @USE_HERMES_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
501 @USE_HERMES_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
502 @USE_HERMES_TRUE@
503 @USE_HERMES_TRUE@%postun -n gstreamer-colorspace
504 @USE_HERMES_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
505 @USE_HERMES_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
506
507 ### HTTP ###
508 @USE_HTTP_TRUE@%package -n gstreamer-httpsrc
509 @USE_HTTP_TRUE@Summary:       GStreamer plug-in for http using libghttp.
510 @USE_HTTP_TRUE@Group:         Libraries/Multimedia
511 @USE_HTTP_TRUE@Requires:      gstreamer-plugins = %{version}
512 @USE_HTTP_TRUE@Requires:      libghttp => 1.0.9
513 @USE_HTTP_TRUE@BuildRequires: libghttp-devel => 1.0.9
514 @USE_HTTP_TRUE@
515 @USE_HTTP_TRUE@%description -n gstreamer-httpsrc
516 @USE_HTTP_TRUE@Plug-in supporting the http protocol based 
517 @USE_HTTP_TRUE@on the libghttp library.
518 @USE_HTTP_TRUE@
519 @USE_HTTP_TRUE@%files -n gstreamer-httpsrc
520 @USE_HTTP_TRUE@%defattr(-, root, root)
521 @USE_HTTP_TRUE@%{_libdir}/gst/libgsthttpsrc.so
522 @USE_HTTP_TRUE@
523 @USE_HTTP_TRUE@%post -n gstreamer-httpsrc
524 @USE_HTTP_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
525 @USE_HTTP_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
526 @USE_HTTP_TRUE@
527 @USE_HTTP_TRUE@%postun -n gstreamer-httpsrc
528 @USE_HTTP_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
529 @USE_HTTP_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
530
531 #### JACK AUDIO CONNECTION KIT ###
532 @USE_JACK_TRUE@%package -n gstreamer-jack
533 @USE_JACK_TRUE@Summary:  GStreamer plug-in for the Jack Sound Server.
534 @USE_JACK_TRUE@Group:    Libraries/Multimedia
535 @USE_JACK_TRUE@Requires: gstreamer-plugins = %{version}
536 @USE_JACK_TRUE@Requires: jack-audio-connection-kit => 0.28.0
537 @USE_JACK_TRUE@
538 @USE_JACK_TRUE@%description -n gstreamer-jack
539 @USE_JACK_TRUE@Plug-in for the JACK professional sound server.
540 @USE_JACK_TRUE@
541 @USE_JACK_TRUE@%files -n gstreamer-jack
542 @USE_JACK_TRUE@%defattr(-, root, root)
543 @USE_JACK_TRUE@%{_libdir}/gst/libgstjack.so
544 @USE_JACK_TRUE@
545 @USE_JACK_TRUE@%post -n gstreamer-jack
546 @USE_JACK_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
547 @USE_JACK_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
548 @USE_JACK_TRUE@
549 @USE_JACK_TRUE@%postun -n gstreamer-jack
550 @USE_JACK_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
551 @USE_JACK_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
552
553 ### JPEG ###
554 @USE_JPEG_TRUE@%package -n gstreamer-jpeg
555 @USE_JPEG_TRUE@Summary:       GStreamer plug-in for JPEG images.
556 @USE_JPEG_TRUE@Group:         Libraries/Multimedia
557 @USE_JPEG_TRUE@Requires:      gstreamer-plugins = %{version}
558 @USE_JPEG_TRUE@Requires:      libjpeg
559 @USE_JPEG_TRUE@BuildRequires: libjpeg-devel
560 @USE_JPEG_TRUE@
561 @USE_JPEG_TRUE@%description -n gstreamer-jpeg
562 @USE_JPEG_TRUE@Output plug-in for GStreamer using libjpeg.
563 @USE_JPEG_TRUE@
564 @USE_JPEG_TRUE@%files -n gstreamer-jpeg
565 @USE_JPEG_TRUE@%defattr(-, root, root)
566 @USE_JPEG_TRUE@%{_libdir}/gst/libgstjpeg.so
567 @USE_JPEG_TRUE@
568 @USE_JPEG_TRUE@%post -n gstreamer-jpeg
569 @USE_JPEG_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
570 @USE_JPEG_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
571 @USE_JPEG_TRUE@
572 @USE_JPEG_TRUE@%postun -n gstreamer-jpeg
573 @USE_JPEG_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
574 @USE_JPEG_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
575
576 ### LADSPA ###
577 @USE_LADSPA_TRUE@%package -n gstreamer-ladspa
578 @USE_LADSPA_TRUE@Summary:       GStreamer wrapper for LADSPA plug-ins.
579 @USE_LADSPA_TRUE@Group:         Libraries/Multimedia
580 @USE_LADSPA_TRUE@Requires:      gstreamer-plugins = %{version}
581 @USE_LADSPA_TRUE@Requires:      ladspa
582 @USE_LADSPA_TRUE@BuildRequires: ladspa-devel
583 @USE_LADSPA_TRUE@
584 @USE_LADSPA_TRUE@%description -n gstreamer-ladspa
585 @USE_LADSPA_TRUE@Plug-in which wraps LADSPA plug-ins for use by GStreamer applications.
586 @USE_LADSPA_TRUE@We suggest you also get the cmt package of ladspa plug-ins
587 @USE_LADSPA_TRUE@and steve harris's swh-plugins package.
588 @USE_LADSPA_TRUE@
589 @USE_LADSPA_TRUE@%files -n gstreamer-ladspa
590 @USE_LADSPA_TRUE@%defattr(-, root, root)
591 @USE_LADSPA_TRUE@%{_libdir}/gst/libgstladspa.so
592 @USE_LADSPA_TRUE@
593 @USE_LADSPA_TRUE@%post -n gstreamer-ladspa
594 @USE_LADSPA_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
595 @USE_LADSPA_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
596 @USE_LADSPA_TRUE@
597 @USE_LADSPA_TRUE@%postun -n gstreamer-ladspa
598 @USE_LADSPA_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
599 @USE_LADSPA_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
600
601 ### LAME ###
602 @USE_LAME_TRUE@%package -n gstreamer-lame
603 @USE_LAME_TRUE@Summary:       GStreamer plug-in encoding mp3 songs using lame.
604 @USE_LAME_TRUE@Group:         Libraries/Multimedia
605 @USE_LAME_TRUE@Requires:      gstreamer-plugins = %{version}
606 @USE_LAME_TRUE@Requires:      lame >= 3.89
607 @USE_LAME_TRUE@BuildRequires: lame-devel >= 3.89
608 @USE_LAME_TRUE@
609 @USE_LAME_TRUE@%description -n gstreamer-lame
610 @USE_LAME_TRUE@Plug-in for encoding mp3 with lame under GStreamer.
611 @USE_LAME_TRUE@
612 @USE_LAME_TRUE@%files -n gstreamer-lame
613 @USE_LAME_TRUE@%defattr(-, root, root)
614 @USE_LAME_TRUE@%{_libdir}/gst/libgstlame.so
615 @USE_LAME_TRUE@
616 @USE_LAME_TRUE@%post -n gstreamer-lame
617 @USE_LAME_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
618 @USE_LAME_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
619 @USE_LAME_TRUE@
620 @USE_LAME_TRUE@%postun -n gstreamer-lame
621 @USE_LAME_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
622 @USE_LAME_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
623
624 ### LIBDV ###
625 @USE_LIBDV_TRUE@%package -n gstreamer-dv
626 @USE_LIBDV_TRUE@Summary:       GStreamer DV plug-in.
627 @USE_LIBDV_TRUE@Group:         Libraries/Multimedia
628 @USE_LIBDV_TRUE@Requires:      gstreamer-plugins = %{version}
629 @USE_LIBDV_TRUE@Requires:      libdv >= 0.9.5
630 @USE_LIBDV_TRUE@BuildRequires: libdv-devel >= 0.9.5
631 @USE_LIBDV_TRUE@
632 @USE_LIBDV_TRUE@%description -n gstreamer-dv
633 @USE_LIBDV_TRUE@Plug-in for digital video support using libdv.
634 @USE_LIBDV_TRUE@
635 @USE_LIBDV_TRUE@%files -n gstreamer-dv
636 @USE_LIBDV_TRUE@%defattr(-, root, root)
637 @USE_LIBDV_TRUE@%{_libdir}/gst/libgstdvdec.so
638 @USE_LIBDV_TRUE@
639 @USE_LIBDV_TRUE@%post -n gstreamer-dv
640 @USE_LIBDV_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
641 @USE_LIBDV_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
642 @USE_LIBDV_TRUE@
643 @USE_LIBDV_TRUE@%postun -n gstreamer-dv
644 @USE_LIBDV_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
645 @USE_LIBDV_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
646
647
648 ### LIBFAME ###
649 @USE_LIBFAME_TRUE@%package -n gstreamer-libfame
650 @USE_LIBFAME_TRUE@Summary:       GStreamer plug-in to encode MPEG1/MPEG4 video.
651 @USE_LIBFAME_TRUE@Group:         Libraries/Multimedia
652 @USE_LIBFAME_TRUE@Requires:      gstreamer-plugins = %{version}
653 @USE_LIBFAME_TRUE@Requires:      libfame >= 0.9.0 
654 @USE_LIBFAME_TRUE@BuildRequires: libfame-devel >= 0.9.0 
655 @USE_LIBFAME_TRUE@
656 @USE_LIBFAME_TRUE@%description -n gstreamer-libfame
657 @USE_LIBFAME_TRUE@Plug-in for encoding MPEG1/MPEG4 video using libfame.
658 @USE_LIBFAME_TRUE@
659 @USE_LIBFAME_TRUE@%files -n gstreamer-libfame
660 @USE_LIBFAME_TRUE@%defattr(-, root, root)
661 @USE_LIBFAME_TRUE@%{_libdir}/gst/libgstlibfame.so
662 @USE_LIBFAME_TRUE@
663 @USE_LIBFAME_TRUE@%post -n gstreamer-libfame
664 @USE_LIBFAME_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
665 @USE_LIBFAME_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
666 @USE_LIBFAME_TRUE@
667 @USE_LIBFAME_TRUE@%postun -n gstreamer-libfame
668 @USE_LIBFAME_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
669 @USE_LIBFAME_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
670
671 ### MAD ###
672 @USE_MAD_TRUE@%package -n gstreamer-mad  
673 @USE_MAD_TRUE@Summary:       GStreamer plug-in using MAD for mp3 decoding.
674 @USE_MAD_TRUE@Group:         Libraries/Multimedia
675 @USE_MAD_TRUE@Requires:      gstreamer-plugins = %{version}
676 @USE_MAD_TRUE@Requires:      gstreamer-audio-formats
677 @USE_MAD_TRUE@Requires:      mad >= 0.13.0
678 @USE_MAD_TRUE@BuildRequires: mad-devel >= 0.13.0
679 @USE_MAD_TRUE@
680 @USE_MAD_TRUE@%description -n gstreamer-mad
681 @USE_MAD_TRUE@Plug-in for playback of mp3 songs using the very good MAD library.
682 @USE_MAD_TRUE@
683 @USE_MAD_TRUE@%files -n gstreamer-mad
684 @USE_MAD_TRUE@%defattr(-, root, root)  
685 @USE_MAD_TRUE@%{_libdir}/gst/libgstmad.so
686 @USE_MAD_TRUE@
687 @USE_MAD_TRUE@%post -n gstreamer-mad
688 @USE_MAD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
689 @USE_MAD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
690 @USE_MAD_TRUE@
691 @USE_MAD_TRUE@%postun -n gstreamer-mad
692 @USE_MAD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
693 @USE_MAD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
694
695 ### MIKMOD ###
696 @USE_MIKMOD_TRUE@%package -n gstreamer-mikmod
697 @USE_MIKMOD_TRUE@Summary:       GStreamer Mikmod plug-in.
698 @USE_MIKMOD_TRUE@Group:         Libraries/Multimedia
699 @USE_MIKMOD_TRUE@Requires:      gstreamer-plugins = %{version}
700 @USE_MIKMOD_TRUE@Requires:      mikmod
701 @USE_MIKMOD_TRUE@BuildRequires: mikmod
702 @USE_MIKMOD_TRUE@
703 @USE_MIKMOD_TRUE@%description -n gstreamer-mikmod
704 @USE_MIKMOD_TRUE@Plug-in for playback of module files supported by mikmod under GStreamer.
705 @USE_MIKMOD_TRUE@
706 @USE_MIKMOD_TRUE@%files -n gstreamer-mikmod
707 @USE_MIKMOD_TRUE@%defattr(-, root, root)
708 @USE_MIKMOD_TRUE@%{_libdir}/gst/libgstmikmod.so
709 @USE_MIKMOD_TRUE@
710 @USE_MIKMOD_TRUE@%post -n gstreamer-mikmod
711 @USE_MIKMOD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
712 @USE_MIKMOD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
713 @USE_MIKMOD_TRUE@
714 @USE_MIKMOD_TRUE@%postun -n gstreamer-mikmod
715 @USE_MIKMOD_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
716 @USE_MIKMOD_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
717
718 ### MJPEGTOOLS ###
719 @USE_MJPEGTOOLS_TRUE@%package -n gstreamer-jpegmmx
720 @USE_MJPEGTOOLS_TRUE@Summary:       GStreamer mjpegtools plug-in for mmx jpeg.
721 @USE_MJPEGTOOLS_TRUE@Group:         Libraries/Multimedia
722 @USE_MJPEGTOOLS_TRUE@Requires:      gstreamer-plugins = %{version}
723 @USE_MJPEGTOOLS_TRUE@Requires:      mjpegtools
724 @USE_MJPEGTOOLS_TRUE@BuildRequires: mjpegtools-devel
725 @USE_MJPEGTOOLS_TRUE@
726 @USE_MJPEGTOOLS_TRUE@%description -n gstreamer-jpegmmx
727 @USE_MJPEGTOOLS_TRUE@mjpegtools-based encoding and decoding plug-in.
728 @USE_MJPEGTOOLS_TRUE@
729 @USE_MJPEGTOOLS_TRUE@%files -n gstreamer-jpegmmx
730 @USE_MJPEGTOOLS_TRUE@%defattr(-, root, root)
731 @USE_MJPEGTOOLS_TRUE@%{_libdir}/gst/libgstjpegmmxenc.so
732 @USE_MJPEGTOOLS_TRUE@%{_libdir}/gst/libgstjpegmmxdec.so
733 @USE_MJPEGTOOLS_TRUE@
734 @USE_MJPEGTOOLS_TRUE@%post -n gstreamer-jpegmmx
735 @USE_MJPEGTOOLS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
736 @USE_MJPEGTOOLS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
737 @USE_MJPEGTOOLS_TRUE@
738 @USE_MJPEGTOOLS_TRUE@%postun -n gstreamer-jpegmmx
739 @USE_MJPEGTOOLS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
740 @USE_MJPEGTOOLS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
741
742 ### MPEG2DEC ###
743 @USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg
744 @USE_MPEG2DEC_TRUE@Summary:GStreamer plug-ins for MPEG video playback and encoding.
745 @USE_MPEG2DEC_TRUE@Group:         Libraries/Multimedia
746 @USE_MPEG2DEC_TRUE@Requires:      gstreamer-plugins = %{version}
747 @USE_MPEG2DEC_TRUE@Requires:      mpeg2dec => 0.2.1
748 @USE_MPEG2DEC_TRUE@BuildRequires: mpeg2dec-devel => 0.2.1
749 @USE_MPEG2DEC_TRUE@Obsoletes:     gstreamer-mpeg1
750 @USE_MPEG2DEC_TRUE@Obsoletes:     gstreamer-mpeg2
751 @USE_MPEG2DEC_TRUE@Obsoletes:     gstreamer-mpeg2dec
752 @USE_MPEG2DEC_TRUE@
753 @USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg
754 @USE_MPEG2DEC_TRUE@Plug-ins for playing and encoding MPEG video.
755 @USE_MPEG2DEC_TRUE@
756 @USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg
757 @USE_MPEG2DEC_TRUE@%defattr(-, root, root)
758 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg1types.so
759 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg1encoder.so
760 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg1systemencode.so
761 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpegaudio.so
762 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpegaudioparse.so
763 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmp1videoparse.so
764 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpegstream.so
765 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2enc.so
766 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2dec.so
767 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2subt.so
768 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2types.so
769 @USE_MPEG2DEC_TRUE@
770 @USE_MPEG2DEC_TRUE@%post -n  gstreamer-mpeg
771 @USE_MPEG2DEC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
772 @USE_MPEG2DEC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
773 @USE_MPEG2DEC_TRUE@
774 @USE_MPEG2DEC_TRUE@%postun -n  gstreamer-mpeg
775 @USE_MPEG2DEC_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
776 @USE_MPEG2DEC_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
777
778 ### OPENQUICKTIME ###
779 @USE_OPENQUICKTIME_TRUE@%package -n gstreamer-openquicktime
780 @USE_OPENQUICKTIME_TRUE@Summary:       GStreamer OpenQuicktime video Plug-in.
781 @USE_OPENQUICKTIME_TRUE@Group:         Libraries/Multimedia
782 @USE_OPENQUICKTIME_TRUE@Requires:      gstreamer-plugins = %{version}
783 @USE_OPENQUICKTIME_TRUE@Requires:      openquicktime => 1.0
784 @USE_OPENQUICKTIME_TRUE@BuildRequires: openquicktime-devel => 1.0
785 @USE_OPENQUICKTIME_TRUE@
786 @USE_OPENQUICKTIME_TRUE@%description -n gstreamer-openquicktime
787 @USE_OPENQUICKTIME_TRUE@Plug-in which uses the OpenQuicktime library
788 @USE_OPENQUICKTIME_TRUE@from 3ivx to play Quicktime movies.
789 @USE_OPENQUICKTIME_TRUE@(http://openquicktime.sourceforge.net/)
790 @USE_OPENQUICKTIME_TRUE@
791 @USE_OPENQUICKTIME_TRUE@%files -n gstreamer-openquicktime
792 @USE_OPENQUICKTIME_TRUE@%defattr(-, root, root)
793 @USE_OPENQUICKTIME_TRUE@%{_libdir}/gst/libgstopenquicktimedemux.so
794 @USE_OPENQUICKTIME_TRUE@%{_libdir}/gst/libgstopenquicktimetypes.so
795 @USE_OPENQUICKTIME_TRUE@%{_libdir}/gst/libgstopenquicktimedecoder.so
796 @USE_OPENQUICKTIME_TRUE@
797 @USE_OPENQUICKTIME_TRUE@%post -n gstreamer-openquicktime
798 @USE_OPENQUICKTIME_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
799 @USE_OPENQUICKTIME_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
800 @USE_OPENQUICKTIME_TRUE@
801 @USE_OPENQUICKTIME_TRUE@%postun -n gstreamer-openquicktime
802 @USE_OPENQUICKTIME_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
803 @USE_OPENQUICKTIME_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
804
805 ### OSS ###
806 @USE_OSS_TRUE@%package -n gstreamer-oss
807 @USE_OSS_TRUE@Summary:       GStreamer plug-ins for input and output using OSS.
808 @USE_OSS_TRUE@Group:         Libraries/Multimedia
809 @USE_OSS_TRUE@Requires:      gstreamer-plugins = %{version}
810 @USE_OSS_TRUE@BuildRequires: glibc-devel
811 @USE_OSS_TRUE@
812 @USE_OSS_TRUE@%description -n gstreamer-oss 
813 @USE_OSS_TRUE@Plug-ins for output and input to the OpenSoundSytem audio
814 @USE_OSS_TRUE@drivers found in the Linux kernels or commercially available
815 @USE_OSS_TRUE@from OpenSound.
816 @USE_OSS_TRUE@
817 @USE_OSS_TRUE@%files -n gstreamer-oss
818 @USE_OSS_TRUE@%defattr(-, root, root)
819 @USE_OSS_TRUE@%{_libdir}/gst/libgstossaudio.so
820 # @USE_OSS_TRUE@%{_libdir}/gst/libgstosshelper*
821 @USE_OSS_TRUE@
822 @USE_OSS_TRUE@%post -n gstreamer-oss
823 @USE_OSS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
824 @USE_OSS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
825 @USE_OSS_TRUE@
826 @USE_OSS_TRUE@%postun -n gstreamer-oss
827 @USE_OSS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
828 @USE_OSS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
829
830 ### RAW1394 ###
831 @USE_RAW1394_TRUE@%package -n gstreamer-raw1394
832 @USE_RAW1394_TRUE@Summary:       GStreamer raw1394 Firewire plug-in.
833 @USE_RAW1394_TRUE@Group:         Libraries/Multimedia
834 @USE_RAW1394_TRUE@Requires:      gstreamer-plugins = %{version}
835 @USE_RAW1394_TRUE@Requires:      libraw1394
836 @USE_RAW1394_TRUE@BuildRequires: libraw1394-devel
837 @USE_RAW1394_TRUE@
838 @USE_RAW1394_TRUE@%description -n gstreamer-raw1394
839 @USE_RAW1394_TRUE@Plug-in for digital video support using raw1394.
840 @USE_RAW1394_TRUE@
841 @USE_RAW1394_TRUE@%files -n gstreamer-raw1394
842 @USE_RAW1394_TRUE@%defattr(-, root, root)
843 @USE_RAW1394_TRUE@%{_libdir}/gst/libgst1394.so
844 @USE_RAW1394_TRUE@
845 @USE_RAW1394_TRUE@%post -n gstreamer-raw1394
846 @USE_RAW1394_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
847 @USE_RAW1394_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
848 @USE_RAW1394_TRUE@
849 @USE_RAW1394_TRUE@%postun -n gstreamer-raw1394
850 @USE_RAW1394_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
851 @USE_RAW1394_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
852
853 ### RTP ###
854 @USE_RTP_TRUE@%package -n gstreamer-rtp
855 @USE_RTP_TRUE@Summary:  GStreamer RTP plug-in.
856 @USE_RTP_TRUE@Group:    Libraries/Multimedia
857 @USE_RTP_TRUE@Requires: gstreamer-plugins = %{version}
858 @USE_RTP_TRUE@Requires: librtp >= 0.1
859 @USE_RTP_TRUE@
860 @USE_RTP_TRUE@%description -n gstreamer-rtp
861 @USE_RTP_TRUE@Library for transfering data with the RTP protocol.
862 @USE_RTP_TRUE@
863 @USE_RTP_TRUE@%files -n gstreamer-rtp
864 @USE_RTP_TRUE@%defattr(-, root, root)
865 @USE_RTP_TRUE@%{_libdir}/gst/libgstrtp.so
866 @USE_RTP_TRUE@
867 @USE_RTP_TRUE@%post -n gstreamer-rtp
868 @USE_RTP_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
869 @USE_RTP_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
870 @USE_RTP_TRUE@
871 @USE_RTP_TRUE@%postun -n gstreamer-rtp
872 @USE_RTP_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
873 @USE_RTP_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
874
875 ### SIDPLAY ###
876 @USE_SIDPLAY_TRUE@%package -n gstreamer-sid
877 @USE_SIDPLAY_TRUE@Summary:       GStreamer Sid C64 music plug-in.
878 @USE_SIDPLAY_TRUE@Group:         Libraries/Multimedia
879 @USE_SIDPLAY_TRUE@Requires:      gstreamer-plugins = %{version}
880 @USE_SIDPLAY_TRUE@Requires:      libsidplay => 1.36.0
881 @USE_SIDPLAY_TRUE@BuildRequires: libsidplay-devel => 1.36.0
882 @USE_SIDPLAY_TRUE@
883 @USE_SIDPLAY_TRUE@%description -n gstreamer-sid
884 @USE_SIDPLAY_TRUE@Plug-in for playback of C64 SID format music files.
885 @USE_SIDPLAY_TRUE@
886 @USE_SIDPLAY_TRUE@%files -n gstreamer-sid
887 @USE_SIDPLAY_TRUE@%defattr(-, root, root)
888 @USE_SIDPLAY_TRUE@%{_libdir}/gst/libgstsid.so
889 @USE_SIDPLAY_TRUE@
890 @USE_SIDPLAY_TRUE@%post -n gstreamer-sid
891 @USE_SIDPLAY_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
892 @USE_SIDPLAY_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
893 @USE_SIDPLAY_TRUE@
894 @USE_SIDPLAY_TRUE@%postun -n gstreamer-sid
895 @USE_SIDPLAY_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
896 @USE_SIDPLAY_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
897
898 ### SDL ###
899 @USE_SDL_TRUE@%package -n gstreamer-SDL
900 @USE_SDL_TRUE@Summary:       GStreamer plug-in for outputting video to SDL.
901 @USE_SDL_TRUE@Group:         Libraries/Multimedia
902 @USE_SDL_TRUE@Requires:      gstreamer-plugins = %{version}
903 @USE_SDL_TRUE@Requires:      SDL >= 1.2.0
904 @USE_SDL_TRUE@BuildRequires: SDL-devel >= 1.2.0
905 @USE_SDL_TRUE@#SDL-devel should require XFree86-devel because it links to it
906 @USE_SDL_TRUE@#only it doesn't seem to do that currently
907 @USE_SDL_TRUE@BuildRequires:    XFree86-devel
908 @USE_SDL_TRUE@#it used to be called gstreamer-sdl
909 @USE_SDL_TRUE@Obsoletes:        gstreamer-sdl
910 @USE_SDL_TRUE@
911 @USE_SDL_TRUE@%description -n gstreamer-SDL
912 @USE_SDL_TRUE@Plug-in for sending video output to the Simple Direct Media architecture.
913 @USE_SDL_TRUE@(http://www.libsdl.org). Useful for full-screen playback.
914 @USE_SDL_TRUE@
915 @USE_SDL_TRUE@%files -n gstreamer-SDL
916 @USE_SDL_TRUE@%defattr(-, root, root)
917 @USE_SDL_TRUE@%{_libdir}/gst/libgstsdlvideosink.so
918 @USE_SDL_TRUE@
919 @USE_SDL_TRUE@%post -n gstreamer-SDL
920 @USE_SDL_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
921 @USE_SDL_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
922 @USE_SDL_TRUE@
923 @USE_SDL_TRUE@%postun -n gstreamer-SDL
924 @USE_SDL_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
925 @USE_SDL_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
926
927 ### SHOUT ###
928 @USE_SHOUT_TRUE@%package -n gstreamer-icecast
929 @USE_SHOUT_TRUE@Summary:       GStreamer Icecast plug-in using libshout.
930 @USE_SHOUT_TRUE@Group:         Libraries/Multimedia
931 @USE_SHOUT_TRUE@Requires:      gstreamer-plugins = %{version}
932 @USE_SHOUT_TRUE@Requires:      libshout >= 1.0.5
933 @USE_SHOUT_TRUE@BuildRequires: libshout-devel >= 1.0.5
934 @USE_SHOUT_TRUE@
935 @USE_SHOUT_TRUE@%description -n gstreamer-icecast
936 @USE_SHOUT_TRUE@Plug-in for broadcasting audio to the Icecast server.
937 @USE_SHOUT_TRUE@
938 @USE_SHOUT_TRUE@%files -n gstreamer-icecast
939 @USE_SHOUT_TRUE@%defattr(-, root, root)
940 @USE_SHOUT_TRUE@%{_libdir}/gst/libgstshout.so
941 @USE_SHOUT_TRUE@
942 @USE_SHOUT_TRUE@%post -n gstreamer-icecast
943 @USE_SHOUT_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
944 @USE_SHOUT_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
945 @USE_SHOUT_TRUE@
946 @USE_SHOUT_TRUE@%postun -n gstreamer-icecast
947 @USE_SHOUT_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
948 @USE_SHOUT_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
949
950 ### VORBIS ###
951 @USE_VORBIS_TRUE@%package -n gstreamer-vorbis
952 @USE_VORBIS_TRUE@Summary:       GStreamer plug-in for encoding and decoding Ogg Vorbis audio files.
953 @USE_VORBIS_TRUE@Group:         Libraries/Multimedia
954 @USE_VORBIS_TRUE@Requires:      gstreamer-plugins = %{version}
955 @USE_VORBIS_TRUE@Requires:      libogg >= 1.0
956 @USE_VORBIS_TRUE@Requires:      libvorbis >= 1.0
957 @USE_VORBIS_TRUE@BuildRequires: libogg-devel >= 1.0
958 @USE_VORBIS_TRUE@BuildRequires: libvorbis-devel >= 1.0
959 @USE_VORBIS_TRUE@
960 @USE_VORBIS_TRUE@%description -n gstreamer-vorbis
961 @USE_VORBIS_TRUE@Plug-ins for creating and playing Ogg Vorbis audio files.
962 @USE_VORBIS_TRUE@
963 @USE_VORBIS_TRUE@%files -n gstreamer-vorbis  
964 @USE_VORBIS_TRUE@%defattr(-, root, root)
965 @USE_VORBIS_TRUE@%{_libdir}/gst/libgstvorbis.so
966 @USE_VORBIS_TRUE@
967 @USE_VORBIS_TRUE@%post -n gstreamer-vorbis
968 @USE_VORBIS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
969 @USE_VORBIS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
970 @USE_VORBIS_TRUE@
971 @USE_VORBIS_TRUE@%postun -n gstreamer-vorbis
972 @USE_VORBIS_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
973 @USE_VORBIS_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
974
975 ### VIDEO 4 LINUX ###
976 @USE_V4L_TRUE@%package -n gstreamer-v4l
977 @USE_V4L_TRUE@Summary:       GStreamer Video for Linux plug-in.
978 @USE_V4L_TRUE@Group:         Libraries/Multimedia
979 @USE_V4L_TRUE@Requires:      gstreamer-plugins = %{version}
980 @USE_V4L_TRUE@BuildRequires: glibc-devel
981 @USE_V4L_TRUE@
982 @USE_V4L_TRUE@%description -n gstreamer-v4l
983 @USE_V4L_TRUE@Plug-in for accessing Video for Linux devices.
984 @USE_V4L_TRUE@
985 @USE_V4L_TRUE@%files -n gstreamer-v4l
986 @USE_V4L_TRUE@%defattr(-, root, root)
987 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lelement.so
988 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lsrc.so
989 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lmjpegsrc.so
990 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lmjpegsink.so
991 @USE_V4L_TRUE@
992 @USE_V4L_TRUE@%post -n gstreamer-v4l
993 @USE_V4L_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
994 @USE_V4L_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
995 @USE_V4L_TRUE@
996 @USE_V4L_TRUE@%postun -n gstreamer-v4l
997 @USE_V4L_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
998 @USE_V4L_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
999
1000 ### VIDEO 4 LINUX 2 ###
1001 @USE_V4L2_TRUE@%package -n gstreamer-v4l2
1002 @USE_V4L2_TRUE@Summary:       GStreamer Video for Linux 2 plug-in.
1003 @USE_V4L2_TRUE@Group:         Libraries/Multimedia
1004 @USE_V4L2_TRUE@Requires:      gstreamer-plugins = %{version}
1005 @USE_V4L2_TRUE@BuildRequires: glibc-devel
1006 @USE_V4L2_TRUE@
1007 @USE_V4L2_TRUE@%description -n gstreamer-v4l2
1008 @USE_V4L2_TRUE@Plug-in for accessing Video for Linux devices.
1009 @USE_V4L2_TRUE@
1010 @USE_V4L2_TRUE@%files -n gstreamer-v4l2
1011 @USE_V4L2_TRUE@%defattr(-, root, root)
1012 @USE_V4L2_TRUE@%{_libdir}/gst/libgstv4l2element.so
1013 @USE_V4L2_TRUE@%{_libdir}/gst/libgstv4l2src.so
1014 @USE_V4L2_TRUE@
1015 @USE_V4L2_TRUE@%post -n gstreamer-v4l2
1016 @USE_V4L2_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1017 @USE_V4L2_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1018 @USE_V4L2_TRUE@
1019 @USE_V4L2_TRUE@%postun -n gstreamer-v4l2
1020 @USE_V4L2_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1021 @USE_V4L2_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1022
1023
1024 ### XVIDEO ###
1025 @USE_XVIDEO_TRUE@%package -n gstreamer-xvideosink
1026 @USE_XVIDEO_TRUE@Summary: GStreamer XFree output plug-in
1027 @USE_XVIDEO_TRUE@Group: Libraries/Multimedia
1028 @USE_XVIDEO_TRUE@Requires: gstreamer-plugins = %{version}
1029 @USE_XVIDEO_TRUE@Requires: Hermes => 1.3.0
1030 @USE_XVIDEO_TRUE@%description -n gstreamer-xvideosink
1031 @USE_XVIDEO_TRUE@Xfree86 video sink
1032 @USE_XVIDEO_TRUE@
1033 @USE_XVIDEO_TRUE@%files -n gstreamer-xvideosink
1034 @USE_XVIDEO_TRUE@%defattr(-, root, root)
1035 @USE_XVIDEO_TRUE@%{_libdir}/gst/libgstxvideosink*
1036 @USE_XVIDEO_TRUE@
1037 @USE_XVIDEO_TRUE@%post -n gstreamer-xvideosink
1038 @USE_XVIDEO_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1039 @USE_XVIDEO_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1040 @USE_XVIDEO_TRUE@
1041 @USE_XVIDEO_TRUE@%postun -n gstreamer-xvideosink
1042 @USE_XVIDEO_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1043 @USE_XVIDEO_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1044
1045 @USE_XVIDEO_TRUE@%package -n gstreamer-videosink
1046 @USE_XVIDEO_TRUE@Summary:       GStreamer Video Sink
1047 @USE_XVIDEO_TRUE@Group:         Libraries/Multimedia
1048 @USE_XVIDEO_TRUE@Requires:      gstreamer-plugins = %{version}
1049 @USE_XVIDEO_TRUE@Requires:      XFree86
1050 @USE_XVIDEO_TRUE@BuildRequires: XFree86-devel
1051 @USE_XVIDEO_TRUE@
1052 @USE_XVIDEO_TRUE@%description -n gstreamer-videosink
1053 @USE_XVIDEO_TRUE@Plug-in for X playback.
1054 @USE_XVIDEO_TRUE@
1055 @USE_XVIDEO_TRUE@%files -n gstreamer-videosink
1056 @USE_XVIDEO_TRUE@%defattr(-, root, root)
1057 @USE_XVIDEO_TRUE@%{_libdir}/gst/libgstvideosink.so
1058 @USE_XVIDEO_TRUE@
1059 @USE_XVIDEO_TRUE@%post -n gstreamer-videosink
1060 @USE_XVIDEO_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1061 @USE_XVIDEO_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1062 @USE_XVIDEO_TRUE@
1063 @USE_XVIDEO_TRUE@%postun -n gstreamer-videosink
1064 @USE_XVIDEO_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1065 @USE_XVIDEO_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1066
1067 ### packages without external dependencies ###
1068
1069 ### audio-effects ###
1070 %package -n gstreamer-audio-effects
1071 Summary:        GStreamer audio effects plug-in.
1072 Group:          Libraries/Multimedia
1073 Requires:       gstreamer-plugins = %{version}
1074 Obsoletes:      gstreamer-misc
1075
1076 %description -n gstreamer-audio-effects
1077 Plug-in with various audio effects including resampling, 
1078 sine wave generation, silence generation, channel mixing, stream mixing,
1079 integer to float conversion, LAW conversion and level detection plug-ins.
1080
1081 %files -n gstreamer-audio-effects
1082 %defattr(-, root, root)
1083 %{_libdir}/gst/libgstresample.so
1084 %{_libdir}/gst/libgstsinesrc.so
1085 %{_libdir}/gst/libgstsilence.so
1086 %{_libdir}/gst/libgststereo.so
1087 %{_libdir}/gst/libgststereo2mono.so
1088 %{_libdir}/gst/libgstvolume.so
1089 %{_libdir}/gst/libgstvolenv.so
1090 %{_libdir}/gst/libgstplayondemand.so
1091 %{_libdir}/gst/libgstspeed.so
1092 %{_libdir}/gst/libgststereosplit.so
1093 %{_libdir}/gst/libgstadder.so
1094 %{_libdir}/gst/libgstalaw.so
1095 %{_libdir}/gst/libgstintfloat.so
1096 %{_libdir}/gst/libgstlevel.so
1097 %{_libdir}/gst/libgstmono2stereo.so
1098 %{_libdir}/gst/libgstmulaw.so
1099 %{_libdir}/gst/libgstpassthrough.so
1100 # %{_libdir}/gst/libgstfloatcast.so
1101 %{_libdir}/gst/libgstcutter.so
1102 %{_libdir}/gst/libgstfilter.so
1103 %{_libdir}/gst/libmixmatrix.so
1104
1105 %post -n gstreamer-audio-effects
1106 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1107 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1108
1109 %postun -n gstreamer-audio-effects
1110 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1111 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1112
1113 ### audio-formats ###
1114 %package -n gstreamer-audio-formats
1115 Summary:        GStreamer audio format plug-ins.
1116 Group:          Libraries/Multimedia
1117 Requires:       gstreamer-plugins = %{version}
1118 BuildRequires:  gcc-c++
1119
1120 %description -n gstreamer-audio-formats
1121 Plug-in for playback of wav, au and mod audio files as well as mp3 type.
1122
1123 %files -n gstreamer-audio-formats
1124 %defattr(-, root, root)
1125 %{_libdir}/gst/libgstwavparse.so
1126 %{_libdir}/gst/libgstauparse.so
1127 %{_libdir}/gst/libgstmp3types.so
1128 %{_libdir}/gst/libgstmodplug.so
1129
1130 %post -n gstreamer-audio-formats
1131 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1132 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1133
1134 %postun -n gstreamer-audio-formats
1135 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1136 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1137
1138 ### festival ###
1139 %package -n gstreamer-festival
1140 Summary:        GStreamer plug-in for text-to-speech support using a festival server.
1141 Group:          Libraries/Multimedia
1142 Requires:       gstreamer-plugins = %{version}
1143
1144 %description -n gstreamer-festival
1145 Plug-in for text-to-speech using the festival server.
1146
1147 %files -n gstreamer-festival
1148 %defattr(-, root, root)
1149 %{_libdir}/gst/libgstfestival.so
1150
1151 %post -n gstreamer-festival
1152 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1153 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1154
1155 %postun -n gstreamer-festival
1156 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1157 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1158
1159 ### flx ###
1160 %package -n gstreamer-flx
1161 Summary:        GStreamer plug-in for FLI/FLX animation format.
1162 Group:          Libraries/Multimedia
1163 Requires:       gstreamer-plugins = %{version}
1164 Requires:       gstreamer-colorspace = %{version}
1165 %description -n gstreamer-flx
1166 Plug-in for playing FLI/FLX animations under GStreamer.
1167
1168 %files -n gstreamer-flx
1169 %defattr(-, root, root)
1170 %{_libdir}/gst/libgstflxdec.so
1171
1172 %post -n gstreamer-flx
1173 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1174 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1175
1176 %postun -n gstreamer-flx
1177 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1178 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1179
1180 ### qcam ###
1181 %package -n gstreamer-qcam
1182 Summary:        GStreamer QuickCam plug-in.
1183 Group:          Libraries/Multimedia
1184 Requires:       gstreamer-plugins = %{version}
1185
1186 %description -n gstreamer-qcam
1187 Plug-in for accessing a Quickcam video source.
1188
1189 %files -n gstreamer-qcam
1190 %defattr(-, root, root)
1191 %{_libdir}/gst/libgstqcam.so
1192
1193 %post -n gstreamer-qcam
1194 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1195 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1196
1197 %postun -n gstreamer-qcam
1198 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1199 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1200
1201 ### udp ###
1202 %package -n gstreamer-udp
1203 Summary:        GStreamer plug-ins for UDP tranport.
1204 Group:          Libraries/Multimedia
1205 Requires:       gstreamer-plugins = %{version}
1206
1207 %description -n gstreamer-udp
1208 Plug-ins for UDP transport under GStreamer.
1209
1210 %files -n gstreamer-udp
1211 %defattr(-, root, root)
1212 %{_libdir}/gst/libgstudp.so
1213
1214 %post -n gstreamer-udp
1215 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1216 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1217
1218 %postun -n gstreamer-udp
1219 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1220 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1221
1222 ### vcd ###
1223 %package -n gstreamer-vcd
1224 Summary:        GStreamer Video CD plug-in.
1225 Group:          Libraries/Multimedia
1226 Requires:       gstreamer-plugins = %{version}
1227
1228 %description -n gstreamer-vcd
1229 Video CD parsing and playback plug-in for GStreamer.
1230
1231 %files -n gstreamer-vcd
1232 %defattr(-, root, root)
1233 %{_libdir}/gst/libgstvcdsrc.so
1234 %{_libdir}/gst/libgstcdxaparse.so
1235
1236 %post -n gstreamer-vcd
1237 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1238 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1239
1240 %postun -n gstreamer-vcd
1241 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1242 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1243
1244 ### video-effects ###
1245 %package -n gstreamer-video-effects
1246 Summary:        GStreamer video effects plug-in.
1247 Group:          Libraries/Multimedia
1248 Requires:       gstreamer-plugins = %{version}
1249 Obsoletes:      gstreamer-deinterlace
1250 Obsoletes:      gstreamer-misc
1251
1252 %description -n gstreamer-video-effects
1253 Plug-in with various video effects including deinterlacing and effecTV
1254 plug-ins.
1255
1256 %files -n gstreamer-video-effects
1257 %defattr(-, root, root)
1258 %{_libdir}/gst/libgsteffectv.so
1259 %{_libdir}/gst/libgstdeinterlace.so
1260 %{_libdir}/gst/libgstmedian.so
1261 %{_libdir}/gst/libgstrtjpeg.so
1262 %{_libdir}/gst/libgstvideocrop.so
1263 %{_libdir}/gst/libgstvideoscale.so
1264
1265 %post -n gstreamer-video-effects
1266 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1267 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1268
1269 %postun -n gstreamer-video-effects
1270 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1271 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1272
1273 ### visualisation ###
1274 %package -n gstreamer-visualisation
1275 Summary:        GStreamer visualisations plug-ins.
1276 Group:          Libraries/Multimedia
1277 Requires:       gstreamer-plugins = %{version}
1278
1279 %description -n gstreamer-visualisation
1280 Various plug-ins for visual effects to use with audio.
1281 This includes smoothwave, spectrum, goom, chart, monoscope, synaesthesia
1282 and vumeter.
1283
1284 %files -n gstreamer-visualisation
1285 %defattr(-, root, root)
1286 %{_libdir}/gst/libgstsmooth.so
1287 %{_libdir}/gst/libgstspectrum.so
1288 %{_libdir}/gst/libgstvumeter.so
1289 %{_libdir}/gst/libgstgoom.so
1290 %{_libdir}/gst/libgstchart.so
1291 %{_libdir}/gst/libgstmonoscope.so
1292 %{_libdir}/gst/libgstsynaesthesia.so
1293
1294 %post -n gstreamer-visualisation
1295 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1296 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1297
1298 %postun -n gstreamer-visualisation
1299 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1300 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1301
1302 ### yuv4mjpeg ###
1303 %package -n gstreamer-yuv4mjpeg
1304 Summary:        GStreamer plug-in for YUV to MJPEG conversion.
1305 Group:          Libraries/Multimedia
1306 Requires:       gstreamer-plugins = %{version}
1307 Obsoletes:      gstreamer-lavencode
1308
1309 %description -n gstreamer-yuv4mjpeg
1310 It takes YUV video frames and adds a header in front of it so it can be 
1311 processed with the lavtools from mjpegtools.
1312
1313 %files -n gstreamer-yuv4mjpeg
1314 %defattr(-, root, root)
1315 %{_libdir}/gst/libgsty4menc.so
1316
1317 %post -n gstreamer-yuv4mjpeg
1318 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1319 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1320
1321 %postun -n gstreamer-yuv4mjpeg
1322 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1323 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1324
1325 # cdplayer
1326 %package -n gstreamer-cdplayer
1327 Summary:        GStreamer plug-in playing audio cds     
1328 Group:          Libraries/Multimedia
1329 Requires:       gstreamer-plugins = %{version}
1330
1331 %description -n gstreamer-cdplayer
1332 Lets you get sound from audio cd's using GStreamer
1333
1334 %files -n gstreamer-cdplayer
1335 %defattr(-, root, root)
1336 %{_libdir}/gst/libgstcdplayer.so
1337
1338 %post -n gstreamer-cdplayer
1339 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1340 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1341
1342 %postun -n gstreamer-cdplayer
1343 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1344 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1345
1346 # Videotest plugin
1347 %package -n gstreamer-videotest
1348 Summary:        GStreamer plug-in for generating a video test streamer
1349 Group:          Libraries/Multimedia
1350 Requires:       gstreamer-plugins = %{version}
1351
1352 %description -n gstreamer-videotest
1353 This plugin provides a videotest plugin. This plugin can be used to generate a videostream for testing other plugins.
1354
1355 %files -n gstreamer-videotest
1356 %defattr(-, root, root)
1357 %{_libdir}/gst/libgstvideotestsrc.so
1358
1359 %post -n gstreamer-videotest
1360 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1361 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1362
1363 %postun -n gstreamer-videotest
1364 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1365 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1366
1367 # Snapshot plugin
1368 @USE_LIBPNG_TRUE@%package -n gstreamer-snapshot
1369 @USE_LIBPNG_TRUE@Summary:        GStreamer plug-in for grabbing images from videostreams
1370 @USE_LIBPNG_TRUE@Group:          Libraries/Multimedia
1371 @USE_LIBPNG_TRUE@Requires:       gstreamer-plugins = %{version}
1372 @USE_LIBPNG_TRUE@
1373 @USE_LIBPNG_TRUE@%description -n gstreamer-snapshot
1374 @USE_LIBPNG_TRUE@This plugin grabs images from videostreams and saves them as PNG format images.
1375 @USE_LIBPNG_TRUE@
1376 @USE_LIBPNG_TRUE@%files -n gstreamer-snapshot
1377 @USE_LIBPNG_TRUE@%defattr(-, root, root)
1378 @USE_LIBPNG_TRUE@%{_libdir}/gst/libgstsnapshot.so
1379 @USE_LIBPNG_TRUE@
1380 @USE_LIBPNG_TRUE@%post -n gstreamer-snapshot
1381 @USE_LIBPNG_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1382 @USE_LIBPNG_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1383 @USE_LIBPNG_TRUE@
1384 @USE_LIBPNG_TRUE@%postun -n gstreamer-snapshot
1385 @USE_LIBPNG_TRUE@%{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1386 @USE_LIBPNG_TRUE@%{_bindir}/gst-compprep > /dev/null 2> /dev/null
1387
1388 # Dependency free Quicktime demuxer
1389 %package -n gstreamer-quicktime
1390 Summary:       GStreamer Quicktime demuxer video Plug-in.
1391 Group:         Libraries/Multimedia
1392 Requires:      gstreamer-plugins = %{version}
1393
1394 %description -n gstreamer-quicktime
1395 Plug-in for demuxing Quicktime movies
1396
1397 %files -n gstreamer-quicktime
1398 %defattr(-, root, root)
1399 %{_libdir}/gst/libgstqtdemux.so
1400
1401 %post -n gstreamer-quicktime
1402 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1403 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1404
1405 %postun -n gstreamer-quicktime
1406 %{_bindir}/gst-register --gst-mask=0 > /dev/null 2> /dev/null
1407 %{_bindir}/gst-compprep > /dev/null 2> /dev/null
1408
1409 # package supporting GConf
1410 @USE_GCONF_TRUE@%package -n gstreamer-GConf
1411 @USE_GCONF_TRUE@Summary:        GStreamer GConf schemas.
1412 @USE_GCONF_TRUE@Group:          Libraries/Multimedia
1413 @USE_GCONF_TRUE@Requires:       gstreamer-plugins = %{version}
1414 @USE_GCONF_TRUE@Requires:       GConf2
1415 @USE_GCONF_TRUE@BuildRequires:  GConf2-devel
1416
1417 @USE_GCONF_TRUE@%description -n gstreamer-GConf
1418 @USE_GCONF_TRUE@Installation of GStreamer GConf schemas.
1419 @USE_GCONF_TRUE@These set usable defaults used by all GStreamer-enabled Gnome applications.
1420
1421 @USE_GCONF_TRUE@%files -n gstreamer-GConf
1422 @USE_GCONF_TRUE@%defattr(-, root, root)
1423 @USE_GCONF_TRUE@%{_sysconfdir}/gconf/schemas/gstreamer.schemas
1424 @USE_GCONF_TRUE@%{_libdir}/libgstgconf.so
1425 @USE_GCONF_TRUE@%{_libdir}/libgstgconf-0.4.1.1.so.0.0.0
1426
1427 @USE_GCONF_TRUE@%post -n gstreamer-GConf
1428 @USE_GCONF_TRUE@export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
1429 @USE_GCONF_TRUE@gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer.schemas > /dev/null
1430
1431 %changelog
1432 * Sat Oct 20 2002 Christian Scchaller <Uraeus@linuxrising.org>
1433 - Removed all .la files
1434 - added separate non-openquicktime demuxer plugin
1435 - added snapshot plugin
1436 - added videotest plugin
1437 - Split avi plugin out to avi and windec plugins since aviplugin do not depend on avifile
1438 - Added cdplayer plugin
1439
1440 * Fri Sep 20 2002 Thomas Vander Stichele <thomas@apestaart.org>
1441 - added gst-compprep calls
1442
1443 * Wed Sep 18 2002 Thomas Vander Stichele <thomas@apestaart.org>
1444 - add gst-register calls everywhere again since auto-reregister doesn't work
1445 - added gstreamer-audio-formats to mad's requires since it needs the typefind
1446   to work properly
1447
1448 * Mon Sep 9 2002 Christian Schaller <Uraeus@linuxrising.org>
1449 - Added v4l2 plugin
1450 * Thu Aug 27 2002 Christian Schaller <Uraeus@linuxrising.org>
1451 - Fixed USE_DV_TRUE to USE_LIBDV_TRUE
1452 - Added Gconf and floatcast headers to gstreamer-plugins-devel package
1453 - Added mixmatrix plugin to audio-effects package
1454
1455 * Thu Jul 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
1456 - fixed oss package to buildrequire instead of require glibc headers
1457
1458 * Mon Jul 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
1459 - fixed -devel package group
1460
1461 * Fri Jul 05 2002 Thomas Vander Stichele <thomas@apestaart.org>
1462 - release 0.4.0 !
1463 - added gstreamer-libs.pc
1464 - removed all gst-register calls since this should be done automatically now
1465
1466 * Thu Jul 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
1467 - fix issue with SDL package
1468 - make all packages STRICTLY require the right version to avoid
1469   ABI issues
1470 - make gst-plugins obsolete gst-plugin-libs
1471 - also send output of gst-register to /dev/null to lower the noise
1472
1473 * Wed Jul 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
1474 - require glibc-devel instead of glibc-kernheaders since the latter is only
1475   since 7.3 and glibc-devel pulls in the right package anyway
1476
1477 * Sun Jun 23 2002 Thomas Vander Stichele <thomas@apestaart.org>
1478 - changed header location of plug-in libs
1479
1480 * Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
1481 - major cleanups
1482 - adding gst-register on postun everywhere
1483 - remove ldconfig since we don't actually install libs in system dirs
1484 - removed misc package
1485 - added video-effects
1486 - dot every Summary
1487 - uniformify all descriptions a little
1488
1489 * Thu Jun 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
1490 - various BuildRequires: additions
1491
1492 * Tue Jun 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
1493 - added USE_LIBADSPA_TRUE bits to ladspa package
1494
1495 * Mon Jun 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
1496 - Added libfame package
1497
1498 * Mon May 12 2002 Christian Fredrik Kalager Schaller <Uraeus@linuxrising.org>
1499 - Added jack, dxr3, http packages
1500 - Added visualisation plug-ins, effecttv and synaesthesia
1501 - Created devel package
1502 - Removed gstreamer-plugins-libs package (moved it into gstreamer-plugins)
1503 - Replaced prefix/dirname with _macros
1504
1505 * Mon May 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
1506 - added gstreamer-GConf package
1507
1508 * Wed Mar 13 2002 Thomas Vander Stichele <thomas@apestaart.org>
1509 - added more BuildRequires and Requires
1510 - rearranged some plug-ins
1511 - added changelog ;)