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