small cleanups
[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 ### XVIDEO ###
686 @USE_XVIDEO_TRUE@%package -n gstreamer-xvideosink
687 @USE_XVIDEO_TRUE@Summary: GStreamer XFree output plug-in
688 @USE_XVIDEO_TRUE@Group: Libraries/Multimedia
689 @USE_XVIDEO_TRUE@Requires: gstreamer-plugins = %{version}
690 @USE_XVIDEO_TRUE@Requires: Hermes => 1.3.0
691 @USE_XVIDEO_TRUE@%description -n gstreamer-xvideosink
692 @USE_XVIDEO_TRUE@Xfree86 video sink
693 @USE_XVIDEO_TRUE@
694 @USE_XVIDEO_TRUE@%files -n gstreamer-xvideosink
695 @USE_XVIDEO_TRUE@%defattr(-, root, root)
696 @USE_XVIDEO_TRUE@%{_libdir}/gst/libgstxvideosink.so
697
698 @USE_XVIDEO_TRUE@%package -n gstreamer-videosink
699 @USE_XVIDEO_TRUE@Summary:       GStreamer Video Sink
700 @USE_XVIDEO_TRUE@Group:         Libraries/Multimedia
701 @USE_XVIDEO_TRUE@Requires:      gstreamer-plugins = %{version}
702 @USE_XVIDEO_TRUE@Requires:      XFree86
703 @USE_XVIDEO_TRUE@BuildRequires: XFree86-devel
704 @USE_XVIDEO_TRUE@
705 @USE_XVIDEO_TRUE@%description -n gstreamer-videosink
706 @USE_XVIDEO_TRUE@Plug-in for X playback.
707 @USE_XVIDEO_TRUE@
708 @USE_XVIDEO_TRUE@%files -n gstreamer-videosink
709 @USE_XVIDEO_TRUE@%defattr(-, root, root)
710 @USE_XVIDEO_TRUE@%{_libdir}/gst/libgstvideosink.so
711
712 ### packages without external dependencies ###
713
714 ### audio-effects ###
715 %package -n gstreamer-audio-effects
716 Summary:        GStreamer audio effects plug-in.
717 Group:          Libraries/Multimedia
718 Requires:       gstreamer-plugins = %{version}
719 Obsoletes:      gstreamer-misc
720
721 %description -n gstreamer-audio-effects
722 Plug-in with various audio effects including resampling, 
723 sine wave generation, silence generation, channel mixing, stream mixing,
724 integer to float conversion, LAW conversion and level detection plug-ins.
725
726 %files -n gstreamer-audio-effects
727 %defattr(-, root, root)
728 %{_libdir}/gst/libgstresample.so
729 %{_libdir}/gst/libgstsinesrc.so
730 %{_libdir}/gst/libgstsilence.so
731 %{_libdir}/gst/libgststereo.so
732 %{_libdir}/gst/libgststereo2mono.so
733 %{_libdir}/gst/libgstvolume.so
734 %{_libdir}/gst/libgstvolenv.so
735 %{_libdir}/gst/libgstplayondemand.so
736 %{_libdir}/gst/libgstspeed.so
737 %{_libdir}/gst/libgststereosplit.so
738 %{_libdir}/gst/libgstadder.so
739 %{_libdir}/gst/libgstalaw.so
740 %{_libdir}/gst/libgstintfloat.so
741 %{_libdir}/gst/libgstlevel.so
742 %{_libdir}/gst/libgstmono2stereo.so
743 %{_libdir}/gst/libgstmulaw.so
744 %{_libdir}/gst/libgstpassthrough.so
745 # %{_libdir}/gst/libgstfloatcast.so
746 %{_libdir}/gst/libgstcutter.so
747 %{_libdir}/gst/libgstfilter.so
748 %{_libdir}/gst/libmixmatrix.so
749
750 ### audio-formats ###
751 %package -n gstreamer-audio-formats
752 Summary:        GStreamer audio format plug-ins.
753 Group:          Libraries/Multimedia
754 Requires:       gstreamer-plugins = %{version}
755 BuildRequires:  gcc-c++
756
757 %description -n gstreamer-audio-formats
758 Plug-in for playback of wav, au and mod audio files as well as mp3 type.
759
760 %files -n gstreamer-audio-formats
761 %defattr(-, root, root)
762 %{_libdir}/gst/libgstwavparse.so
763 %{_libdir}/gst/libgstauparse.so
764 %{_libdir}/gst/libgstmp3types.so
765 %{_libdir}/gst/libgstmodplug.so
766
767 ### festival ###
768 %package -n gstreamer-festival
769 Summary:        GStreamer plug-in for text-to-speech support using a festival server.
770 Group:          Libraries/Multimedia
771 Requires:       gstreamer-plugins = %{version}
772
773 %description -n gstreamer-festival
774 Plug-in for text-to-speech using the festival server.
775
776 %files -n gstreamer-festival
777 %defattr(-, root, root)
778 %{_libdir}/gst/libgstfestival.so
779
780 ### flx ###
781 %package -n gstreamer-flx
782 Summary:        GStreamer plug-in for FLI/FLX animation format.
783 Group:          Libraries/Multimedia
784 Requires:       gstreamer-plugins = %{version}
785 Requires:       gstreamer-colorspace = %{version}
786 %description -n gstreamer-flx
787 Plug-in for playing FLI/FLX animations under GStreamer.
788
789 %files -n gstreamer-flx
790 %defattr(-, root, root)
791 %{_libdir}/gst/libgstflxdec.so
792
793 ### qcam ###
794 %package -n gstreamer-qcam
795 Summary:        GStreamer QuickCam plug-in.
796 Group:          Libraries/Multimedia
797 Requires:       gstreamer-plugins = %{version}
798
799 %description -n gstreamer-qcam
800 Plug-in for accessing a Quickcam video source.
801
802 %files -n gstreamer-qcam
803 %defattr(-, root, root)
804 %{_libdir}/gst/libgstqcam.so
805
806 ### udp ###
807 %package -n gstreamer-udp
808 Summary:        GStreamer plug-ins for UDP tranport.
809 Group:          Libraries/Multimedia
810 Requires:       gstreamer-plugins = %{version}
811
812 %description -n gstreamer-udp
813 Plug-ins for UDP transport under GStreamer.
814
815 %files -n gstreamer-udp
816 %defattr(-, root, root)
817 %{_libdir}/gst/libgstudp.so
818
819 ### vcd ###
820 %package -n gstreamer-vcd
821 Summary:        GStreamer Video CD plug-in.
822 Group:          Libraries/Multimedia
823 Requires:       gstreamer-plugins = %{version}
824
825 %description -n gstreamer-vcd
826 Video CD parsing and playback plug-in for GStreamer.
827
828 %files -n gstreamer-vcd
829 %defattr(-, root, root)
830 %{_libdir}/gst/libgstvcdsrc.so
831 %{_libdir}/gst/libgstcdxaparse.so
832
833 ### video-effects ###
834 %package -n gstreamer-video-effects
835 Summary:        GStreamer video effects plug-in.
836 Group:          Libraries/Multimedia
837 Requires:       gstreamer-plugins = %{version}
838 Obsoletes:      gstreamer-deinterlace
839 Obsoletes:      gstreamer-misc
840
841 %description -n gstreamer-video-effects
842 Plug-in with various video effects including deinterlacing and effecTV
843 plug-ins.
844
845 %files -n gstreamer-video-effects
846 %defattr(-, root, root)
847 %{_libdir}/gst/libgsteffectv.so
848 %{_libdir}/gst/libgstdeinterlace.so
849 %{_libdir}/gst/libgstmedian.so
850 %{_libdir}/gst/libgstrtjpeg.so
851
852 ### visualisation ###
853 %package -n gstreamer-visualisation
854 Summary:        GStreamer visualisations plug-ins.
855 Group:          Libraries/Multimedia
856 Requires:       gstreamer-plugins = %{version}
857
858 %description -n gstreamer-visualisation
859 Various plug-ins for visual effects to use with audio.
860 This includes smoothwave, spectrum, goom, chart, monoscope, synaesthesia
861 and vumeter.
862
863 %files -n gstreamer-visualisation
864 %defattr(-, root, root)
865 %{_libdir}/gst/libgstsmooth.so
866 %{_libdir}/gst/libgstspectrum.so
867 %{_libdir}/gst/libgstvumeter.so
868 %{_libdir}/gst/libgstgoom.so
869 %{_libdir}/gst/libgstchart.so
870 %{_libdir}/gst/libgstmonoscope.so
871 %{_libdir}/gst/libgstsynaesthesia.so
872
873 ### yuv4mjpeg ###
874 %package -n gstreamer-yuv4mjpeg
875 Summary:        GStreamer plug-in for YUV to MJPEG conversion.
876 Group:          Libraries/Multimedia
877 Requires:       gstreamer-plugins = %{version}
878 Obsoletes:      gstreamer-lavencode
879
880 %description -n gstreamer-yuv4mjpeg
881 It takes YUV video frames and adds a header in front of it so it can be 
882 processed with the lavtools from mjpegtools.
883
884 %files -n gstreamer-yuv4mjpeg
885 %defattr(-, root, root)
886 %{_libdir}/gst/libgsty4menc.so
887
888 # package supporting GConf
889 @USE_GCONF_TRUE@%package -n gstreamer-GConf
890 @USE_GCONF_TRUE@Summary:        GStreamer GConf schemas.
891 @USE_GCONF_TRUE@Group:          Libraries/Multimedia
892 @USE_GCONF_TRUE@Requires:       gstreamer-plugins = %{version}
893 @USE_GCONF_TRUE@Requires:       GConf2
894 @USE_GCONF_TRUE@BuildRequires:  GConf2-devel
895
896 @USE_GCONF_TRUE@%description -n gstreamer-GConf
897 @USE_GCONF_TRUE@Installation of GStreamer GConf schemas.
898 @USE_GCONF_TRUE@These set usable defaults used by all GStreamer-enabled Gnome applications.
899
900 @USE_GCONF_TRUE@%files -n gstreamer-GConf
901 @USE_GCONF_TRUE@%defattr(-, root, root)
902 @USE_GCONF_TRUE@%{_sysconfdir}/gconf/schemas/gstreamer.schemas
903 @USE_GCONF_TRUE@%{_libdir}/libgstgconf.so
904
905 @USE_GCONF_TRUE@%post -n gstreamer-GConf
906 @USE_GCONF_TRUE@export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
907 @USE_GCONF_TRUE@gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer.schemas > /dev/null
908
909 %changelog
910 * Thu Aug 27 2002 Christian Schaller <Uraeus@linuxrising.org>
911 - Fixed USE_DV_TRUE to USE_LIBDV_TRUE
912 - Added Gconf and floatcast headers to gstreamer-plugins-devel package
913 - Added mixmatrix plugin to audio-effects package
914
915 * Thu Jul 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
916 - fixed oss package to buildrequire instead of require glibc headers
917
918 * Mon Jul 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
919 - fixed -devel package group
920
921 * Fri Jul 05 2002 Thomas Vander Stichele <thomas@apestaart.org>
922 - release 0.4.0 !
923 - added gstreamer-libs.pc
924 - removed all gst-register calls since this should be done automatically now
925
926 * Thu Jul 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
927 - fix issue with SDL package
928 - make all packages STRICTLY require the right version to avoid
929   ABI issues
930 - make gst-plugins obsolete gst-plugin-libs
931 - also send output of gst-register to /dev/null to lower the noise
932
933 * Wed Jul 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
934 - require glibc-devel instead of glibc-kernheaders since the latter is only
935   since 7.3 and glibc-devel pulls in the right package anyway
936
937 * Sun Jun 23 2002 Thomas Vander Stichele <thomas@apestaart.org>
938 - changed header location of plug-in libs
939
940 * Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
941 - major cleanups
942 - adding gst-register on postun everywhere
943 - remove ldconfig since we don't actually install libs in system dirs
944 - removed misc package
945 - added video-effects
946 - dot every Summary
947 - uniformify all descriptions a little
948
949 * Thu Jun 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
950 - various BuildRequires: additions
951
952 * Tue Jun 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
953 - added USE_LIBADSPA_TRUE bits to ladspa package
954
955 * Mon Jun 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
956 - Added libfame package
957
958 * Mon May 12 2002 Christian Fredrik Kalager Schaller <Uraeus@linuxrising.org>
959 - Added jack, dxr3, http packages
960 - Added visualisation plug-ins, effecttv and synaesthesia
961 - Created devel package
962 - Removed gstreamer-plugins-libs package (moved it into gstreamer-plugins)
963 - Replaced prefix/dirname with _macros
964
965 * Mon May 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
966 - added gstreamer-GConf package
967
968 * Wed Mar 13 2002 Thomas Vander Stichele <thomas@apestaart.org>
969 - added more BuildRequires and Requires
970 - rearranged some plug-ins
971 - added changelog ;)