make default video sink be colorspace ! xvideosink
[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
101 %package -n gstreamer-plugins-devel
102 Summary:        GStreamer Plugin Library Headers.
103 Group:          Development/Libraries
104 Requires:       gstreamer-plugins = %{version}
105
106 %description -n gstreamer-plugins-devel
107 GStreamer support libraries header files.
108
109 %files -n gstreamer-plugins-devel
110 %defattr(-, root, root)
111 %{_includedir}/gst-plugins-%{version}/gst/audio/audio.h
112 %{_includedir}/gst-plugins-%{version}/gst/floatcast/floatcast.h
113 %{_includedir}/gst-plugins-%{version}/gst/gconf/gconf.h
114 %{_includedir}/gst-plugins-%{version}/gst/idct/idct.h
115 %{_includedir}/gst-plugins-%{version}/gst/resample/resample.h
116 %{_includedir}/gst-plugins-%{version}/gst/riff/riff.h
117 %{_libdir}/pkgconfig/gstreamer-libs.pc
118
119 # Here are all the packages depending on external libs #
120
121 ### A52DEC ###
122 @USE_A52DEC_TRUE@%package -n gstreamer-a52dec
123 @USE_A52DEC_TRUE@Summary:       GStreamer VOB decoder plug-in.
124 @USE_A52DEC_TRUE@Group:         Libraries/Multimedia
125 @USE_A52DEC_TRUE@Requires:      gstreamer-plugins = %{version}
126 @USE_A52DEC_TRUE@Requires:      a52dec >= 0.7.3
127 @USE_A52DEC_TRUE@BuildRequires: a52dec-devel >= 0.7.3
128 @USE_A52DEC_TRUE@
129 @USE_A52DEC_TRUE@%description -n gstreamer-a52dec
130 @USE_A52DEC_TRUE@Plug-in for decoding of VOB files.
131 @USE_A52DEC_TRUE@
132 @USE_A52DEC_TRUE@%files -n gstreamer-a52dec
133 @USE_A52DEC_TRUE@%defattr(-, root, root)
134 @USE_A52DEC_TRUE@%{_libdir}/gst/libgsta52dec.so
135 @USE_A52DEC_TRUE@%{_libdir}/gst/libgstac3parse.so
136
137 ### AALIB ###
138 @USE_AALIB_TRUE@%package -n gstreamer-aalib
139 @USE_AALIB_TRUE@Summary:       GStreamer plug-in for Ascii-art output.
140 @USE_AALIB_TRUE@Group:         Libraries/Multimedia
141 @USE_AALIB_TRUE@Requires:      gstreamer-plugins = %{version}
142 @USE_AALIB_TRUE@Requires:      aalib >= 1.3
143 @USE_AALIB_TRUE@BuildRequires: aalib-devel >= 1.3
144 @USE_AALIB_TRUE@
145 @USE_AALIB_TRUE@%description -n gstreamer-aalib
146 @USE_AALIB_TRUE@Plug-in for viewing video in Ascii-art using aalib library.
147 @USE_AALIB_TRUE@
148 @USE_AALIB_TRUE@%files -n gstreamer-aalib
149 @USE_AALIB_TRUE@%defattr(-, root, root)
150 @USE_AALIB_TRUE@%{_libdir}/gst/libgstaasink.so
151
152 ### ALSA ###
153 @USE_ALSA_TRUE@%package -n gstreamer-alsa
154 @USE_ALSA_TRUE@Summary:  GStreamer plug-ins for the ALSA sound system.
155 @USE_ALSA_TRUE@Group:    Libraries/Multimedia
156 @USE_ALSA_TRUE@Requires: gstreamer-plugins = %{version}
157 @USE_ALSA_TRUE@
158 @USE_ALSA_TRUE@%description -n gstreamer-alsa
159 @USE_ALSA_TRUE@Input and output plug-in for the ALSA soundcard driver system. 
160 @USE_ALSA_TRUE@This plug-in depends on Alsa 0.9.x or higher.
161 @USE_ALSA_TRUE@
162 @USE_ALSA_TRUE@%files -n gstreamer-alsa
163 @USE_ALSA_TRUE@%defattr(-, root, root)
164 @USE_ALSA_TRUE@%{_libdir}/gst/libgstalsa.so
165 @USE_ALSA_TRUE@%{_mandir}/man1/gstalsa*
166
167 ### ARTS WRAPPER ###
168 @USE_ARTS_TRUE@%package -n gstreamer-arts
169 @USE_ARTS_TRUE@Summary:       GStreamer arts wrapper plug-in.
170 @USE_ARTS_TRUE@Group:         Libraries/Multimedia
171 @USE_ARTS_TRUE@Requires:      gstreamer-plugins = %{version}
172 @USE_ARTS_TRUE@Requires:      kdelibs-sound >= 2
173 @USE_ARTS_TRUE@BuildRequires: kdelibs-sound-devel >= 2
174 @USE_ARTS_TRUE@BuildRequires: gcc-c++
175 @USE_ARTS_TRUE@
176 @USE_ARTS_TRUE@%description -n gstreamer-arts
177 @USE_ARTS_TRUE@This plug-in wraps arts plug-ins.
178 @USE_ARTS_TRUE@
179 @USE_ARTS_TRUE@%files -n gstreamer-arts
180 @USE_ARTS_TRUE@%defattr(-, root, root)
181 @USE_ARTS_TRUE@%{_libdir}/gst/libgstarts.so
182
183 ### ARTSD SOUND SERVER ###
184 @USE_ARTSC_TRUE@%package -n gstreamer-artsd
185 @USE_ARTSC_TRUE@Summary:  GStreamer artsd output plug-in.
186 @USE_ARTSC_TRUE@Group:    Libraries/Multimedia
187 @USE_ARTSC_TRUE@Requires: gstreamer-plugins = %{version}
188 @USE_ARTSC_TRUE@
189 @USE_ARTSC_TRUE@%description -n gstreamer-artsd
190 @USE_ARTSC_TRUE@Plug-in for outputting to artsd sound server.
191 @USE_ARTSC_TRUE@
192 @USE_ARTSC_TRUE@%files -n gstreamer-artsd
193 @USE_ARTSC_TRUE@%defattr(-, root, root)
194 @USE_ARTSC_TRUE@%{_libdir}/gst/libgstartsdsink.so
195
196 ### AUDIOFILE ###
197 @USE_AUDIOFILE_TRUE@%package -n gstreamer-audiofile
198 @USE_AUDIOFILE_TRUE@Summary:       GStreamer plug-in for audiofile support.
199 @USE_AUDIOFILE_TRUE@Group:         Libraries/Multimedia
200 @USE_AUDIOFILE_TRUE@Requires:      gstreamer-plugins = %{version}
201 @USE_AUDIOFILE_TRUE@Requires:      audiofile >= 0.2.1
202 @USE_AUDIOFILE_TRUE@BuildRequires: audiofile-devel >= 0.2.1
203 @USE_AUDIOFILE_TRUE@
204 @USE_AUDIOFILE_TRUE@%description -n gstreamer-audiofile
205 @USE_AUDIOFILE_TRUE@Plug-in for supporting reading and writing of all files supported by audiofile.
206 @USE_AUDIOFILE_TRUE@
207 @USE_AUDIOFILE_TRUE@%files -n gstreamer-audiofile
208 @USE_AUDIOFILE_TRUE@%defattr(-, root, root)
209 @USE_AUDIOFILE_TRUE@%{_libdir}/gst/libgstaudiofile.so
210
211 ### AVIFILE ###
212 @USE_AVIFILE_TRUE@%package -n gstreamer-avi
213 @USE_AVIFILE_TRUE@Summary:       GStreamer plug-in for AVI movie playback.
214 @USE_AVIFILE_TRUE@Group:         Libraries/Multimedia
215 @USE_AVIFILE_TRUE@Requires:      gstreamer-plugins = %{version}
216 @USE_AVIFILE_TRUE@Requires:      gstreamer-colorspace = %{version}
217 @USE_AVIFILE_TRUE@Requires:      avifile
218 @USE_AVIFILE_TRUE@BuildRequires: avifile-devel
219 @USE_AVIFILE_TRUE@
220 @USE_AVIFILE_TRUE@%description -n gstreamer-avi
221 @USE_AVIFILE_TRUE@Plug-ins for playback of AVI format media files.
222 @USE_AVIFILE_TRUE@
223 @USE_AVIFILE_TRUE@%files -n gstreamer-avi
224 @USE_AVIFILE_TRUE@%defattr(-, root, root)
225 @USE_AVIFILE_TRUE@%{_libdir}/gst/libgstavidemux.so
226 @USE_AVIFILE_TRUE@%{_libdir}/gst/libgstavimux.so
227 @USE_AVIFILE_TRUE@%{_libdir}/gst/libgstwincodec.so
228
229 ### CDPARANOIA ###
230 @USE_CDPARANOIA_TRUE@%package -n gstreamer-cdparanoia
231 @USE_CDPARANOIA_TRUE@Summary:       GStreamer plug-in for CD audio input using CDParanoia IV.
232 @USE_CDPARANOIA_TRUE@Group:         Libraries/Multimedia
233 @USE_CDPARANOIA_TRUE@Requires:      gstreamer-plugins = %{version}
234 @USE_CDPARANOIA_TRUE@Requires:      cdparanoia-libs >= alpha9.7
235 @USE_CDPARANOIA_TRUE@BuildRequires: cdparanoia-devel >= alpha9.7
236 @USE_CDPARANOIA_TRUE@
237 @USE_CDPARANOIA_TRUE@%description -n gstreamer-cdparanoia
238 @USE_CDPARANOIA_TRUE@Plug-in for ripping audio tracks using cdparanoia under GStreamer.
239 @USE_CDPARANOIA_TRUE@
240 @USE_CDPARANOIA_TRUE@%files -n gstreamer-cdparanoia
241 @USE_CDPARANOIA_TRUE@%defattr(-, root, root)
242 @USE_CDPARANOIA_TRUE@%{_libdir}/gst/libgstcdparanoia.so
243
244 ### DVDREAD ###
245 @USE_DVDREAD_TRUE@%package -n gstreamer-libdvdread
246 @USE_DVDREAD_TRUE@Summary:       GStreamer plug-in for DVD playback using libdvdread.
247 @USE_DVDREAD_TRUE@Group:         Libraries/Multimedia
248 @USE_DVDREAD_TRUE@Requires:      gstreamer-plugins = %{version}
249 @USE_DVDREAD_TRUE@Requires:      libdvdread >= 0.9.0
250 @USE_DVDREAD_TRUE@BuildRequires: libdvdread-devel >= 0.9.0
251 @USE_DVDREAD_TRUE@Obsoletes:     gstreamer-libdvd
252 @USE_DVDREAD_TRUE@
253 @USE_DVDREAD_TRUE@%description -n gstreamer-libdvdread
254 @USE_DVDREAD_TRUE@Plug-in for reading DVDs using libdvdread under GStreamer.
255 @USE_DVDREAD_TRUE@
256 @USE_DVDREAD_TRUE@%files -n gstreamer-libdvdread
257 @USE_DVDREAD_TRUE@%defattr(-, root, root)
258 @USE_DVDREAD_TRUE@%{_libdir}/gst/libgstdvdreadsrc.so
259
260 ## DXR3 ###
261 @USE_DXR3_TRUE@%package -n gstreamer-dxr3
262 @USE_DXR3_TRUE@Summary:       GStreamer plug-in for playback using dxr3 card.
263 @USE_DXR3_TRUE@Group:         Libraries/Multimedia
264 @USE_DXR3_TRUE@Requires:      gstreamer-plugins = %{version}
265 @USE_DXR3_TRUE@Requires:      em8300 => 0.12.0
266 @USE_DXR3_TRUE@BuildRequires: em8300-devel => 0.12.0
267 @USE_DXR3_TRUE@
268 @USE_DXR3_TRUE@%description -n gstreamer-dxr3
269 @USE_DXR3_TRUE@Plug-in supporting DVD playback using cards
270 @USE_DXR3_TRUE@with the dxr3 chipset like Hollywood Plus
271 @USE_DXR3_TRUE@and Creative Labs DVD cards.
272 @USE_DXR3_TRUE@
273 @USE_DXR3_TRUE@%files -n gstreamer-dxr3
274 @USE_DXR3_TRUE@%defattr(-, root, root)
275 @USE_DXR3_TRUE@%{_libdir}/gst/libgstdxr3.so
276
277 ### ESD ###
278 @USE_ESD_TRUE@%package -n gstreamer-esound
279 @USE_ESD_TRUE@Summary:       GStreamer plug-in for ESD sound output.
280 @USE_ESD_TRUE@Group:         Libraries/Multimedia
281 @USE_ESD_TRUE@Requires:      gstreamer-plugins = %{version}
282 @USE_ESD_TRUE@Requires:      esound >= 0.2.8
283 @USE_ESD_TRUE@BuildRequires: esound-devel >= 0.2.8
284 @USE_ESD_TRUE@Obsoletes:     gstreamer-esd
285 @USE_ESD_TRUE@
286 @USE_ESD_TRUE@%description -n gstreamer-esound
287 @USE_ESD_TRUE@Output and monitoring plug-ins for GStreamer using ESound.
288 @USE_ESD_TRUE@
289 @USE_ESD_TRUE@%files -n gstreamer-esound
290 @USE_ESD_TRUE@%defattr(-, root, root)
291 @USE_ESD_TRUE@%{_libdir}/gst/libgstesdmon.so
292 @USE_ESD_TRUE@%{_libdir}/gst/libgstesdsink.so
293
294 ### FLAC ###
295 @USE_FLAC_TRUE@%package -n gstreamer-flac
296 @USE_FLAC_TRUE@Summary:       GStreamer plug-in for FLAC lossless audio.
297 @USE_FLAC_TRUE@Group:         Libraries/Multimedia
298 @USE_FLAC_TRUE@Requires:      gstreamer-plugins = %{version}
299 @USE_FLAC_TRUE@Requires:      flac >= 1.0.0
300 @USE_FLAC_TRUE@BuildRequires: flac-devel >= 1.0.0
301 @USE_FLAC_TRUE@
302 @USE_FLAC_TRUE@%description -n gstreamer-flac
303 @USE_FLAC_TRUE@Plug-in for the free FLAC lossless audio format.
304 @USE_FLAC_TRUE@
305 @USE_FLAC_TRUE@%files -n gstreamer-flac
306 @USE_FLAC_TRUE@%defattr(-, root, root)
307 @USE_FLAC_TRUE@%{_libdir}/gst/libgstflac.so
308
309 ### GNOME VFS 2 ###
310 @USE_GNOME_VFS_TRUE@%package -n gstreamer-gnomevfs
311 @USE_GNOME_VFS_TRUE@Summary:       GStreamer plug-ins for Gnome-VFS input and output.
312 @USE_GNOME_VFS_TRUE@Group:         Libraries/Multimedia
313 @USE_GNOME_VFS_TRUE@Requires:      gstreamer-plugins = %{version}
314 @USE_GNOME_VFS_TRUE@Requires:      gnome-vfs2 > 1.9.4.00
315 @USE_GNOME_VFS_TRUE@BuildRequires: gnome-vfs2-devel > 1.9.4.00
316 @USE_GNOME_VFS_TRUE@
317 @USE_GNOME_VFS_TRUE@%description -n gstreamer-gnomevfs
318 @USE_GNOME_VFS_TRUE@Plug-ins for reading and writing through GNOME VFS.
319 @USE_GNOME_VFS_TRUE@
320 @USE_GNOME_VFS_TRUE@%files -n gstreamer-gnomevfs
321 @USE_GNOME_VFS_TRUE@%defattr(-, root, root)
322 @USE_GNOME_VFS_TRUE@%{_libdir}/gst/libgstgnomevfssrc.so
323 @USE_GNOME_VFS_TRUE@%{_libdir}/gst/libgstgnomevfssink.so
324
325 ### GSM ###
326 @USE_GSM_TRUE@%package -n gstreamer-gsm
327 @USE_GSM_TRUE@Summary:       GStreamer plug-in for GSM lossy audio format.
328 @USE_GSM_TRUE@Group:         Libraries/Multimedia
329 @USE_GSM_TRUE@Requires:      gstreamer-plugins = %{version}
330 @USE_GSM_TRUE@Requires:      gsm >= 1.0.10
331 @USE_GSM_TRUE@BuildRequires: gsm-devel >= 1.0.10
332 @USE_GSM_TRUE@
333 @USE_GSM_TRUE@%description -n gstreamer-gsm
334 @USE_GSM_TRUE@Output plug-in for GStreamer to convert to GSM lossy audio format.
335 @USE_GSM_TRUE@
336 @USE_GSM_TRUE@%files -n gstreamer-gsm
337 @USE_GSM_TRUE@%defattr(-, root, root)
338 @USE_GSM_TRUE@%{_libdir}/gst/libgstgsm.so
339
340 ### HERMES ###
341 @USE_HERMES_TRUE@%package -n gstreamer-colorspace
342 @USE_HERMES_TRUE@Summary:       GStreamer colorspace conversion plug-in.
343 @USE_HERMES_TRUE@Group:         Libraries/Multimedia
344 @USE_HERMES_TRUE@Requires:      gstreamer-plugins = %{version}
345 @USE_HERMES_TRUE@Requires:      Hermes => 1.3.0
346 @USE_HERMES_TRUE@BuildRequires: Hermes-devel => 1.3.0
347 @USE_HERMES_TRUE@%description -n gstreamer-colorspace
348 @USE_HERMES_TRUE@Colorspace plug-in based on Hermes library.
349 @USE_HERMES_TRUE@
350 @USE_HERMES_TRUE@%files -n gstreamer-colorspace
351 @USE_HERMES_TRUE@%defattr(-, root, root)
352 @USE_HERMES_TRUE@%{_libdir}/gst/libgstcolorspace.so
353
354 ### HTTP ###
355 @USE_HTTP_TRUE@%package -n gstreamer-httpsrc
356 @USE_HTTP_TRUE@Summary:       GStreamer plug-in for http using libghttp.
357 @USE_HTTP_TRUE@Group:         Libraries/Multimedia
358 @USE_HTTP_TRUE@Requires:      gstreamer-plugins = %{version}
359 @USE_HTTP_TRUE@Requires:      libghttp => 1.0.9
360 @USE_HTTP_TRUE@BuildRequires: libghttp-devel => 1.0.9
361 @USE_HTTP_TRUE@
362 @USE_HTTP_TRUE@%description -n gstreamer-httpsrc
363 @USE_HTTP_TRUE@Plug-in supporting the http protocol based 
364 @USE_HTTP_TRUE@on the libghttp library.
365 @USE_HTTP_TRUE@
366 @USE_HTTP_TRUE@%files -n gstreamer-httpsrc
367 @USE_HTTP_TRUE@%defattr(-, root, root)
368 @USE_HTTP_TRUE@%{_libdir}/gst/libgsthttpsrc.so
369
370 #### JACK AUDIO CONNECTION KIT ###
371 @USE_JACK_TRUE@%package -n gstreamer-jack
372 @USE_JACK_TRUE@Summary:  GStreamer plug-in for the Jack Sound Server.
373 @USE_JACK_TRUE@Group:    Libraries/Multimedia
374 @USE_JACK_TRUE@Requires: gstreamer-plugins = %{version}
375 @USE_JACK_TRUE@Requires: jack-audio-connection-kit => 0.28.0
376 @USE_JACK_TRUE@
377 @USE_JACK_TRUE@%description -n gstreamer-jack
378 @USE_JACK_TRUE@Plug-in for the JACK professional sound server.
379 @USE_JACK_TRUE@
380 @USE_JACK_TRUE@%files -n gstreamer-jack
381 @USE_JACK_TRUE@%defattr(-, root, root)
382 @USE_JACK_TRUE@%{_libdir}/gst/libgstjack.so
383
384 ### JPEG ###
385 @USE_JPEG_TRUE@%package -n gstreamer-jpeg
386 @USE_JPEG_TRUE@Summary:       GStreamer plug-in for JPEG images.
387 @USE_JPEG_TRUE@Group:         Libraries/Multimedia
388 @USE_JPEG_TRUE@Requires:      gstreamer-plugins = %{version}
389 @USE_JPEG_TRUE@Requires:      libjpeg
390 @USE_JPEG_TRUE@BuildRequires: libjpeg-devel
391 @USE_JPEG_TRUE@
392 @USE_JPEG_TRUE@%description -n gstreamer-jpeg
393 @USE_JPEG_TRUE@Output plug-in for GStreamer using libjpeg.
394 @USE_JPEG_TRUE@
395 @USE_JPEG_TRUE@%files -n gstreamer-jpeg
396 @USE_JPEG_TRUE@%defattr(-, root, root)
397 @USE_JPEG_TRUE@%{_libdir}/gst/libgstjpeg.so
398
399 ### LADSPA ###
400 @USE_LADSPA_TRUE@%package -n gstreamer-ladspa
401 @USE_LADSPA_TRUE@Summary:       GStreamer wrapper for LADSPA plug-ins.
402 @USE_LADSPA_TRUE@Group:         Libraries/Multimedia
403 @USE_LADSPA_TRUE@Requires:      gstreamer-plugins = %{version}
404 @USE_LADSPA_TRUE@Requires:      ladspa
405 @USE_LADSPA_TRUE@BuildRequires: ladspa-devel
406 @USE_LADSPA_TRUE@
407 @USE_LADSPA_TRUE@%description -n gstreamer-ladspa
408 @USE_LADSPA_TRUE@Plug-in which wraps LADSPA plug-ins for use by GStreamer applications.
409 @USE_LADSPA_TRUE@We suggest you also get the cmt package of ladspa plug-ins
410 @USE_LADSPA_TRUE@and steve harris's swh-plugins package.
411 @USE_LADSPA_TRUE@
412 @USE_LADSPA_TRUE@%files -n gstreamer-ladspa
413 @USE_LADSPA_TRUE@%defattr(-, root, root)
414 @USE_LADSPA_TRUE@%{_libdir}/gst/libgstladspa.so
415
416 ### LAME ###
417 @USE_LAME_TRUE@%package -n gstreamer-lame
418 @USE_LAME_TRUE@Summary:       GStreamer plug-in encoding mp3 songs using lame.
419 @USE_LAME_TRUE@Group:         Libraries/Multimedia
420 @USE_LAME_TRUE@Requires:      gstreamer-plugins = %{version}
421 @USE_LAME_TRUE@Requires:      lame >= 3.89
422 @USE_LAME_TRUE@BuildRequires: lame-devel >= 3.89
423 @USE_LAME_TRUE@
424 @USE_LAME_TRUE@%description -n gstreamer-lame
425 @USE_LAME_TRUE@Plug-in for encoding mp3 with lame under GStreamer.
426 @USE_LAME_TRUE@
427 @USE_LAME_TRUE@%files -n gstreamer-lame
428 @USE_LAME_TRUE@%defattr(-, root, root)
429 @USE_LAME_TRUE@%{_libdir}/gst/libgstlame.so
430
431 ### LIBDV ###
432 @USE_LIBDV_TRUE@%package -n gstreamer-dv
433 @USE_LIBDV_TRUE@Summary:       GStreamer DV plug-in.
434 @USE_LIBDV_TRUE@Group:         Libraries/Multimedia
435 @USE_LIBDV_TRUE@Requires:      gstreamer-plugins = %{version}
436 @USE_LIBDV_TRUE@Requires:      libdv >= 0.9.5
437 @USE_LIBDV_TRUE@BuildRequires: libdv-devel >= 0.9.5
438 @USE_LIBDV_TRUE@
439 @USE_LIBDV_TRUE@%description -n gstreamer-dv
440 @USE_LIBDV_TRUE@Plug-in for digital video support using libdv.
441 @USE_LIBDV_TRUE@
442 @USE_LIBDV_TRUE@%files -n gstreamer-dv
443 @USE_LIBDV_TRUE@%defattr(-, root, root)
444 @USE_LIBDV_TRUE@%{_libdir}/gst/libgstdvdec.so
445
446 ### LIBFAME ###
447 @USE_LIBFAME_TRUE@%package -n gstreamer-libfame
448 @USE_LIBFAME_TRUE@Summary:       GStreamer plug-in to encode MPEG1/MPEG4 video.
449 @USE_LIBFAME_TRUE@Group:         Libraries/Multimedia
450 @USE_LIBFAME_TRUE@Requires:      gstreamer-plugins = %{version}
451 @USE_LIBFAME_TRUE@Requires:      libfame >= 0.9.0 
452 @USE_LIBFAME_TRUE@BuildRequires: libfame-devel >= 0.9.0 
453 @USE_LIBFAME_TRUE@
454 @USE_LIBFAME_TRUE@%description -n gstreamer-libfame
455 @USE_LIBFAME_TRUE@Plug-in for encoding MPEG1/MPEG4 video using libfame.
456 @USE_LIBFAME_TRUE@
457 @USE_LIBFAME_TRUE@%files -n gstreamer-libfame
458 @USE_LIBFAME_TRUE@%defattr(-, root, root)
459 @USE_LIBFAME_TRUE@%{_libdir}/gst/libgstlibfame.so
460
461 ### MAD ###
462 @USE_MAD_TRUE@%package -n gstreamer-mad  
463 @USE_MAD_TRUE@Summary:       GStreamer plug-in using MAD for mp3 decoding.
464 @USE_MAD_TRUE@Group:         Libraries/Multimedia
465 @USE_MAD_TRUE@Requires:      gstreamer-plugins = %{version}
466 @USE_MAD_TRUE@Requires:      mad >= 0.13.0
467 @USE_MAD_TRUE@BuildRequires: mad-devel >= 0.13.0
468 @USE_MAD_TRUE@
469 @USE_MAD_TRUE@%description -n gstreamer-mad
470 @USE_MAD_TRUE@Plug-in for playback of mp3 songs using the very good MAD library.
471 @USE_MAD_TRUE@
472 @USE_MAD_TRUE@%files -n gstreamer-mad
473 @USE_MAD_TRUE@%defattr(-, root, root)  
474 @USE_MAD_TRUE@%{_libdir}/gst/libgstmad.so
475
476 ### MIKMOD ###
477 @USE_MIKMOD_TRUE@%package -n gstreamer-mikmod
478 @USE_MIKMOD_TRUE@Summary:       GStreamer Mikmod plug-in.
479 @USE_MIKMOD_TRUE@Group:         Libraries/Multimedia
480 @USE_MIKMOD_TRUE@Requires:      gstreamer-plugins = %{version}
481 @USE_MIKMOD_TRUE@Requires:      mikmod
482 @USE_MIKMOD_TRUE@BuildRequires: mikmod
483 @USE_MIKMOD_TRUE@
484 @USE_MIKMOD_TRUE@%description -n gstreamer-mikmod
485 @USE_MIKMOD_TRUE@Plug-in for playback of module files supported by mikmod under GStreamer.
486 @USE_MIKMOD_TRUE@
487 @USE_MIKMOD_TRUE@%files -n gstreamer-mikmod
488 @USE_MIKMOD_TRUE@%defattr(-, root, root)
489 @USE_MIKMOD_TRUE@%{_libdir}/gst/libgstmikmod.so
490
491 ### MJPEGTOOLS ###
492 @USE_MJPEGTOOLS_TRUE@%package -n gstreamer-jpegmmx
493 @USE_MJPEGTOOLS_TRUE@Summary:       GStreamer mjpegtools plug-in for mmx jpeg.
494 @USE_MJPEGTOOLS_TRUE@Group:         Libraries/Multimedia
495 @USE_MJPEGTOOLS_TRUE@Requires:      gstreamer-plugins = %{version}
496 @USE_MJPEGTOOLS_TRUE@Requires:      mjpegtools
497 @USE_MJPEGTOOLS_TRUE@BuildRequires: mjpegtools-devel
498 @USE_MJPEGTOOLS_TRUE@
499 @USE_MJPEGTOOLS_TRUE@%description -n gstreamer-jpegmmx
500 @USE_MJPEGTOOLS_TRUE@mjpegtools-based encoding and decoding plug-in.
501 @USE_MJPEGTOOLS_TRUE@
502 @USE_MJPEGTOOLS_TRUE@%files -n gstreamer-jpegmmx
503 @USE_MJPEGTOOLS_TRUE@%defattr(-, root, root)
504 @USE_MJPEGTOOLS_TRUE@%{_libdir}/gst/libgstjpegmmxenc.so
505 @USE_MJPEGTOOLS_TRUE@%{_libdir}/gst/libgstjpegmmxdec.so
506
507 ### MPEG2DEC ###
508 @USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg
509 @USE_MPEG2DEC_TRUE@Summary:GStreamer plug-ins for MPEG video playback and encoding.
510 @USE_MPEG2DEC_TRUE@Group:         Libraries/Multimedia
511 @USE_MPEG2DEC_TRUE@Requires:      gstreamer-plugins = %{version}
512 @USE_MPEG2DEC_TRUE@Requires:      mpeg2dec => 0.2.1
513 @USE_MPEG2DEC_TRUE@BuildRequires: mpeg2dec-devel => 0.2.1
514 @USE_MPEG2DEC_TRUE@Obsoletes:     gstreamer-mpeg1
515 @USE_MPEG2DEC_TRUE@Obsoletes:     gstreamer-mpeg2
516 @USE_MPEG2DEC_TRUE@Obsoletes:     gstreamer-mpeg2dec
517 @USE_MPEG2DEC_TRUE@
518 @USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg
519 @USE_MPEG2DEC_TRUE@Plug-ins for playing and encoding MPEG video.
520 @USE_MPEG2DEC_TRUE@
521 @USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg
522 @USE_MPEG2DEC_TRUE@%defattr(-, root, root)
523 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg1types.so
524 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg1encoder.so
525 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg1systemencode.so
526 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpegaudio.so
527 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpegaudioparse.so
528 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmp1videoparse.so
529 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpegstream.so
530 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2enc.so
531 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2dec.so
532 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2subt.so
533 @USE_MPEG2DEC_TRUE@%{_libdir}/gst/libgstmpeg2types.so
534
535 ### OPENQUICKTIME ###
536 @USE_OPENQUICKTIME_TRUE@%package -n gstreamer-openquicktime
537 @USE_OPENQUICKTIME_TRUE@Summary:       GStreamer OpenQuicktime video Plug-in.
538 @USE_OPENQUICKTIME_TRUE@Group:         Libraries/Multimedia
539 @USE_OPENQUICKTIME_TRUE@Requires:      gstreamer-plugins = %{version}
540 @USE_OPENQUICKTIME_TRUE@Requires:      openquicktime => 1.0
541 @USE_OPENQUICKTIME_TRUE@BuildRequires: openquicktime-devel => 1.0
542 @USE_OPENQUICKTIME_TRUE@
543 @USE_OPENQUICKTIME_TRUE@%description -n gstreamer-openquicktime
544 @USE_OPENQUICKTIME_TRUE@Plug-in which uses the OpenQuicktime library
545 @USE_OPENQUICKTIME_TRUE@from 3ivx to play Quicktime movies.
546 @USE_OPENQUICKTIME_TRUE@(http://openquicktime.sourceforge.net/)
547 @USE_OPENQUICKTIME_TRUE@
548 @USE_OPENQUICKTIME_TRUE@%files -n gstreamer-openquicktime
549 @USE_OPENQUICKTIME_TRUE@%defattr(-, root, root)
550 @USE_OPENQUICKTIME_TRUE@%{_libdir}/gst/libgstopenquicktimedemux.so
551 @USE_OPENQUICKTIME_TRUE@%{_libdir}/gst/libgstopenquicktimetypes.so
552 @USE_OPENQUICKTIME_TRUE@%{_libdir}/gst/libgstopenquicktimedecoder.so
553
554 ### OSS ###
555 @USE_OSS_TRUE@%package -n gstreamer-oss
556 @USE_OSS_TRUE@Summary:       GStreamer plug-ins for input and output using OSS.
557 @USE_OSS_TRUE@Group:         Libraries/Multimedia
558 @USE_OSS_TRUE@Requires:      gstreamer-plugins = %{version}
559 @USE_OSS_TRUE@BuildRequires: glibc-devel
560 @USE_OSS_TRUE@
561 @USE_OSS_TRUE@%description -n gstreamer-oss 
562 @USE_OSS_TRUE@Plug-ins for output and input to the OpenSoundSytem audio
563 @USE_OSS_TRUE@drivers found in the Linux kernels or commercially available
564 @USE_OSS_TRUE@from OpenSound.
565 @USE_OSS_TRUE@
566 @USE_OSS_TRUE@%files -n gstreamer-oss
567 @USE_OSS_TRUE@%defattr(-, root, root)
568 @USE_OSS_TRUE@%{_libdir}/gst/libgstossaudio.so
569 # @USE_OSS_TRUE@%{_libdir}/gst/libgstosshelper*
570
571 ### RAW1394 ###
572 @USE_RAW1394_TRUE@%package -n gstreamer-raw1394
573 @USE_RAW1394_TRUE@Summary:       GStreamer raw1394 Firewire plug-in.
574 @USE_RAW1394_TRUE@Group:         Libraries/Multimedia
575 @USE_RAW1394_TRUE@Requires:      gstreamer-plugins = %{version}
576 @USE_RAW1394_TRUE@Requires:      libraw1394
577 @USE_RAW1394_TRUE@BuildRequires: libraw1394-devel
578 @USE_RAW1394_TRUE@
579 @USE_RAW1394_TRUE@%description -n gstreamer-raw1394
580 @USE_RAW1394_TRUE@Plug-in for digital video support using raw1394.
581 @USE_RAW1394_TRUE@
582 @USE_RAW1394_TRUE@%files -n gstreamer-raw1394
583 @USE_RAW1394_TRUE@%defattr(-, root, root)
584 @USE_RAW1394_TRUE@%{_libdir}/gst/libgst1394.so
585
586 ### RTP ###
587 @USE_RTP_TRUE@%package -n gstreamer-rtp
588 @USE_RTP_TRUE@Summary:  GStreamer RTP plug-in.
589 @USE_RTP_TRUE@Group:    Libraries/Multimedia
590 @USE_RTP_TRUE@Requires: gstreamer-plugins = %{version}
591 @USE_RTP_TRUE@Requires: librtp >= 0.1
592 @USE_RTP_TRUE@
593 @USE_RTP_TRUE@%description -n gstreamer-rtp
594 @USE_RTP_TRUE@Library for transfering data with the RTP protocol.
595 @USE_RTP_TRUE@
596 @USE_RTP_TRUE@%files -n gstreamer-rtp
597 @USE_RTP_TRUE@%defattr(-, root, root)
598 @USE_RTP_TRUE@%{_libdir}/gst/libgstrtp.so
599
600 ### SIDPLAY ###
601 @USE_SIDPLAY_TRUE@%package -n gstreamer-sid
602 @USE_SIDPLAY_TRUE@Summary:       GStreamer Sid C64 music plug-in.
603 @USE_SIDPLAY_TRUE@Group:         Libraries/Multimedia
604 @USE_SIDPLAY_TRUE@Requires:      gstreamer-plugins = %{version}
605 @USE_SIDPLAY_TRUE@Requires:      libsidplay => 1.36.0
606 @USE_SIDPLAY_TRUE@BuildRequires: libsidplay-devel => 1.36.0
607 @USE_SIDPLAY_TRUE@
608 @USE_SIDPLAY_TRUE@%description -n gstreamer-sid
609 @USE_SIDPLAY_TRUE@Plug-in for playback of C64 SID format music files.
610 @USE_SIDPLAY_TRUE@
611 @USE_SIDPLAY_TRUE@%files -n gstreamer-sid
612 @USE_SIDPLAY_TRUE@%defattr(-, root, root)
613 @USE_SIDPLAY_TRUE@%{_libdir}/gst/libgstsid.so
614
615 ### SDL ###
616 @USE_SDL_TRUE@%package -n gstreamer-SDL
617 @USE_SDL_TRUE@Summary:       GStreamer plug-in for outputting video to SDL.
618 @USE_SDL_TRUE@Group:         Libraries/Multimedia
619 @USE_SDL_TRUE@Requires:      gstreamer-plugins = %{version}
620 @USE_SDL_TRUE@Requires:      SDL >= 1.2.0
621 @USE_SDL_TRUE@BuildRequires: SDL-devel >= 1.2.0
622 @USE_SDL_TRUE@#SDL-devel should require XFree86-devel because it links to it
623 @USE_SDL_TRUE@#only it doesn't seem to do that currently
624 @USE_SDL_TRUE@BuildRequires:    XFree86-devel
625 @USE_SDL_TRUE@#it used to be called gstreamer-sdl
626 @USE_SDL_TRUE@Obsoletes:        gstreamer-sdl
627 @USE_SDL_TRUE@
628 @USE_SDL_TRUE@%description -n gstreamer-SDL
629 @USE_SDL_TRUE@Plug-in for sending video output to the Simple Direct Media architecture.
630 @USE_SDL_TRUE@(http://www.libsdl.org). Useful for full-screen playback.
631 @USE_SDL_TRUE@
632 @USE_SDL_TRUE@%files -n gstreamer-SDL
633 @USE_SDL_TRUE@%defattr(-, root, root)
634 @USE_SDL_TRUE@%{_libdir}/gst/libgstsdlvideosink.so
635
636 ### SHOUT ###
637 @USE_SHOUT_TRUE@%package -n gstreamer-icecast
638 @USE_SHOUT_TRUE@Summary:       GStreamer Icecast plug-in using libshout.
639 @USE_SHOUT_TRUE@Group:         Libraries/Multimedia
640 @USE_SHOUT_TRUE@Requires:      gstreamer-plugins = %{version}
641 @USE_SHOUT_TRUE@Requires:      libshout >= 1.0.5
642 @USE_SHOUT_TRUE@BuildRequires: libshout-devel >= 1.0.5
643 @USE_SHOUT_TRUE@
644 @USE_SHOUT_TRUE@%description -n gstreamer-icecast
645 @USE_SHOUT_TRUE@Plug-in for broadcasting audio to the Icecast server.
646 @USE_SHOUT_TRUE@
647 @USE_SHOUT_TRUE@%files -n gstreamer-icecast
648 @USE_SHOUT_TRUE@%defattr(-, root, root)
649 @USE_SHOUT_TRUE@%{_libdir}/gst/libgstshout.so
650
651 ### VORBIS ###
652 @USE_VORBIS_TRUE@%package -n gstreamer-vorbis
653 @USE_VORBIS_TRUE@Summary:       GStreamer plug-in for encoding and decoding Ogg Vorbis audio files.
654 @USE_VORBIS_TRUE@Group:         Libraries/Multimedia
655 @USE_VORBIS_TRUE@Requires:      gstreamer-plugins = %{version}
656 @USE_VORBIS_TRUE@Requires:      libogg >= 1.0
657 @USE_VORBIS_TRUE@Requires:      libvorbis >= 1.0
658 @USE_VORBIS_TRUE@BuildRequires: libogg-devel >= 1.0
659 @USE_VORBIS_TRUE@BuildRequires: libvorbis-devel >= 1.0
660 @USE_VORBIS_TRUE@
661 @USE_VORBIS_TRUE@%description -n gstreamer-vorbis
662 @USE_VORBIS_TRUE@Plug-ins for creating and playing Ogg Vorbis audio files.
663 @USE_VORBIS_TRUE@
664 @USE_VORBIS_TRUE@%files -n gstreamer-vorbis  
665 @USE_VORBIS_TRUE@%defattr(-, root, root)
666 @USE_VORBIS_TRUE@%{_libdir}/gst/libgstvorbis.so
667
668 ### VIDEO 4 LINUX ###
669 @USE_V4L_TRUE@%package -n gstreamer-v4l
670 @USE_V4L_TRUE@Summary:       GStreamer Video for Linux plug-in.
671 @USE_V4L_TRUE@Group:         Libraries/Multimedia
672 @USE_V4L_TRUE@Requires:      gstreamer-plugins = %{version}
673 @USE_V4L_TRUE@BuildRequires: glibc-devel
674 @USE_V4L_TRUE@
675 @USE_V4L_TRUE@%description -n gstreamer-v4l
676 @USE_V4L_TRUE@Plug-in for accessing Video for Linux devices.
677 @USE_V4L_TRUE@
678 @USE_V4L_TRUE@%files -n gstreamer-v4l
679 @USE_V4L_TRUE@%defattr(-, root, root)
680 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lelement.so
681 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lsrc.so
682 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lmjpegsrc.so
683 @USE_V4L_TRUE@%{_libdir}/gst/libgstv4lmjpegsink.so
684
685 ### VIDEO 4 LINUX 2 ###
686 @USE_V4L2_TRUE@%package -n gstreamer-v4l2
687 @USE_V4L2_TRUE@Summary:       GStreamer Video for Linux 2 plug-in.
688 @USE_V4L2_TRUE@Group:         Libraries/Multimedia
689 @USE_V4L2_TRUE@Requires:      gstreamer-plugins = %{version}
690 @USE_V4L2_TRUE@BuildRequires: glibc-devel
691 @USE_V4L2_TRUE@
692 @USE_V4L2_TRUE@%description -n gstreamer-v4l2
693 @USE_V4L2_TRUE@Plug-in for accessing Video for Linux devices.
694 @USE_V4L2_TRUE@
695 @USE_V4L2_TRUE@%files -n gstreamer-v4l2
696 @USE_V4L2_TRUE@%defattr(-, root, root)
697 @USE_V4L2_TRUE@%{_libdir}/gst/libgstv4l2element.so
698 @USE_V4L2_TRUE@%{_libdir}/gst/libgstv4l2src.so
699
700 ### XVIDEO ###
701 @USE_XVIDEO_TRUE@%package -n gstreamer-xvideosink
702 @USE_XVIDEO_TRUE@Summary: GStreamer XFree output plug-in
703 @USE_XVIDEO_TRUE@Group: Libraries/Multimedia
704 @USE_XVIDEO_TRUE@Requires: gstreamer-plugins = %{version}
705 @USE_XVIDEO_TRUE@Requires: Hermes => 1.3.0
706 @USE_XVIDEO_TRUE@%description -n gstreamer-xvideosink
707 @USE_XVIDEO_TRUE@Xfree86 video sink
708 @USE_XVIDEO_TRUE@
709 @USE_XVIDEO_TRUE@%files -n gstreamer-xvideosink
710 @USE_XVIDEO_TRUE@%defattr(-, root, root)
711 @USE_XVIDEO_TRUE@%{_libdir}/gst/libgstxvideosink.so
712
713 @USE_XVIDEO_TRUE@%package -n gstreamer-videosink
714 @USE_XVIDEO_TRUE@Summary:       GStreamer Video Sink
715 @USE_XVIDEO_TRUE@Group:         Libraries/Multimedia
716 @USE_XVIDEO_TRUE@Requires:      gstreamer-plugins = %{version}
717 @USE_XVIDEO_TRUE@Requires:      XFree86
718 @USE_XVIDEO_TRUE@BuildRequires: XFree86-devel
719 @USE_XVIDEO_TRUE@
720 @USE_XVIDEO_TRUE@%description -n gstreamer-videosink
721 @USE_XVIDEO_TRUE@Plug-in for X playback.
722 @USE_XVIDEO_TRUE@
723 @USE_XVIDEO_TRUE@%files -n gstreamer-videosink
724 @USE_XVIDEO_TRUE@%defattr(-, root, root)
725 @USE_XVIDEO_TRUE@%{_libdir}/gst/libgstvideosink.so
726
727 ### packages without external dependencies ###
728
729 ### audio-effects ###
730 %package -n gstreamer-audio-effects
731 Summary:        GStreamer audio effects plug-in.
732 Group:          Libraries/Multimedia
733 Requires:       gstreamer-plugins = %{version}
734 Obsoletes:      gstreamer-misc
735
736 %description -n gstreamer-audio-effects
737 Plug-in with various audio effects including resampling, 
738 sine wave generation, silence generation, channel mixing, stream mixing,
739 integer to float conversion, LAW conversion and level detection plug-ins.
740
741 %files -n gstreamer-audio-effects
742 %defattr(-, root, root)
743 %{_libdir}/gst/libgstresample.so
744 %{_libdir}/gst/libgstsinesrc.so
745 %{_libdir}/gst/libgstsilence.so
746 %{_libdir}/gst/libgststereo.so
747 %{_libdir}/gst/libgststereo2mono.so
748 %{_libdir}/gst/libgstvolume.so
749 %{_libdir}/gst/libgstvolenv.so
750 %{_libdir}/gst/libgstplayondemand.so
751 %{_libdir}/gst/libgstspeed.so
752 %{_libdir}/gst/libgststereosplit.so
753 %{_libdir}/gst/libgstadder.so
754 %{_libdir}/gst/libgstalaw.so
755 %{_libdir}/gst/libgstintfloat.so
756 %{_libdir}/gst/libgstlevel.so
757 %{_libdir}/gst/libgstmono2stereo.so
758 %{_libdir}/gst/libgstmulaw.so
759 %{_libdir}/gst/libgstpassthrough.so
760 # %{_libdir}/gst/libgstfloatcast.so
761 %{_libdir}/gst/libgstcutter.so
762 %{_libdir}/gst/libgstfilter.so
763 %{_libdir}/gst/libmixmatrix.so
764
765 ### audio-formats ###
766 %package -n gstreamer-audio-formats
767 Summary:        GStreamer audio format plug-ins.
768 Group:          Libraries/Multimedia
769 Requires:       gstreamer-plugins = %{version}
770 BuildRequires:  gcc-c++
771
772 %description -n gstreamer-audio-formats
773 Plug-in for playback of wav, au and mod audio files as well as mp3 type.
774
775 %files -n gstreamer-audio-formats
776 %defattr(-, root, root)
777 %{_libdir}/gst/libgstwavparse.so
778 %{_libdir}/gst/libgstauparse.so
779 %{_libdir}/gst/libgstmp3types.so
780 %{_libdir}/gst/libgstmodplug.so
781
782 ### festival ###
783 %package -n gstreamer-festival
784 Summary:        GStreamer plug-in for text-to-speech support using a festival server.
785 Group:          Libraries/Multimedia
786 Requires:       gstreamer-plugins = %{version}
787
788 %description -n gstreamer-festival
789 Plug-in for text-to-speech using the festival server.
790
791 %files -n gstreamer-festival
792 %defattr(-, root, root)
793 %{_libdir}/gst/libgstfestival.so
794
795 ### flx ###
796 %package -n gstreamer-flx
797 Summary:        GStreamer plug-in for FLI/FLX animation format.
798 Group:          Libraries/Multimedia
799 Requires:       gstreamer-plugins = %{version}
800 Requires:       gstreamer-colorspace = %{version}
801 %description -n gstreamer-flx
802 Plug-in for playing FLI/FLX animations under GStreamer.
803
804 %files -n gstreamer-flx
805 %defattr(-, root, root)
806 %{_libdir}/gst/libgstflxdec.so
807
808 ### qcam ###
809 %package -n gstreamer-qcam
810 Summary:        GStreamer QuickCam plug-in.
811 Group:          Libraries/Multimedia
812 Requires:       gstreamer-plugins = %{version}
813
814 %description -n gstreamer-qcam
815 Plug-in for accessing a Quickcam video source.
816
817 %files -n gstreamer-qcam
818 %defattr(-, root, root)
819 %{_libdir}/gst/libgstqcam.so
820
821 ### udp ###
822 %package -n gstreamer-udp
823 Summary:        GStreamer plug-ins for UDP tranport.
824 Group:          Libraries/Multimedia
825 Requires:       gstreamer-plugins = %{version}
826
827 %description -n gstreamer-udp
828 Plug-ins for UDP transport under GStreamer.
829
830 %files -n gstreamer-udp
831 %defattr(-, root, root)
832 %{_libdir}/gst/libgstudp.so
833
834 ### vcd ###
835 %package -n gstreamer-vcd
836 Summary:        GStreamer Video CD plug-in.
837 Group:          Libraries/Multimedia
838 Requires:       gstreamer-plugins = %{version}
839
840 %description -n gstreamer-vcd
841 Video CD parsing and playback plug-in for GStreamer.
842
843 %files -n gstreamer-vcd
844 %defattr(-, root, root)
845 %{_libdir}/gst/libgstvcdsrc.so
846 %{_libdir}/gst/libgstcdxaparse.so
847
848 ### video-effects ###
849 %package -n gstreamer-video-effects
850 Summary:        GStreamer video effects plug-in.
851 Group:          Libraries/Multimedia
852 Requires:       gstreamer-plugins = %{version}
853 Obsoletes:      gstreamer-deinterlace
854 Obsoletes:      gstreamer-misc
855
856 %description -n gstreamer-video-effects
857 Plug-in with various video effects including deinterlacing and effecTV
858 plug-ins.
859
860 %files -n gstreamer-video-effects
861 %defattr(-, root, root)
862 %{_libdir}/gst/libgsteffectv.so
863 %{_libdir}/gst/libgstdeinterlace.so
864 %{_libdir}/gst/libgstmedian.so
865 %{_libdir}/gst/libgstrtjpeg.so
866
867 ### visualisation ###
868 %package -n gstreamer-visualisation
869 Summary:        GStreamer visualisations plug-ins.
870 Group:          Libraries/Multimedia
871 Requires:       gstreamer-plugins = %{version}
872
873 %description -n gstreamer-visualisation
874 Various plug-ins for visual effects to use with audio.
875 This includes smoothwave, spectrum, goom, chart, monoscope, synaesthesia
876 and vumeter.
877
878 %files -n gstreamer-visualisation
879 %defattr(-, root, root)
880 %{_libdir}/gst/libgstsmooth.so
881 %{_libdir}/gst/libgstspectrum.so
882 %{_libdir}/gst/libgstvumeter.so
883 %{_libdir}/gst/libgstgoom.so
884 %{_libdir}/gst/libgstchart.so
885 %{_libdir}/gst/libgstmonoscope.so
886 %{_libdir}/gst/libgstsynaesthesia.so
887
888 ### yuv4mjpeg ###
889 %package -n gstreamer-yuv4mjpeg
890 Summary:        GStreamer plug-in for YUV to MJPEG conversion.
891 Group:          Libraries/Multimedia
892 Requires:       gstreamer-plugins = %{version}
893 Obsoletes:      gstreamer-lavencode
894
895 %description -n gstreamer-yuv4mjpeg
896 It takes YUV video frames and adds a header in front of it so it can be 
897 processed with the lavtools from mjpegtools.
898
899 %files -n gstreamer-yuv4mjpeg
900 %defattr(-, root, root)
901 %{_libdir}/gst/libgsty4menc.so
902
903 # package supporting GConf
904 @USE_GCONF_TRUE@%package -n gstreamer-GConf
905 @USE_GCONF_TRUE@Summary:        GStreamer GConf schemas.
906 @USE_GCONF_TRUE@Group:          Libraries/Multimedia
907 @USE_GCONF_TRUE@Requires:       gstreamer-plugins = %{version}
908 @USE_GCONF_TRUE@Requires:       GConf2
909 @USE_GCONF_TRUE@BuildRequires:  GConf2-devel
910
911 @USE_GCONF_TRUE@%description -n gstreamer-GConf
912 @USE_GCONF_TRUE@Installation of GStreamer GConf schemas.
913 @USE_GCONF_TRUE@These set usable defaults used by all GStreamer-enabled Gnome applications.
914
915 @USE_GCONF_TRUE@%files -n gstreamer-GConf
916 @USE_GCONF_TRUE@%defattr(-, root, root)
917 @USE_GCONF_TRUE@%{_sysconfdir}/gconf/schemas/gstreamer.schemas
918 @USE_GCONF_TRUE@%{_libdir}/libgstgconf.so
919
920 @USE_GCONF_TRUE@%post -n gstreamer-GConf
921 @USE_GCONF_TRUE@export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
922 @USE_GCONF_TRUE@gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer.schemas > /dev/null
923
924 %changelog
925 * Mon Sep 9 2002 Christian Schaller <Uraeus@linuxrising.org>
926 - Added v4l2 plugin
927 * Thu Aug 27 2002 Christian Schaller <Uraeus@linuxrising.org>
928 - Fixed USE_DV_TRUE to USE_LIBDV_TRUE
929 - Added Gconf and floatcast headers to gstreamer-plugins-devel package
930 - Added mixmatrix plugin to audio-effects package
931
932 * Thu Jul 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
933 - fixed oss package to buildrequire instead of require glibc headers
934
935 * Mon Jul 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
936 - fixed -devel package group
937
938 * Fri Jul 05 2002 Thomas Vander Stichele <thomas@apestaart.org>
939 - release 0.4.0 !
940 - added gstreamer-libs.pc
941 - removed all gst-register calls since this should be done automatically now
942
943 * Thu Jul 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
944 - fix issue with SDL package
945 - make all packages STRICTLY require the right version to avoid
946   ABI issues
947 - make gst-plugins obsolete gst-plugin-libs
948 - also send output of gst-register to /dev/null to lower the noise
949
950 * Wed Jul 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
951 - require glibc-devel instead of glibc-kernheaders since the latter is only
952   since 7.3 and glibc-devel pulls in the right package anyway
953
954 * Sun Jun 23 2002 Thomas Vander Stichele <thomas@apestaart.org>
955 - changed header location of plug-in libs
956
957 * Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
958 - major cleanups
959 - adding gst-register on postun everywhere
960 - remove ldconfig since we don't actually install libs in system dirs
961 - removed misc package
962 - added video-effects
963 - dot every Summary
964 - uniformify all descriptions a little
965
966 * Thu Jun 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
967 - various BuildRequires: additions
968
969 * Tue Jun 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
970 - added USE_LIBADSPA_TRUE bits to ladspa package
971
972 * Mon Jun 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
973 - Added libfame package
974
975 * Mon May 12 2002 Christian Fredrik Kalager Schaller <Uraeus@linuxrising.org>
976 - Added jack, dxr3, http packages
977 - Added visualisation plug-ins, effecttv and synaesthesia
978 - Created devel package
979 - Removed gstreamer-plugins-libs package (moved it into gstreamer-plugins)
980 - Replaced prefix/dirname with _macros
981
982 * Mon May 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
983 - added gstreamer-GConf package
984
985 * Wed Mar 13 2002 Thomas Vander Stichele <thomas@apestaart.org>
986 - added more BuildRequires and Requires
987 - rearranged some plug-ins
988 - added changelog ;)