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