ok, more bugs hopefully we are getting close now
[platform/upstream/gst-plugins-good.git] / gst-plugins.spec.in
1 %define name    gst-plugins  
2 %define ver     0.3.02
3 %define rel     20011221
4 %define prefix  /usr
5 %define sysconfdir /etc
6
7 Summary: GStreamer Streaming-media framework plugins
8 Name: %name
9 Version: %ver
10 Release: %rel
11 Copyright: LGPL
12 Group: Libraries/Multimedia
13 Source: %{name}-%{ver}.tar.gz
14 BuildRoot: /var/tmp/%{name}-%{ver}-root
15 Docdir: %{prefix}/doc
16 Prefix: %prefix
17 Requires: libxml >= 1.8.0
18 BuildRequires: nasm => 0.90
19
20 %description
21 GStreamer is a streaming-media framework, based on graphs of filters which
22 operate on media data. Applications using this library can do anything
23 from real-time sound processing to playing videos, and just about anything
24 else media-related.  Its plugin-based architecture means that new data
25 types or processing capabilities can be added simply by installing new
26 plugins.
27
28 %files
29 %defattr(-, root, root)
30 %doc AUTHORS COPYING README  
31
32 %prep
33 %setup
34 %build
35 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --sysconfdir=%{sysconfdir} --mandir=$RPM_BUILD_ROOT%{prefix}/share/man  
36
37 if [ "$SMP" != "" ]; then
38   (make "MAKE=make -k -j $SMP"; exit 0)
39   make 2>&1 | tee make.log
40 else
41   make 2>&1 | tee make.log
42 fi
43
44 %install
45 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
46
47 make prefix=$RPM_BUILD_ROOT%{prefix} install
48
49 %clean
50 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
51
52 ### ESD ###
53 @USE_ESD_TRUE@%package -n gstreamer-esd
54 @USE_ESD_TRUE@Summary: Gstreamer plugin for ESD sound output
55 @USE_ESD_TRUE@Group: Libraries/Multimedia
56 @USE_ESD_TRUE@Requires: esound >= 0.2.8
57 @USE_ESD_TRUE@Requires: %{name} = %{ver}
58 @USE_ESD_TRUE@
59 @USE_ESD_TRUE@%description -n gstreamer-esd
60 @USE_ESD_TRUE@Output plugin for GStreamer for use with the esound package
61 @USE_ESD_TRUE@
62 @USE_ESD_TRUE@%files -n gstreamer-esd
63 @USE_ESD_TRUE@%defattr(-, root, root)
64 @USE_ESD_TRUE@%{prefix}/lib/gst/libesd*
65 @USE_ESD_TRUE@
66 @USE_ESD_TRUE@%post -n gstreamer-esd
67 @USE_ESD_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
68 @USE_ESD_TRUE@
69 @USE_ESD_TRUE@%postun -n gstreamer-esd
70 @USE_ESD_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
71 @USE_ESD_TRUE@/sbin/ldconfig
72
73 ### MAD ###
74 @USE_MAD_TRUE@%package -n gstreamer-mad  
75 @USE_MAD_TRUE@Summary: Plugin using MAD for mp3 decoding
76 @USE_MAD_TRUE@Group: Libraries/Multimedia
77 @USE_MAD_TRUE@Requires: %{name} = %{ver}
78 @USE_MAD_TRUE@Requires: mad >= 0.13.0
79 @USE_MAD_TRUE@
80 @USE_MAD_TRUE@%description -n gstreamer-mad
81 @USE_MAD_TRUE@Plugin for playback of mp3 songs using the very good MAD library
82 @USE_MAD_TRUE@
83 @USE_MAD_TRUE@%files -n gstreamer-mad
84 @USE_MAD_TRUE@%defattr(-, root, root)  
85 @USE_MAD_TRUE@%{prefix}/lib/gst/libgstmad*
86 @USE_MAD_TRUE@
87 @USE_MAD_TRUE@%post -n gstreamer-mad
88 @USE_MAD_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
89 @USE_MAD_TRUE@
90 @USE_MAD_TRUE@%postun -n gstreamer-mad
91 @USE_MAD_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
92 @USE_MAD_TRUE@/sbin/ldconfig
93
94 ### OSS ###
95 @USE_OSS_TRUE@%package -n gstreamer-oss
96 @USE_OSS_TRUE@Summary: Gstreamer plugins for input and output using OSS
97 @USE_OSS_TRUE@Group: Libraries/Multimedia
98 @USE_OSS_TRUE@Requires: %{name} = %{ver}
99 @USE_OSS_TRUE@
100 @USE_OSS_TRUE@%description -n gstreamer-oss 
101 @USE_OSS_TRUE@Plugins for output and input to the OpenSoundSytem audio
102 @USE_OSS_TRUE@drivers found in the Linux kernels or commercially available
103 @USE_OSS_TRUE@from OpenSound.
104 @USE_OSS_TRUE@
105 @USE_OSS_TRUE@%files -n gstreamer-oss
106 @USE_OSS_TRUE@%defattr(-, root, root)
107 @USE_OSS_TRUE@%{prefix}/lib/gst/libgstoss*
108 @USE_OSS_TRUE@
109 @USE_OSS_TRUE@%post -n gstreamer-oss
110 @USE_OSS_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
111 @USE_OSS_TRUE@
112 @USE_OSS_TRUE@%postun -n gstreamer-oss
113 @USE_OSS_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
114 @USE_OSS_TRUE@/sbin/ldconfig
115
116 ### Vorbis ###
117 @USE_VORBIS_TRUE@%package -n gstreamer-vorbis
118 @USE_VORBIS_TRUE@Summary: Gstreamer plugin for encoding and decoding Ogg Vorbis audio files
119 @USE_VORBIS_TRUE@Group: Libraries/Multimedia
120 @USE_VORBIS_TRUE@Requires: libogg >= 1.0beta4
121 @USE_VORBIS_TRUE@Requires: libvorbis >= 1.0beta4
122 @USE_VORBIS_TRUE@Requires: %{name} = %{ver}
123 @USE_VORBIS_TRUE@
124 @USE_VORBIS_TRUE@%description -n gstreamer-vorbis
125 @USE_VORBIS_TRUE@Plugins for creating and playing Ogg Vorbis audio files.
126 @USE_VORBIS_TRUE@
127 @USE_VORBIS_TRUE@%files -n gstreamer-vorbis  
128 @USE_VORBIS_TRUE@%defattr(-, root, root)
129 @USE_VORBIS_TRUE@%{prefix}/lib/gst/libgstvorbis*
130 @USE_VORBIS_TRUE@
131 @USE_VORBIS_TRUE@%post -n gstreamer-vorbis
132 @USE_VORBIS_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
133 @USE_VORBIS_TRUE@
134 @USE_VORBIS_TRUE@%postun -n gstreamer-vorbis
135 @USE_VORBIS_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
136 @USE_VORBIS_TRUE@/sbin/ldconfig
137
138 @USE_AALIB_TRUE@%package -n gstreamer-aalib
139 @USE_AALIB_TRUE@Summary: Gstreamer plugin for Ascii-art output
140 @USE_AALIB_TRUE@Group: Libraries/Multimedia
141 @USE_AALIB_TRUE@Requires: aalib >= 1.3
142 @USE_AALIB_TRUE@BuildRequires: aalib-devel >= 1.3
143 @USE_AALIB_TRUE@Requires: %{name} = %{ver}
144 @USE_AALIB_TRUE@
145 @USE_AALIB_TRUE@%description -n gstreamer-aalib
146 @USE_AALIB_TRUE@Plugin for viewing movies 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@%{prefix}/lib/gst/libgstaa*
151 @USE_AALIB_TRUE@
152 @USE_AALIB_TRUE@%post -n gstreamer-aalib
153 @USE_AALIB_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
154
155 @USE_AUDIOFILE_TRUE@%package -n gstreamer-afs
156 @USE_AUDIOFILE_TRUE@Summary: Gstreamer plugin audiofile support
157 @USE_AUDIOFILE_TRUE@Group: Libraries/Multimedia
158 @USE_AUDIOFILE_TRUE@Requires: %{name} = %{ver}
159 @USE_AUDIOFILE_TRUE@Requires: audiofile >= 0.2.1
160 @USE_AUDIOFILE_TRUE@
161 @USE_AUDIOFILE_TRUE@%description -n gstreamer-afs
162 @USE_AUDIOFILE_TRUE@Plugin for supporting reading and writing all files audiofile support
163 @USE_AUDIOFILE_TRUE@
164 @USE_AUDIOFILE_TRUE@%files -n gstreamer-afs
165 @USE_AUDIOFILE_TRUE@%defattr(-, root, root)
166 @USE_AUDIOFILE_TRUE@%{prefix}/lib/gst/libafs*
167 @USE_AUDIOFILE_TRUE@
168 @USE_AUDIOFILE_TRUE@%post -n  gstreamer-afs
169 @USE_AUDIOFILE_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
170
171 @USE_AVIFILE_TRUE@%package -n gstreamer-avi
172 @USE_AVIFILE_TRUE@Summary: Gstreamer plugin for AVI format movie playback
173 @USE_AVIFILE_TRUE@Group: Libraries/Multimedia
174 @USE_AVIFILE_TRUE@Requires: %{name} = %{ver}
175 @USE_AVIFILE_TRUE@Requires: avifile = 0.6.20011111DD
176 @USE_AVIFILE_TRUE@
177 @USE_AVIFILE_TRUE@%description -n gstreamer-avi
178 @USE_AVIFILE_TRUE@Plugins for playback of AVI format media files.
179 @USE_AVIFILE_TRUE@
180 @USE_AVIFILE_TRUE@%files -n gstreamer-avi
181 @USE_AVIFILE_TRUE@%defattr(-, root, root)
182 @USE_AVIFILE_TRUE@%{prefix}/lib/gst/libgstavi*
183 @USE_AVIFILE_TRUE@%{prefix}/lib/gst/libwin*
184 @USE_AVIFILE_TRUE@
185 @USE_AVIFILE_TRUE@%post -n gstreamer-avi
186 @USE_AVIFILE_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
187
188 @USE_CDPARANOIA_TRUE@%package -n gstreamer-cdparanoia
189 @USE_CDPARANOIA_TRUE@Summary: Gstreamer plugin for CD audio input using CDParanoia IV
190 @USE_CDPARANOIA_TRUE@Group: Libraries/Multimedia
191 @USE_CDPARANOIA_TRUE@Requires: cdparanoia >= alpha9.7
192 @USE_CDPARANOIA_TRUE@Requires: %{name} = %{ver}
193 @USE_CDPARANOIA_TRUE@BuildRequires: cdparanoia-devel >= alpha9.7
194 @USE_CDPARANOIA_TRUE@
195 @USE_CDPARANOIA_TRUE@%description -n gstreamer-cdparanoia
196 @USE_CDPARANOIA_TRUE@Plugin for ripping audio tracks using cdparanoia under GStreamer
197 @USE_CDPARANOIA_TRUE@
198 @USE_CDPARANOIA_TRUE@%files -n gstreamer-cdparanoia
199 @USE_CDPARANOIA_TRUE@%defattr(-, root, root)
200 @USE_CDPARANOIA_TRUE@%{prefix}/lib/gst/libgstcdparanoia*
201 @USE_CDPARANOIA_TRUE@
202 @USE_CDPARANOIA_TRUE@%post -n gstreamer-cdparanoia
203 @USE_CDPARANOIA_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
204
205 @USE_FLAC_TRUE@%package -n gstreamer-flac
206 @USE_FLAC_TRUE@Summary: Gstreamer plugin for FLAC lossless audio format
207 @USE_FLAC_TRUE@Group: Libraries/Multimedia
208 @USE_FLAC_TRUE@Requires: %{name} = %{ver}
209 @USE_FLAC_TRUE@
210 @USE_FLAC_TRUE@%description -n gstreamer-flac
211 @USE_FLAC_TRUE@Plugin for the free FLAC lossless audio format.
212 @USE_FLAC_TRUE@
213 @USE_FLAC_TRUE@%files -n gstreamer-flac
214 @USE_FLAC_TRUE@%defattr(-, root, root)
215 @USE_FLAC_TRUE@%{prefix}/lib/gst/libgstflac*
216 @USE_FLAC_TRUE@
217 @USE_FLAC_TRUE@%post -n gstreamer-flac
218 @USE_FLAC_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
219
220 @USE_GNOME_VFS_TRUE@%package -n gstreamer-gnomevfs
221 @USE_GNOME_VFS_TRUE@Summary: GStreamer plugins for GNOME VFS input and output
222 @USE_GNOME_VFS_TRUE@Group: Libraries/Multimedia
223 @USE_GNOME_VFS_TRUE@Requires: gnome-vfs > 1.0
224 @USE_GNOME_VFS_TRUE@Requires: %{name} = %{ver}
225 @USE_GNOME_VFS_TRUE@BuildRequires: gnome-vfs-devel > 1.0
226 @USE_GNOME_VFS_TRUE@
227 @USE_GNOME_VFS_TRUE@%description -n gstreamer-gnomevfs
228 @USE_GNOME_VFS_TRUE@Plugins for reading and writing through GNOME VFS.
229 @USE_GNOME_VFS_TRUE@
230 @USE_GNOME_VFS_TRUE@%files -n gstreamer-gnomevfs
231 @USE_GNOME_VFS_TRUE@%defattr(-, root, root)
232 @USE_GNOME_VFS_TRUE@%{prefix}/lib/gst/libgstgnomevfs*
233 @USE_GNOME_VFS_TRUE@
234 @USE_GNOME_VFS_TRUE@%post -n gstreamer-gnomevfs
235 @USE_GNOME_VFS_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
236
237 @USE_GSM_TRUE@%package -n gstreamer-gsm
238 @USE_GSM_TRUE@Summary: Gstreamer plugin for GSM lossy audio format
239 @USE_GSM_TRUE@Group: Libraries/Multimedia
240 @USE_GSM_TRUE@Requires: gsm >= 1.0.10
241 @USE_GSM_TRUE@Requires: %{name} = %{ver}
242 @USE_GSM_TRUE@
243 @USE_GSM_TRUE@%description -n gstreamer-gsm
244 @USE_GSM_TRUE@Output plugin for GStreamer to convert to GSM lossy audio format.
245 @USE_GSM_TRUE@
246 @USE_GSM_TRUE@%files -n gstreamer-gsm
247 @USE_GSM_TRUE@%defattr(-, root, root)
248 @USE_GSM_TRUE@%{prefix}/lib/gst/libgstgsm*
249 @USE_GSM_TRUE@
250 @USE_GSM_TRUE@%post -n gstreamer-gsm
251 @USE_GSM_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
252
253 @USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg
254 @USE_MPEG2DEC_TRUE@Summary: GStreamer plugins for MPEG video playback and encoding
255 @USE_MPEG2DEC_TRUE@Group: Libraries/Multimedia
256 @USE_MPEG2DEC_TRUE@Requires: %{name} = %{ver}
257 @USE_MPEG2DEC_TRUE@Requires: mpeg2dec => 0.2.0
258 @USE_MPEG2DEC_TRUE@Obsoletes: gstreamer-mpeg1
259 @USE_MPEG2DEC_TRUE@Obsoletes: gstreamer-mpeg2
260 @USE_MPEG2DEC_TRUE@
261 @USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg
262 @USE_MPEG2DEC_TRUE@Plugins for playing and encoding MPEG video
263 @USE_MPEG2DEC_TRUE@
264 @USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg
265 @USE_MPEG2DEC_TRUE@%defattr(-, root, root)
266 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg1types*
267 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg1encoder*
268 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpegaudio*
269 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmp1*
270 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpegstream*
271 # @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2play*
272 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2enc*
273 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2subt*
274 # @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmp2videoparse*
275 @USE_MPEG2DEC_TRUE@
276 @USE_MPEG2DEC_TRUE@%post -n  gstreamer-mpeg
277 @USE_MPEG2DEC_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
278
279 @USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg2dec
280 @USE_MPEG2DEC_TRUE@Summary: GStreamer plugins for Mpeg level 2 playback
281 @USE_MPEG2DEC_TRUE@Group: Libraries/Multimedia
282 @USE_MPEG2DEC_TRUE@Requires: %{name} = %{ver}
283 @USE_MPEG2DEC_TRUE@Requires: mpeg2dec >= 0.2.0
284 @USE_MPEG2DEC_TRUE@
285 @USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg2dec
286 @USE_MPEG2DEC_TRUE@Plugins for playing mpeg level 2 encoded movies
287 @USE_MPEG2DEC_TRUE@
288 @USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg2dec
289 @USE_MPEG2DEC_TRUE@%defattr(-, root, root)
290 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2dec*
291 @USE_MPEG2DEC_TRUE@
292 @USE_MPEG2DEC_TRUE@%post -n  gstreamer-mpeg2dec
293 @USE_MPEG2DEC_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
294
295 @USE_SDL_TRUE@%package -n gstreamer-sdl
296 @USE_SDL_TRUE@Summary: Gstreamer plugin for outputing to SDL
297 @USE_SDL_TRUE@Group: Libraries/Multimedia
298 @USE_SDL_TRUE@Requires: SDL >= 1.2.0
299 @USE_SDL_TRUE@Requires: %{name} = %{ver}
300 @USE_SDL_TRUE@BuildRequires: SDL-devel >= 1.2.0
301 @USE_SDL_TRUE@
302 @USE_SDL_TRUE@%description -n gstreamer-sdl
303 @USE_SDL_TRUE@Plugin for sending output to the Simple Direct Media architecture.
304 @USE_SDL_TRUE@(http://www.libsdl.org). Usefull for fullscreen playback.
305 @USE_SDL_TRUE@
306 @USE_SDL_TRUE@%files -n gstreamer-sdl
307 @USE_SDL_TRUE@%defattr(-, root, root)
308 @USE_SDL_TRUE@%{prefix}/lib/gst/libsdl*
309 @USE_SDL_TRUE@
310 @USE_SDL_TRUE@%post -n gstreamer-sdl
311 @USE_SDL_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
312
313 @USE_OPENQUICKTIME_TRUE@%package -n gstreamer-quicktime
314 @USE_OPENQUICKTIME_TRUE@Summary: GStreamer Quicktime video Plugin
315 @USE_OPENQUICKTIME_TRUE@Group: Libraries/Multimedia
316 @USE_OPENQUICKTIME_TRUE@Requires: %{name} = %{ver}
317 @USE_OPENQUICKTIME_TRUE@Requires: OpenQuicktime = 20010429
318 @USE_OPENQUICKTIME_TRUE@
319 @USE_OPENQUICKTIME_TRUE@%description -n gstreamer-quicktime
320 @USE_OPENQUICKTIME_TRUE@Plugin which uses the OpenQucktime library
321 @USE_OPENQUICKTIME_TRUE@from 3ivx to play Quicktime movies.
322 @USE_OPENQUICKTIME_TRUE@(http://openquicktime.sourceforge.net)
323 @USE_OPENQUICKTIME_TRUE@
324 @USE_OPENQUICKTIME_TRUE@%files -n gstreamer-quicktime
325 @USE_OPENQUICKTIME_TRUE@%defattr(-, root, root)
326 @USE_OPENQUICKTIME_TRUE@%{prefix}/lib/gst/libopenquicktime*
327 @USE_OPENQUICKTIME_TRUE@
328 @USE_OPENQUICKTIME_TRUE@%post -n gstreamer-quicktime
329 @USE_OPENQUICKTIME_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
330
331 # Video 4 Linux
332 @USE_V4L_TRUE@%package -n gstreamer-v4l
333 @USE_V4L_TRUE@Summary: GStreamer video for linux input plugin
334 @USE_V4L_TRUE@Group: Libraries/Multimedia
335 @USE_V4L_TRUE@Requires: %{name} = %{ver}
336 @USE_V4L_TRUE@
337 @USE_V4L_TRUE@%description -n gstreamer-v4l
338 @USE_V4L_TRUE@Plugin for accessing video for Linux streams.
339 @USE_V4L_TRUE@
340 @USE_V4L_TRUE@%files -n gstreamer-v4l
341 @USE_V4L_TRUE@%defattr(-, root, root)
342 @USE_V4L_TRUE@%{prefix}/lib/gst/libv4l*
343 @USE_V4L_TRUE@
344 @USE_V4L_TRUE@%post -n gstreamer-v4l
345 @USE_V4L_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
346
347 # ALSA Audio plugin
348 @USE_ALSA_TRUE@%package -n gstreamer-alsa
349 @USE_ALSA_TRUE@Summary: GStreamer plugins for the ALSA sound architecture
350 @USE_ALSA_TRUE@Group: Libraries/Multimedia
351 @USE_ALSA_TRUE@Requires: %{name} = %{ver}
352 @USE_ALSA_TRUE@
353 @USE_ALSA_TRUE@%description -n gstreamer-alsa
354 @USE_ALSA_TRUE@Input and output plugin for the ALSA soundcard driver architecture.
355 @USE_ALSA_TRUE@
356 @USE_ALSA_TRUE@%files -n gstreamer-alsa
357 @USE_ALSA_TRUE@%defattr(-, root, root)
358 @USE_ALSA_TRUE@%{prefix}/lib/gst/libgstalsa*
359 @USE_ALSA_TRUE@
360 @USE_ALSA_TRUE@%post -n gstreamer-alsa
361 @USE_ALSA_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
362
363 @USE_LIBDVD_TRUE@%package -n gstreamer-libdvd
364 @USE_LIBDVD_TRUE@Summary: GStreamer plugins for DVD playback
365 @USE_LIBDVD_TRUE@Group: Libraries/Multimedia
366 @USE_LIBDVD_TRUE@Requires: %{name} = %{ver}
367 @USE_LIBDVD_TRUE@
368 @USE_LIBDVD_TRUE@%description -n gstreamer-libdvd
369 @USE_LIBDVD_TRUE@Input and output plugin for the ALSA soundcard driver architecture.
370 @USE_LIBDVD_TRUE@
371 @USE_LIBDVD_TRUE@%files -n gstreamer-libdvd
372 @USE_LIBDVD_TRUE@%defattr(-, root, root)
373 @USE_LIBDVD_TRUE@%{prefix}/lib/gst/libdvd*
374 @USE_LIBDVD_TRUE@
375 @USE_LIBDVD_TRUE@%post -n gstreamer-libdvd
376 @USE_LIBDVD_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
377
378 @USE_A52DEC_TRUE@%package -n gstreamer-a52dec
379 @USE_A52DEC_TRUE@Summary: GStreamer VOB decoder plugin
380 @USE_A52DEC_TRUE@Group: Libraries/Multimedia
381 @USE_A52DEC_TRUE@Requires: %{name} = %{ver}
382 @USE_A52DEC_TRUE@Requires: a52dec >= 0.7.0
383 @USE_A52DEC_TRUE@
384 @USE_A52DEC_TRUE@%description -n gstreamer-a52dec
385 @USE_A52DEC_TRUE@Plugin for decoding of VOB files
386 @USE_A52DEC_TRUE@
387 @USE_A52DEC_TRUE@%files -n gstreamer-a52dec
388 @USE_A52DEC_TRUE@%defattr(-, root, root)
389 @USE_A52DEC_TRUE@%{prefix}/lib/gst/libgsta52dec*
390 @USE_A52DEC_TRUE@
391 @USE_A52DEC_TRUE@%post -n gstreamer-a52dec
392 @USE_A52DEC_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
393
394 @USE_MIKMOD_TRUE@%package -n gstreamer-mikmod
395 @USE_MIKMOD_TRUE@Summary: GStreamer Mikmod plugin
396 @USE_MIKMOD_TRUE@Group: Libraries/Multimedia
397 @USE_MIKMOD_TRUE@Requires: %{name} = %{ver}
398 @USE_MIKMOD_TRUE@
399 @USE_MIKMOD_TRUE@%description -n gstreamer-mikmod
400 @USE_MIKMOD_TRUE@Plugin for playback of module files supported by mikmod under GStreamer
401 @USE_MIKMOD_TRUE@
402 @USE_MIKMOD_TRUE@%files -n gstreamer-mikmod
403 @USE_MIKMOD_TRUE@%defattr(-, root, root)
404 @USE_MIKMOD_TRUE@%{prefix}/lib/gst/libgstmikmod*
405 @USE_MIKMOD_TRUE@
406 @USE_MIKMOD_TRUE@%post -n gstreamer-mikmod
407 @USE_MIKMOD_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
408
409 @USE_SIDPLAY_TRUE@%package -n gstreamer-sid
410 @USE_SIDPLAY_TRUE@Summary: GStreamer Sid C64 music plugin
411 @USE_SIDPLAY_TRUE@Group: Libraries/Multimedia
412 @USE_SIDPLAY_TRUE@Requires: %{name} = %{ver}
413 @USE_SIDPLAY_TRUE@Requires: libsidplay => 1.36.0
414 @USE_SIDPLAY_TRUE@%description -n gstreamer-sid
415 @USE_SIDPLAY_TRUE@Plugin for playback of C64 SID format music files
416 @USE_SIDPLAY_TRUE@
417 @USE_SIDPLAY_TRUE@%files -n gstreamer-sid
418 @USE_SIDPLAY_TRUE@%defattr(-, root, root)
419 @USE_SIDPLAY_TRUE@%{prefix}/lib/gst/libgstsid*
420 @USE_SIDPLAY_TRUE@
421 @USE_SIDPLAY_TRUE@%post -n gstreamer-sid
422 @USE_SIDPLAY_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
423
424 @USE_RTP_TRUE@%package -n gstreamer-rtp
425 @USE_RTP_TRUE@Summary: GStreamer RTP plugin
426 @USE_RTP_TRUE@Group: Libraries/Multimedia
427 @USE_RTP_TRUE@Requires: %{name} = %{ver}
428 @USE_RTP_TRUE@Requires: librtp >= 0.1
429 @USE_RTP_TRUE@
430 @USE_RTP_TRUE@%description -n gstreamer-rtp
431 @USE_RTP_TRUE@Library for transfering data with the RTP protocol
432 @USE_RTP_TRUE@
433 @USE_RTP_TRUE@%files -n gstreamer-rtp
434 @USE_RTP_TRUE@%defattr(-, root, root)
435 @USE_RTP_TRUE@%{prefix}/lib/gst/libgstrtp*
436 @USE_RTP_TRUE@
437 @USE_RTP_TRUE@%post -n gstreamer-rtp
438 @USE_RTP_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
439
440 @USE_ARTS_TRUE@%package -n gstreamer-artsd
441 @USE_ARTS_TRUE@Summary: GStreamer artsd output plugin
442 @USE_ARTS_TRUE@Group: Libraries/Multimedia
443 @USE_ARTS_TRUE@Requires: %{name} = %{ver}
444 @USE_ARTS_TRUE@
445 @USE_ARTS_TRUE@%description -n gstreamer-artsd
446 @USE_ARTS_TRUE@Plugin for outputing to artsd sound server
447 @USE_ARTS_TRUE@
448 @USE_ARTS_TRUE@%files -n gstreamer-artsd
449 @USE_ARTS_TRUE@%defattr(-, root, root)
450 @USE_ARTS_TRUE@%{prefix}/lib/gst/libartsd*
451 @USE_ARTS_TRUE@
452 @USE_ARTS_TRUE@%post -n gstreamer-artsd
453 @USE_ARTS_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
454
455 @USE_RAW1394_TRUE@%package -n gstreamer-dv
456 @USE_RAW1394_TRUE@Summary: GStreamer dv plugin
457 @USE_RAW1394_TRUE@Group: Libraries/Multimedia
458 @USE_RAW1394_TRUE@Requires: %{name} = %{ver}
459 @USE_RAW1394_TRUE@
460 @USE_RAW1394_TRUE@%description -n gstreamer-dv
461 @USE_RAW1394_TRUE@Plugin for digital video support
462 @USE_RAW1394_TRUE@
463 @USE_RAW1394_TRUE@%files -n gstreamer-dv
464 @USE_RAW1394_TRUE@%defattr(-, root, root)
465 @USE_RAW1394_TRUE@%{prefix}/lib/gst/gstdv*
466 @USE_RAW1394_TRUE@
467 @USE_RAW1394_TRUE@%post -n gstreamer-dv
468 @USE_RAW1394_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
469
470 %package -n gstreamer-resample
471 Summary: GStreamer resample plugin
472 Group: Libraries/Multimedia
473 Requires: %{name} = %{ver}
474
475 %description -n gstreamer-resample
476 Library for resampling of sound
477
478 %files -n gstreamer-resample
479 %defattr(-, root, root)
480 %{prefix}/lib/gst/libgstresample*
481
482 %post -n gstreamer-resample
483 %{prefix}/bin/gstreamer-register --gst-mask=0
484
485 %package -n gstreamer-sine
486 Summary: GStreamer Sine effect plugin
487 Group: Libraries/Multimedia
488 Requires: %{name} = %{ver}
489
490 %description -n gstreamer-sine
491 Plugin for generating sine waves.
492
493 %files -n gstreamer-sine
494 %defattr(-, root, root)
495 %{prefix}/lib/gst/libgstsine*
496
497 %post -n gstreamer-sine
498 %{prefix}/bin/gstreamer-register --gst-mask=0
499
500 %package -n gstreamer-lavencode
501 Summary: GStreamer YUV to LAV converter
502 Group: Libraries/Multimedia
503 Requires: %{name} = %{ver}
504
505 %description -n gstreamer-lavencode
506 It takes YUV video frames and adds a header in front of it so it can be processed with the lavtools from mjpeg
507
508 %files -n gstreamer-lavencode
509 %defattr(-, root, root)
510 %{prefix}/lib/gst/libgsty4m*
511
512 %post -n gstreamer-lavencode
513 %{prefix}/bin/gstreamer-register --gst-mask=0
514
515 %package -n gstreamer-silence
516 Summary: GStreamer Silence plugin
517 Group: Libraries/Multimedia
518 Requires: %{name} = %{ver}
519
520 %description -n gstreamer-silence
521 Plugin for generation of silence
522
523 %files -n gstreamer-silence
524 %defattr(-, root, root)
525 %{prefix}/lib/gst/libgstsilence*
526
527 %post -n gstreamer-silence
528 %{prefix}/bin/gstreamer-register --gst-mask=0
529
530 %package -n gstreamer-qcam
531 Summary: GStreamer QuickCam plugin
532 Group: Libraries/Multimedia
533 Requires: %{name} = %{ver}
534
535 %description -n gstreamer-qcam
536 Plugin for accessing a Quickcam source
537
538 %files -n gstreamer-qcam
539 %defattr(-, root, root)
540 %{prefix}/lib/gst/libgstqcam*
541
542 %post -n gstreamer-qcam
543 %{prefix}/bin/gstreamer-register --gst-mask=0
544
545 %package -n gstreamer-au
546 Summary: GStreamer au audiofile plugin
547 Group: Libraries/Multimedia
548 Requires: %{name} = %{ver}
549
550 %description -n gstreamer-au
551 Plugin for playback of the SUN au audio format.
552
553 %files -n gstreamer-au
554 %defattr(-, root, root)
555 %{prefix}/lib/gst/libgstparseau*
556
557 %post -n gstreamer-au
558 %{prefix}/bin/gstreamer-register --gst-mask=0
559
560
561
562 %package -n gstreamer-vcd
563 Summary: GStreamer Video CD plugin
564 Group: Libraries/Multimedia
565 Requires: %{name} = %{ver}
566
567 %description -n gstreamer-vcd
568 Video CD playback plugin
569
570 %files -n gstreamer-vcd
571 %defattr(-, root, root)
572 %{prefix}/lib/gst/libvcd*
573
574 %package -n gstreamer-ladspa
575 Summary: Gstreamer wrapper for LADSPA plugins
576 Group: Libraries/Multimedia
577 Requires: %{name} = %{ver}
578
579 %files -n gstreamer-ladspa
580 %defattr(-, root, root)
581 %{prefix}/lib/gst/libgstladspa*
582
583 %description -n gstreamer-ladspa
584 Plugin which wraps LADSPA plugins for use by GStreamer applications.
585
586 %post -n gstreamer-ladspa
587 %{prefix}/bin/gstreamer-register --gst-mask=0
588
589 %package -n gstreamer-udp
590 Summary: Gstreamer pluginis for UDP tranport
591 Group: Libraries/Multimedia
592 Requires: %{name} = %{ver}
593
594 %description -n gstreamer-udp
595 Plugins for UDP transport
596
597 %files -n gstreamer-udp
598 %defattr(-, root, root)
599 %{prefix}/lib/gst/libgstudp*
600
601 %post -n gstreamer-udp
602 %{prefix}/bin/gstreamer-register --gst-mask=0
603
604 %package -n gstreamer-mp3
605 Summary: GStreamer plugins for mp3 playback
606 Group: Libraries/Multimedia
607 Requires: %{name} = %{ver}
608
609 %description -n gstreamer-mp3
610 Plugins for decoding mp3 files. We do recommend you
611 use Ogg Vorbis format instead however since it is both unencumbered by patents
612 and better.
613
614 %files -n gstreamer-mp3
615 %defattr(-, root, root)
616 # %{prefix}/lib/gst/libgstmpg123*
617 # %{prefix}/lib/gst/libgstmp3parse*
618 %{prefix}/lib/gst/libgstmp3types*
619
620 %post -n  gstreamer-mp3
621 %{prefix}/bin/gstreamer-register --gst-mask=0
622
623 %package -n gstreamer-flx
624 Summary: Gstreamer plugin for FLI/FLX animation format
625 Group: Libraries/Multimedia
626 Requires: %{name} = %{ver}
627
628 %description -n gstreamer-flx
629 Plugin for playing FLI/FLX animations under GStreamer
630
631 %files -n gstreamer-flx
632 %defattr(-, root, root)
633 %{prefix}/lib/gst/libgstflx*
634
635 %post -n gstreamer-flx
636 %{prefix}/bin/gstreamer-register --gst-mask=0
637
638 %package -n gstreamer-deinterlace
639 Summary: GStreamer Video deinterlacer
640 Group: Libraries/Multimedia
641 Requires: %{name} = %{ver}
642
643 %description -n gstreamer-deinterlace
644 Video deinterlace plugin
645
646 %files -n gstreamer-deinterlace
647 %defattr(-, root, root)
648 %{prefix}/lib/gst/libgstdeinterlace*
649
650 %post -n gstreamer-deinterlace
651 %{prefix}/bin/gstreamer-register --gst-mask=0
652
653 @USE_FESTIVAL_TRUE@%package -n gstreamer-festival
654 @USE_FESTIVAL_TRUE@Summary: GStreamer plugin for text-to-speech support using Festival
655 @USE_FESTIVAL_TRUE@Group: Libraries/Multimedia
656 @USE_FESTIVAL_TRUE@Requires: %{name} = %{ver}
657 @USE_FESTIVAL_TRUE@Requires: festival >= 1.4.1
658 @USE_FESTIVAL_TRUE@
659 @USE_FESTIVAL_TRUE@%description -n gstreamer-festival
660 @USE_FESTIVAL_TRUE@Element for text-to-speech using the festival server.
661 @USE_FESTIVAL_TRUE@
662 @USE_FESTIVAL_TRUE@%files -n gstreamer-festival
663 @USE_FESTIVAL_TRUE@%defattr(-, root, root)
664 @USE_FESTIVAL_TRUE@%{prefix}/lib/gst/libgstfestival*
665 @USE_FESTIVAL_TRUE@
666 @USE_FESTIVAL_TRUE@%post -n gstreamer-festival
667 @USE_FESTIVAL_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
668
669 @USE_LAME_TRUE@%package -n gstreamer-lame
670 @USE_LAME_TRUE@Summary: GStreamer plugin encoding mp3 songs
671 @USE_LAME_TRUE@Group: Libraries/Multimedia
672 @USE_LAME_TRUE@Requires: %{name} = %{ver}
673 @USE_LAME_TRUE@
674 @USE_LAME_TRUE@%description -n gstreamer-lame
675 @USE_LAME_TRUE@Plugin for encoding mp3 with lame
676 @USE_LAME_TRUE@
677 @USE_LAME_TRUE@%files -n gstreamer-lame
678 @USE_LAME_TRUE@%defattr(-, root, root)
679 @USE_LAME_TRUE@%{prefix}/lib/gst/libgstlame*
680 @USE_LAME_TRUE@
681 @USE_LAME_TRUE@%post -n gstreamer-lame
682 @USE_LAME_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
683
684
685 %package -n gstreamer-chart
686 Summary: GStreamer plugin for converting audio into video
687 Group: Libraries/Multimedia
688 Requires: %{name} = %{ver}
689
690 %description -n gstreamer-chart
691 Plugin for converting audio into video
692
693 %files -n gstreamer-chart
694 %defattr(-, root, root)
695 %{prefix}/lib/gst/libchart*
696
697 %post -n gstreamer-chart
698 %{prefix}/bin/gstreamer-register --gst-mask=0
699
700 %package -n gstreamer-visualisation
701 Summary: Gstreamer visualisations plugins
702 Group: Libraries/Multimedia
703 Requires: %{name} = %{ver}
704
705 %description -n gstreamer-visualisation
706 Various plugins for visual effects to use with audio. Included are Smoothwave, Spectrum and vumeter
707
708 %files -n gstreamer-visualisation
709 %defattr(-, root, root)
710 %{prefix}/lib/gst/libgstsmooth*
711 %{prefix}/lib/gst/libgstspectrum*
712 %{prefix}/lib/gst/libgstvu*
713
714 %post -n gstreamer-visualisation
715 %{prefix}/bin/gstreamer-register --gst-mask=0
716
717 @USE_HERMES_TRUE@%package -n gstreamer-xvideosink
718 @USE_HERMES_TRUE@Summary: Gstreamer XFree output plugin
719 @USE_HERMES_TRUE@Group: Libraries/Multimedia
720 @USE_HERMES_TRUE@Requires: %{name} = %{ver}
721 @USE_HERMES_TRUE@Requires: Hermes => 1.3.0
722 @USE_HERMES_TRUE@%description -n gstreamer-xvideosink
723 @USE_HERMES_TRUE@Xfree86 video sink
724 @USE_HERMES_TRUE@
725 @USE_HERMES_TRUE@%files -n gstreamer-xvideosink
726 @USE_HERMES_TRUE@%defattr(-, root, root)
727 @USE_HERMES_TRUE@%{prefix}/lib/gst/libxvideosink*
728 @USE_HERMES_TRUE@
729 @USE_HERMES_TRUE@%post -n gstreamer-xvideosink
730 @USE_HERMES_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
731
732 @USE_HERMES_TRUE@%package -n gstreamer-colorspace
733 @USE_HERMES_TRUE@Summary: Gstreamer colorspace conversion plugin
734 @USE_HERMES_TRUE@Group: Libraries/Multimedia
735 @USE_HERMES_TRUE@Requires: %{name} = %{ver}
736 @USE_HERMES_TRUE@Requires: Hermes => 1.3.0
737 @USE_HERMES_TRUE@%description -n gstreamer-colorspace
738 @USE_HERMES_TRUE@Colorspace plugin based on Hermes library
739 @USE_HERMES_TRUE@
740 @USE_HERMES_TRUE@%files -n gstreamer-colorspace
741 @USE_HERMES_TRUE@%defattr(-, root, root)
742 @USE_HERMES_TRUE@%{prefix}/lib/gst/libgstcolorspace*
743 @USE_HERMES_TRUE@
744 @USE_HERMES_TRUE@%post -n gstreamer-colorspace
745 @USE_HERMES_TRUE@%{prefix}/bin/gstreamer-register --gst-mask=0
746
747 %package -n gstreamer-misc
748 Summary: GStreamer plugins for various effects
749 Group: Libraries/Multimedia
750 Requires: %{name} = %{ver}
751
752 %description -n gstreamer-misc
753 Plugins for various effects
754
755 %files -n gstreamer-misc
756 %defattr(-, root, root)
757 %{prefix}/lib/gst/libgstadder*
758 %{prefix}/lib/gst/libgstalaw*
759 %{prefix}/lib/gst/libgstaudio*
760 %{prefix}/lib/gst/libgstidct*
761 %{prefix}/lib/gst/libgstriff*
762 %{prefix}/lib/gst/libgstjpeg*
763 %{prefix}/lib/gst/libgstintfloat*
764 %{prefix}/lib/gst/libgstlevel*
765 %{prefix}/lib/gst/libgstmedian*
766 %{prefix}/lib/gst/libgstmono2stereo*
767 %{prefix}/lib/gst/libgstmulaw*
768 %{prefix}/lib/gst/libgstpassthrough*
769 %{prefix}/lib/gst/libgstrtjpe*
770 %{prefix}/lib/gst/libgststereo*
771 %{prefix}/lib/gst/libgstvol*
772 %{prefix}/lib/gst/libgstplayondemand*
773 %{prefix}/lib/gst/libgstspeed*
774
775 %post -n gstreamer-misc
776 %{prefix}/bin/gstreamer-register --gst-mask=0
777
778 %package -n gstreamer-wav
779 Summary: Gstreamer wav audio format plugin
780 Group: Libraries/Multimedia
781 Requires: %{name} = %{ver}
782 %description -n gstreamer-wav
783 Plugin for playback of wav audio files
784
785 %files -n gstreamer-wav
786 %defattr(-, root, root)
787 %{prefix}/lib/gst/libgstwavparse*
788
789 %post -n gstreamer-wav
790 @%{prefix}/bin/gstreamer-register --gst-mask=0