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