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