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