commit new stuff
[platform/upstream/gst-plugins-good.git] / gst-plugins-good.spec.in
1 # This SPEC file is created in a way that tries to solve various demands. 
2 # First of all it tries to create packages that will easily replace both the 
3 # Fedora Core default packages and also replace the extra rpms provided 
4 # by Fedora.us or freshrpms.net.
5 # At the same time they will only include plugins for which you have the needed
6 # packages installed at the time you run autogen.sh. This means that if you
7 # are not careful you might end up with less plugins than what the standard 
8 # packages provide, which in turn means things might stop working for you. 
9 # So make sure you have an idea of what you do before creating RPMS using this 
10 # SPEC file.
11
12 %define         register        %{_bindir}/gst-register-%{majorminor} > /dev/null 2>&1 || :
13 %define         gst_minver      0.7.6
14 %define         gstp_minver     0.7.6
15
16 Name:           gstreamer09-plugins-good
17 Version:        @VERSION@
18 Release:        @GST_PLUGINS_VERSION_RELEASE@
19 Summary:        GStreamer plug-ins with good code and licensing
20
21 %define         majorminor      @GST_MAJORMINOR@
22
23 Group:          Applications/Multimedia
24 License:        LGPL
25 URL:            http://gstreamer.net/
26 Vendor:         GStreamer Backpackers Team <package@gstreamer.net>
27 Source:         http://gstreamer.freedesktop.org/src/gst-plugins/gst-plugins-%{version}.tar.gz
28 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
29
30 %define         _glib2          @GLIB2_REQ@
31
32 Requires:       glib2 >= %_glib2
33 BuildRequires:  glib2-devel >= %_glib2
34 Requires:       gstreamer09 >= %{gst_minver}
35 BuildRequires:  gstreamer09-devel >= %{gst_minver}
36 BuildRequires:  gcc-c++
37 BuildRequires:  XFree86-devel
38
39 # @USE_AUDIOFILE_TRUE@Requires:      audiofile >= 0.2.1
40 # @USE_AUDIOFILE_TRUE@BuildRequires: audiofile-devel >= 0.2.1
41 # @USE_CDPARANOIA_TRUE@Requires:      cdparanoia-libs >= alpha9.7
42 # @USE_CDPARANOIA_TRUE@BuildRequires: cdparanoia-devel >= alpha9.7
43 @USE_ESD_TRUE@Requires:      esound >= 0.2.8
44 @USE_ESD_TRUE@BuildRequires: esound-devel >= 0.2.8
45 @USE_ESD_TRUE@Obsoletes:     gstreamer-esd
46 @USE_ESD_TRUE@
47 @USE_ESD_TRUE@Provides:         gstreamer-audiosrc
48 @USE_ESD_TRUE@Provides:         gstreamer-audiosink
49 @USE_FLAC_TRUE@Requires:      flac >= 1.0.3
50 @USE_FLAC_TRUE@BuildRequires: flac-devel >= 1.0.3
51 @USE_GCONF_TRUE@Requires:       GConf2
52 @USE_GCONF_TRUE@BuildRequires:  GConf2-devel
53 # @USE_GNOME_VFS_TRUE@Requires:      gnome-vfs2 > 1.9.4.00
54 # @USE_GNOME_VFS_TRUE@BuildRequires: gnome-vfs2-devel > 1.9.4.00
55 # @USE_HERMES_TRUE@Requires:      Hermes >= 1.3.0
56 # @USE_HERMES_TRUE@BuildRequires: Hermes-devel >= 1.3.0
57 @USE_JPEG_TRUE@Requires:      libjpeg
58 @USE_JPEG_TRUE@BuildRequires: libjpeg-devel
59 @USE_LIBPNG_TRUE@Requires:      libpng >= 1.2.0
60 @USE_LIBPNG_TRUE@BuildRequires: libpng-devel >= 1.2.0
61 # @USE_MIKMOD_TRUE@Requires:      mikmod
62 # @USE_MIKMOD_TRUE@BuildRequires: mikmod
63 @USE_OSS_TRUE@BuildRequires: glibc-devel
64 # @USE_PANGO_TRUE@Requires:        pango
65 # @USE_PANGO_TRUE@BuildRequires:   pango-devel
66 # @USE_RAW1394_TRUE@Requires:      libraw1394
67 # @USE_RAW1394_TRUE@BuildRequires: libraw1394-devel
68 # @USE_SDL_TRUE@Requires:      SDL >= 1.2.0
69 # @USE_SDL_TRUE@BuildRequires: SDL-devel >= 1.2.0
70 # @USE_SDL_TRUE@#SDL-devel should require XFree86-devel because it links to it
71 # @USE_SDL_TRUE@#only it doesn't seem to do that currently
72 # @USE_SDL_TRUE@BuildRequires:  XFree86-devel
73 @USE_SPEEX_TRUE@Requires:       speex
74 @USE_SPEEX_TRUE@BuildRequires:  speex-devel
75 # @USE_SMOOTHWAVE_TRUE@Requires:        gtk2
76 # @USE_SMOOTHWAVE_TRUE@BuildRequires:   gtk2-devel
77 # @USE_VORBIS_TRUE@Requires:      libogg >= 1.0
78 # @USE_VORBIS_TRUE@Requires:      libvorbis >= 1.0
79 # @USE_VORBIS_TRUE@BuildRequires: libogg-devel >= 1.0
80 # @USE_VORBIS_TRUE@BuildRequires: libvorbis-devel >= 1.0
81 # @USE_XVIDEO_TRUE@Requires:    XFree86-libs
82 # @USE_XVIDEO_TRUE@BuildRequires: XFree86-devel
83 # @USE_HERMES_TRUE@# @USE_LIBPNG_TRUE@Requires: libpng
84
85 %description
86 GStreamer is a streaming-media framework, based on graphs of filters which
87 operate on media data. Applications using this library can do anything
88 from real-time sound processing to playing videos, and just about anything
89 else media-related.  Its plugin-based architecture means that new data
90 types or processing capabilities can be added simply by installing new
91 plug-ins.
92
93 %prep
94 %setup -n gst-plugins-%{version}
95 %build
96 %configure \
97   --with-gdk-pixbuf-loader-dir=$RPM_BUILD_ROOT%{_libdir}/gtk-2.0/2.2.0/loaders \
98   --enable-debug \
99   --enable-DEBUG 
100
101 make %{?_smp_mflags}
102                                                                                 
103 %install
104 rm -rf $RPM_BUILD_ROOT
105
106 export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
107 %makeinstall
108 unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
109                                                                                 
110 # Clean out files that should not be part of the rpm.
111 rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.la
112 rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.a
113 rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
114 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
115 rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/libgstgdkpixbuf.so
116
117 %clean
118 rm -rf $RPM_BUILD_ROOT
119
120 %files
121 %defattr(-, root, root)
122 %doc AUTHORS COPYING README REQUIREMENTS
123
124 # non-core plugins without external dependencies
125 %{_libdir}/gstreamer-%{majorminor}/libgstalaw.so
126 %{_libdir}/gstreamer-%{majorminor}/libgsteffectv.so
127 %{_libdir}/gstreamer-%{majorminor}/libgstmulaw.so
128 %{_libdir}/gstreamer-%{majorminor}/libgstsmpte.so
129 %{_libdir}/gstreamer-%{majorminor}/libgstrtp.so
130 %{_libdir}/gstreamer-%{majorminor}/libgstrtsp.so
131 # %{_libdir}/gstreamer-%{majorminor}/libgsttcp.so
132 %{_libdir}/gstreamer-%{majorminor}/libgstudp.so
133 %{_libdir}/gstreamer-%{majorminor}/libgstalpha.so
134 %{_libdir}/gstreamer-%{majorminor}/libgstgoom.so
135 %{_libdir}/gstreamer-%{majorminor}/libgstrmdemux.so
136 %{_libdir}/gstreamer-%{majorminor}/libgstavi.so
137 %{_libdir}/gstreamer-%{majorminor}/libgstlevel.so
138 %{_libdir}/gstreamer-%{majorminor}/libgstvideobox.so
139 %{_libdir}/gstreamer-%{majorminor}/libgstfdsrc.so
140 %{_libdir}/gstreamer-%{majorminor}/libgstwavparse.so
141 %{_libdir}/gstreamer-%{majorminor}/libgstautodetect.so
142 %{_libdir}/gstreamer-%{majorminor}/libgstsilence.so
143 %{_libdir}/gstreamer-%{majorminor}/libgstvideoflip.so
144 %{_libdir}/gstreamer-%{majorminor}/libgstqtdemux.so
145 %{_libdir}/gstreamer-%{majorminor}//libgstmpegaudioparse.so
146
147 # gstreamer-plugins with external dependencies but in the main package
148 # @USE_ARTS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstarts.so
149 # @USE_ARTSC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstartsdsink.so
150 # @USE_AUDIOFILE_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstaudiofile.so
151 # @USE_CDPARANOIA_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstcdparanoia.so
152 @USE_ESD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstesd.so
153 # @USE_POLYP_TRUE@%{_libdir}/gstreamer-%{majorminor}/libpolypaudio.so
154 @USE_FLAC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstflac.so
155 # @USE_HERMES_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgsthermescolorspace.so
156 # @USE_SMOOTHWAVE_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstsmoothwave.so
157 @USE_JPEG_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstjpeg.so
158 # @USE_MIKMOD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmikmod.so
159 # @USE_SDL_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstsdlvideosink.so
160 # @USE_VORBIS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstvorbis.so
161 # @USE_VORBIS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstogg.so
162 @USE_LIBPNG_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstpng.so
163 @USE_OSS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstossaudio.so
164 # @USE_GST_V4L_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstvideo4linux.so
165 ## @USE_RAW1394_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgst1394.so
166 # Snapshot plugin uses libpng
167 # @USE_LIBPNG_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstsnapshot.so
168 # @USE_PANGO_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgsttextoverlay.so
169 # @USE_PANGO_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgsttimeoverlay.so
170 @USE_SPEEX_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstspeex.so
171 @USE_LIBCACA_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstcacasink.so
172 # @USE_XVIDEO_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstximagesink.so
173 # @USE_XVIDEO_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstxvimagesink.so
174 # @USE_SNDFILE_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstsndfile.so
175 # @USE_MUSICBRAINZ_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgsttrm.so
176 @USE_GCONF_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstgconfelements.so
177 ## Libraries
178 %{_libdir}/libgstvideofilter-%{majorminor}.*
179 %{_datadir}/locale
180
181 %post
182 %{_bindir}/gst-register-%{majorminor} > /dev/null 2> /dev/null
183
184 %package audio
185 Summary:        Additional audio plugins for GStreamer
186 Group:          Applications/Multimedia
187                                                                                 
188 @USE_SIDPLAY_TRUE@BuildRequires:  libsidplay-devel >= 1.36.0
189 # @USE_SHOUT_TRUE@BuildRequires:  libshout-devel <= 2.0
190 # # @USE_SHOUT2_TRUE@BuildRequires: libshout-devel >= 2.0
191 # @USE_LADSPA_TRUE@BuildRequires:  ladspa-devel
192                                                                                 
193 Requires:       gstreamer09-plugins >= %{gstp_minver}
194 Requires(pre):  %{_bindir}/gst-register-%{majorminor}
195 Requires(post): %{_bindir}/gst-register-%{majorminor}
196
197 # @USE_LADSPA_TRUE@Provides:       gstreamer-ladspa = %{version}-%{release}
198 @USE_SIDPLAY_TRUE@Provides:       gstreamer-sid = %{version}-%{release}
199 # @USE_SHOUT_TRUE@Provides:       gstreamer-shout = %{version}-%{release}
200                                                                                 
201 %description audio
202 This package contains additional audio plugins for GStreamer, including
203 - codec for sid (C64)
204 - a shout element to stream to icecast servers
205 - a ladspa elements wrapping LADSPA plugins
206 # - a shout 2 element
207
208 %files audio
209 %defattr(-, root, root, -)
210 # @USE_LADSPA_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstladspa.so
211 @USE_SIDPLAY_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstsid.so
212 # @USE_SHOUT_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstshout.so
213 # # @USE_SHOUT2_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstshout2.so
214
215 %post audio
216 %{register}
217 %postun audio
218 %{register}
219
220 %package extra-audio
221 Summary:        Extra audio plugins for GStreamer
222 Group:          Applications/Multimedia
223                                                                                 
224 @USE_FAAD_TRUE@BuildRequires:  faad2-devel >= 2.0
225 # @USE_GSM_TRUE@BuildRequires:  gsm-devel >= 1.0.10
226 @USE_LAME_TRUE@BuildRequires:  lame-devel >= 3.89
227 @USE_MAD_TRUE@BuildRequires:  libid3tag-devel >= 0.15.0
228 @USE_MAD_TRUE@BuildRequires:  libmad-devel >= 0.15.0
229                                                                                 
230 Requires:       gstreamer09-plugins >= %{gstp_minver}
231 Requires(pre):  %{_bindir}/gst-register-%{majorminor}
232 Requires(post): %{_bindir}/gst-register-%{majorminor}
233                                                                                 
234 @USE_FAAD_TRUE@Provides:      gstreamer-faad = %{version}-%{release}
235 # @USE_GSM_TRUE@Provides:       gstreamer-gsm = %{version}-%{release}
236 @USE_LAME_TRUE@Provides:      gstreamer-lame = %{version}-%{release}
237 @USE_MAD_TRUE@Provides:       gstreamer-mad = %{version}-%{release}
238                                                                                 
239 %description extra-audio
240 This package contains extra audio plugins for GStreamer, including
241 - gsm decoding
242 - faad2 decoding
243 - mad mp3 decoding
244 - lame mp3 encoding
245                                                                                 
246 %post extra-audio
247 %{register}
248 %postun extra-audio
249 %{register}
250                                                                                 
251 %files extra-audio
252 %defattr(-, root, root, -)
253 @USE_FAAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstfaad.so
254 # @USE_GSM_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstgsm.so
255 @USE_LAME_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstlame.so
256 @USE_MAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmad.so
257
258 %package extra-dvd
259 Summary:        DVD plugins for GStreamer
260 Group:          Applications/Multimedia
261                                                                                 
262 # @USE_A52DEC_TRUE@BuildRequires:  a52dec-devel >= 0.7.3
263 # @USE_DVDNAV_TRUE@BuildRequires:  libdvdnav-devel >= 0.1.3
264 # @USE_DVDREAD_TRUE@BuildRequires:  libdvdread-devel >= 0.9.0
265                                                                                 
266 Requires:       gstreamer09-plugins >= %{gstp_minver}
267 Requires:       gstreamer09-plugins-extra-video >= %{gstp_minver}
268 Requires(pre):  %{_bindir}/gst-register-%{majorminor}
269 Requires(post): %{_bindir}/gst-register-%{majorminor}
270                                                                                 
271 Provides:       gstreamer-dvd = %{version}-%{release}
272 # @USE_A52DEC_TRUE@Provides:       gstreamer-       = %{version}-%{release}
273 # @USE_DVDNAV_TRUE@Provides:       gstreamer-dvdnavsrc = %{version}-%{release}
274 # @USE_DVDREAD_TRUE@Provides:       gstreamer-dvdreadsrc = %{version}-%{release}
275                                                                                 
276 %description extra-dvd
277 This package contains dvd plugins for GStreamer, including
278
279 - libdvdread
280       decoding
281                                                                                 
282 %post extra-dvd
283 %{register}
284 %postun extra-dvd
285 %{register}
286                                                                                 
287 %files extra-dvd
288 %defattr(-, root, root, -)
289 # @USE_A52DEC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgsta52dec.so
290 # @USE_DVDNAV_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdvdnavsrc.so
291 # @USE_DVDREAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdvdreadsrc.so
292
293 %package video
294 Summary:        Additional video plugins for GStreamer
295 Group:          Applications/Multimedia
296                                                                                 
297 @USE_AALIB_TRUE@BuildRequires:  aalib-devel >= 1.3
298                                                                                 
299 Requires:       gstreamer09-plugins >= %{gstp_minver}
300 Requires(pre):  %{_bindir}/gst-register-%{majorminor}
301 Requires(post): %{_bindir}/gst-register-%{majorminor}
302                                                                                 
303 @USE_AALIB_TRUE@Provides:       gstreamer-aasink = %{version}-%{release}
304                                                                                 
305 %description video
306 This package contains additional video plugins for GStreamer, including
307 - an output sink based on aalib (ASCII art output)
308 - an element for decoding dv streams using libdv
309 - an output sink based on cacalib (color ASCII art output)
310 - A Dirac video format decoder
311 - An output sink based on OpenGL
312
313 %files video
314 %defattr(-, root, root, -)
315 @USE_AALIB_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstaasink.so
316 @USE_LIBDV_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdv.so
317 @USE_DV1394_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgst1394.so
318 @USE_LIBCACA_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstcacasink.so
319 # @USE_DIRAC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdirac.so
320 # @USE_OPENGL_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstglimagesink.so
321
322 %post video
323 %{register}
324 %postun video
325 %{register}
326
327 %package extra-video
328 Summary:        Extra video plugins for GStreamer
329 Group:          Applications/Multimedia
330                                                                                 
331 # @USE_LIBFAME_TRUE@BuildRequires:  libfame-devel >= 0.9.0
332 @USE_MPEG2DEC_TRUE@BuildRequires:  mpeg2dec-devel >= 0.4.0
333 # @USE_SWFDEC_TRUE@BuildRequires:  swfdec-devel
334                                                                                 
335 Requires:       gstreamer09-plugins >= %{gstp_minver}
336 Requires:       gstreamer09-plugins-extra-audio >= %{gstp_minver}
337 Requires(pre):  %{_bindir}/gst-register-%{majorminor}
338 Requires(post): %{_bindir}/gst-register-%{majorminor}
339                                                                                 
340 # @USE_LIBFAME_TRUE@Provides:       gstreamer-libfame = %{version}-%{release}
341 @USE_MPEG2DEC_TRUE@Provides:       gstreamer-mpeg2dec = %{version}-%{release}
342 # @USE_SWFDEC_TRUE@Provides:       gstreamer-swfdec = %{version}-%{release}
343                                                                                 
344 %description extra-video
345 This package contains extra video plugins for GStreamer, including
346 - libfame MPEG video encoding
347 - mpeg2dec MPEG-2 decoding
348 - swfdec Flash decoding
349                                                                                 
350 %post extra-video
351 %{register}
352 %postun extra-video
353 %{register}
354                                                                                 
355 %files extra-video
356 %defattr(-, root, root, -)
357 # @USE_LIBFAME_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstlibfame.so
358 @USE_MPEG2DEC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmpeg2dec.so
359 # @USE_SWFDEC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstswfdec.so
360
361 # Here are packages not in the base plugins package but not dependant
362 # on an external lib
363
364 # Here are all the packages depending on external libs #
365
366 ## DXR3 ###
367 # @USE_DXR3_TRUE@%package -n gstreamer-plugins-dxr3
368 # @USE_DXR3_TRUE@Summary:       GStreamer plug-in for playback using dxr3 card.
369 # @USE_DXR3_TRUE@Group:         Applications/Multimedia
370 # @USE_DXR3_TRUE@Requires:      gstreamer-plugins = %{version}
371 # @USE_DXR3_TRUE@Requires:      em8300 >= 0.12.0
372 # @USE_DXR3_TRUE@BuildRequires: em8300-devel >= 0.12.0
373 # @USE_DXR3_TRUE@Obsoletes:     gstreamer-dxr3
374 # @USE_DXR3_TRUE@
375 # @USE_DXR3_TRUE@%description -n gstreamer-plugins-dxr3
376 # @USE_DXR3_TRUE@Plug-in supporting DVD playback using cards
377 # @USE_DXR3_TRUE@with the dxr3 chipset like Hollywood Plus
378 # @USE_DXR3_TRUE@and Creative Labs DVD cards.
379 # @USE_DXR3_TRUE@
380 # @USE_DXR3_TRUE@%files -n gstreamer-plugins-dxr3
381 # @USE_DXR3_TRUE@%defattr(-, root, root)
382 # @USE_DXR3_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdxr3.so
383 # @USE_DXR3_TRUE@
384 # @USE_DXR3_TRUE@%post -n gstreamer-plugins-dxr3
385 # @USE_DXR3_TRUE@%{register}
386 # @USE_DXR3_TRUE@
387 # @USE_DXR3_TRUE@%postun -n gstreamer-plugins-dxr3
388 # @USE_DXR3_TRUE@%{register}
389
390 ### FAAC ###
391 # @USE_FAAC_TRUE@%package -n gstreamer-plugins-faac
392 # @USE_FAAC_TRUE@Summary:GStreamer plug-ins for AAC audio playback.
393 # @USE_FAAC_TRUE@Group:         Applications/Multimedia
394 # @USE_FAAC_TRUE@Requires:      gstreamer-plugins = %{version}
395 # @USE_FAAC_TRUE@Requires:      faac >= 1.23
396 # @USE_FAAC_TRUE@BuildRequires: faac-devel >= 1.23
397 # @USE_FAAC_TRUE@Obsoletes:     gstreamer-faac
398 # @USE_FAAC_TRUE@
399 # @USE_FAAC_TRUE@%description -n gstreamer-plugins-faac
400 # @USE_FAAC_TRUE@Plug-ins for playing AAC audio
401 # @USE_FAAC_TRUE@
402 # @USE_FAAC_TRUE@%files -n gstreamer-plugins-faac
403 # @USE_FAAC_TRUE@%defattr(-, root, root)
404 # @USE_FAAC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstfaac.so
405 # @USE_FAAC_TRUE@%post -n  gstreamer-faac
406 # @USE_FAAC_TRUE@%{register}
407 # @USE_FAAC_TRUE@
408 # @USE_FAAC_TRUE@%postun -n  gstreamer-plugins-faac
409 # @USE_FAAC_TRUE@%{register}
410
411 #### JACK AUDIO CONNECTION KIT ###
412 # @USE_JACK_TRUE@%package -n gstreamer-plugins-jack
413 # @USE_JACK_TRUE@Summary:  GStreamer plug-in for the Jack Sound Server.
414 # @USE_JACK_TRUE@Group:    Applications/Multimedia
415 # @USE_JACK_TRUE@Requires: gstreamer-plugins = %{version}
416 # @USE_JACK_TRUE@Requires: jack-audio-connection-kit >= 0.28.0
417 # @USE_JACK_TRUE@
418 # @USE_JACK_TRUE@Provides:      gstreamer-audiosrc
419 # @USE_JACK_TRUE@Provides:      gstreamer-audiosink
420 # @USE_JACK_TRUE@Obsoletes:     gstreamer-jack
421 # @USE_JACK_TRUE@
422 # @USE_JACK_TRUE@%description -n gstreamer-plugins-jack
423 # @USE_JACK_TRUE@Plug-in for the JACK professional sound server.
424 # @USE_JACK_TRUE@
425 # @USE_JACK_TRUE@%files -n gstreamer-plugins-jack
426 # @USE_JACK_TRUE@%defattr(-, root, root)
427 # @USE_JACK_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstjack.so
428 # @USE_JACK_TRUE@
429 # @USE_JACK_TRUE@%post -n gstreamer-plugins-jack
430 # @USE_JACK_TRUE@%{register}
431 # @USE_JACK_TRUE@
432 # @USE_JACK_TRUE@%postun -n gstreamer-plugins-jack
433 # @USE_JACK_TRUE@%{register}
434
435 #### NETWORK AUDIO SYSTEM  ###
436 # @USE_NAS_TRUE@%package -n gstreamer-plugins-nas
437 # @USE_NAS_TRUE@Summary:  GStreamer plug-in for the Network Audio System.
438 # @USE_NAS_TRUE@Group:    Applications/Multimedia
439 # @USE_NAS_TRUE@Requires: gstreamer-plugins = %{version}
440 # @USE_NAS_TRUE@Requires: libnas2 >= 1.6
441 # @USE_NAS_TRUE@Obsolotes:gstreamer-nas
442 # @USE_NAS_TRUE@
443 # @USE_NAS_TRUE@%description -n gstreamer-plugins-nas
444 # @USE_NAS_TRUE@Plug-in for the Network Audio System sound server.
445 # @USE_NAS_TRUE@
446 # @USE_NAS_TRUE@%files -n gstreamer-plugins-nas
447 # @USE_NAS_TRUE@%defattr(-, root, root)
448 # @USE_NAS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstnassink.so
449 # @USE_NAS_TRUE@
450 # @USE_NAS_TRUE@%post -n gstreamer-plugins-nas
451 # @USE_NAS_TRUE@%{register}
452 # @USE_NAS_TRUE@
453 # @USE_NAS_TRUE@%postun -n gstreamer-plugins-nas
454 # @USE_NAS_TRUE@%{register}
455
456 #### MMS Protocol support ####
457 # @USE_LIBMMS_TRUE@%package -n gstreamer-plugins-mms
458 # @USE_LIBMMS_TRUE@Summary:  GStreamer plug-in for MMS protocol support 
459 # @USE_LIBMMS_TRUE@Group:    Applications/Multimedia
460 # @USE_LIBMMS_TRUE@Requires: gstreamer-plugins = %{version}
461 # @USE_LIBMMS_TRUE@Requires: libmms >= 0.1
462 # @USE_LIBMMS_TRUE@Obsoletes:gstreamer-mms
463 # @USE_LIBMMS_TRUE@
464 # @USE_LIBMMS_TRUE@%description -n gstreamer-plugins-mms
465 # @USE_LIBMMS_TRUE@Plug-in for the MMS protocol used by Microsoft
466 # @USE_LIBMMS_TRUE@
467 # @USE_LIBMMS_TRUE@%files -n gstreamer-plugins-mms
468 # @USE_LIBMMS_TRUE@%defattr(-, root, root)
469 # @USE_LIBMMS_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmms.so
470 # @USE_LIBMMS_TRUE@
471 # @USE_LIBMMS_TRUE@%post -n gstreamer-plugins-mms
472 # @USE_LIBMMS_TRUE@%{register}
473 # @USE_LIBMMS_TRUE@
474 # @USE_LIBMMS_TRUE@%postun -n gstreamer-plugins-mms
475 # @USE_LIBMMS_TRUE@%{register}
476
477 ### VIDEO 4 LINUX 2 ###
478 # @USE_GST_V4L2_TRUE@%package -n gstreamer-plugins-v4l2
479 # @USE_GST_V4L2_TRUE@Summary:       GStreamer Video for Linux 2 plug-in.
480 # @USE_GST_V4L2_TRUE@Group:         Applications/Multimedia
481 # @USE_GST_V4L2_TRUE@Requires:      gstreamer-plugins = %{version}
482 # @USE_GST_V4L2_TRUE@BuildRequires: glibc-devel
483 # @USE_GST_V4L2_TRUE@Obsoletes:   gstreamer-v4l2
484 # @USE_GST_V4L2_TRUE@
485 # @USE_GST_V4L2_TRUE@%description -n gstreamer-plugins-v4l2
486 # @USE_GST_V4L2_TRUE@Plug-in for accessing Video for Linux devices.
487 # @USE_GST_V4L2_TRUE@
488 # @USE_GST_V4L2_TRUE@%files -n gstreamer-plugins-v4l2
489 # @USE_GST_V4L2_TRUE@%defattr(-, root, root)
490 # @USE_GST_V4L2_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstvideo4linux2.so
491 # @USE_GST_V4L2_TRUE@
492 # @USE_GST_V4L2_TRUE@%post -n gstreamer-plugins-v4l2
493 # @USE_GST_V4L2_TRUE@%{register}
494 # @USE_GST_V4L2_TRUE@
495 # @USE_GST_V4L2_TRUE@%postun -n gstreamer-plugins-v4l2
496 # @USE_GST_V4L2_TRUE@%{register}
497
498 ### XVID ###
499 # @USE_XVID_TRUE@%package -n gstreamer-plugins-xvid
500 # @USE_XVID_TRUE@Summary:       GStreamer XVID plug-in.
501 # @USE_XVID_TRUE@Group:         Applications/Multimedia
502 # @USE_XVID_TRUE@Requires:      gstreamer-plugins = %{version}
503 # @USE_XVID_TRUE@BuildRequires: glibc-devel
504 # @USE_XVID_TRUE@Obsoletes:     gstreamer-xvid
505 # @USE_XVID_TRUE@
506 # @USE_XVID_TRUE@%description -n gstreamer-plugins-xvid
507 # @USE_XVID_TRUE@Plug-in for decoding XVID files.
508 # @USE_XVID_TRUE@
509 # @USE_XVID_TRUE@%files -n gstreamer-plugins-xvid
510 # @USE_XVID_TRUE@%defattr(-, root, root)
511 # @USE_XVID_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstxvid.so
512 # @USE_XVID_TRUE@
513 # @USE_XVID_TRUE@%post -n gstreamer-plugins-xvid
514 # @USE_XVID_TRUE@%{register}
515 # @USE_XVID_TRUE@
516 # @USE_XVID_TRUE@%postun -n gstreamer-plugins-xvid
517 # @USE_XVID_TRUE@%{register}
518
519
520 %changelog
521 * Mon Feb 14 2005 Christian Schaller <christian at fluendo dot com>
522 - Add vnc plugin 
523
524 * Wed Jan 19 2005 Christian Schaller <christian at fluendo dot com>
525 - add dv1394 plugin
526
527 * Wed Dec 22 2004 Christian Schaller <christian at fluendo dot com>
528 - Add -plugins- to plugin names
529
530 * Thu Dec 9  2004 Christian Schaller <christian a fluendo dot com>
531 - Add the mms plugin
532
533 * Wed Oct 06 2004 Christian Schaller <christian at fluendo dot com>
534 - Add Wim's new mng decoder plugin
535 - add shout2 plugin for Zaheer, hope it is correctly done :)
536
537 * Wed Sep 29 2004 Christian Schaller <uraeus at gnome dot org>
538 - Fix USE statement for V4L2
539
540 * Thu Sep 28 2004 Christian Schaller <uraeus at gnome dot org>
541 - Remove kio plugin (as it was broken)
542
543 * Wed Sep 21 2004 Christian Schaller <uraeus at gnome dot org>
544 - Reorganize SPEC to fit better with fedora.us and freshrpms.net packages
545 - Make sure gstinterfaces.so is in the package
546 - Add all new plugins
547
548 * Mon Mar 15 2004 Thomas Vander Stichele <thomas at apestaart dot org>
549 - put back media-info
550 - add ffmpegcolorspace plugin
551
552 * Sun Mar 07 2004 Christian Schaller <Uraeus@gnome.org>
553 - Remove rm commands for media-info stuff
554 - Add libdir/*
555                                                                                 
556 * Thu Mar 04 2004 Christian Schaller <Uraeus@gnome.org>
557 - Add missing gconf schema install in %post
558
559 * Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
560 - Libraries/Multimedia doesn't exist, remove it
561
562 * Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
563 - added speex plugin.
564
565 * Mon Mar 01 2004 Thomas Vander Stichele <thomas at apestaart dot org>
566 - Cleaned up the mess.  Could we PLEASE keep this sort of organized and
567 - alphabetic for easy lookup ?
568
569 * Fri Feb 13 2004 Christian Schaller <Uraeus@gnome.org>
570 - Added latest new headers
571
572 * Wed Jan 21 2004 Christian Schaller <Uraeus@gnome.org>
573 - added NAS plugin
574 - added i18n locale dir
575
576 * Fri Jan 16 2004 Christian Schaller <uraeus@gnome.org>
577 - added libcaca plugin
578 - added libgstcolorspace - fixed name of libgsthermescolorspace
579
580 * Wed Jan 14 2004 Christian Schaller <uraeus@gnome.org>
581 - Add gamma plugin
582 - Have the pixbuf plugin deleted for now
583
584 * Wed Dec 18 2003 Christian Schaller <Uraeus@gnome.org>
585 - remove gsttagediting.h as it is gone
586 - replace it with gst/tag/tag.h
587
588 * Sun Nov 23 2003 Christian Schaller <Uraeus@gnome.org>
589 - Update spec file for latest changes
590 - add faad plugin
591
592 * Thu Oct 16 2003 Christian Schaller <Uraeus@gnome.org>
593 - Add new colorbalance and tuner and xoverlay stuff
594 - Change name of kde-audio-devel to arts-devel
595
596 * Sat Sep 27 2003 Christian Schaller <Uraeus@gnome.org>
597 - Add majorminor to man page names
598 - add navigation lib to package
599
600 * Tue Sep 11 2003 Christian Schaller <Uraeus@gnome.org>
601 - Add -%{majorminor} to each instance of gst-register
602
603 * Tue Aug 19 2003 Christian Schaller <Uraeus@Gnome.org>
604 - Add new plugins
605
606 * Sat Jul 12 2003 Thomas Vander Stichele <thomas at apestaart dot org>
607 - move gst/ mpeg plugins to base package
608 - remove hermes conditional from snapshot
609 - remove one instance of resample plugin
610 - fix up silly versioned plugins efence and rmdemux
611
612 * Sat Jul 05 2003 Christian Schaller <Uraeus@gnome.org>
613 - Major overhaul of SPEC file to make it compatible with what Red Hat ships
614   as default
615 - Probably a little less sexy, but cross-distro SPEC files are a myth anyway
616   so making it convenient for RH users wins out
617 - Keeping conditionals even with new re-org so that developers building the
618   RPMS don't need everything installed
619 - Add bunch of obsoletes to ease migration from earlier official GStreamer RPMS
620 - Remove plugins that doesn't exist anymore
621
622 * Sun Mar 02 2003 Christian Schaller <Uraeus@gnome.org>
623 - Remove USE_RTP statement from RTP plugin
624 - Move RTP plugin to no-deps section
625
626 * Sat Mar 01 2003 Christian Schaller <Uraeus@gnome.org>
627 - Remove videosink from SPEC
628 * Thu Jan 23 2003 Thomas Vander Stichele <thomas at apestaart dot org>
629 - various fixes
630 - make video output packages provide gstreamer-videosink
631
632 * Thu Jan 23 2003 Thomas Vander Stichele <thomas at apestaart dot org>
633 - split out ffmpeg stuff to separate plugin
634
635 * Fri Dec 27 2002 Thomas Vander Stichele <thomas at apestaart dot org>
636 - add virtual provides for audio sources and sinks
637
638 * Sun Dec 15 2002 Christian Schaller <Uraeus@linuxrising.org>
639 - Update mpeg2dec REQ to be 0.3.1
640
641 * Tue Dec 10 2002 Thomas Vander Stichele <thomas at apestaart dot org>
642 - only install schema once
643 - move out devel lib stuff to -devel package
644
645 * Sun Dec 08 2002 Thomas Vander Stichele <thomas at apestaart dot org>
646 - fix location of libgstpng
647 - changes for parallel installability
648
649 * Thu Nov 28 2002 Christian Schaller <Uraeus@linuxrising.org>
650 - Put in libgstpng plugin
651 - rm the libgstmedia-info stuff until thomas think they are ready
652
653 * Fri Nov 01 2002 Thomas Vander Stichele <thomas at apestaart dot org>
654 - don't use compprep until ABI issues can be fixed
655
656 * Wed Oct 30 2002 Thomas Vander Stichele <thomas at apestaart dot org>
657 - added smpte plugin
658 - split out dvdnavread package
659 - fixed snapshot deps and added hermes conditionals
660
661 * Tue Oct 29 2002 Thomas Vander Stichele <thomas at apestaart dot org>
662 - added -play package, libs, and .pc files
663
664 * Thu Oct 24 2002 Christian Schaller <Uraeus@linuxrising.org>
665 - Added wavenc to audio formats package
666
667 * Sat Oct 20 2002 Christian Scchaller <Uraeus@linuxrising.org>
668 - Removed all .la files
669 - added separate non-openquicktime demuxer plugin
670 - added snapshot plugin
671 - added videotest plugin
672 - Split avi plugin out to avi and windec plugins since aviplugin do not depend on avifile
673 - Added cdplayer plugin
674
675 * Fri Sep 20 2002 Thomas Vander Stichele <thomas@apestaart.org>
676 - added gst-compprep calls
677
678 * Wed Sep 18 2002 Thomas Vander Stichele <thomas@apestaart.org>
679 - add gst-register-%{majorminor} calls everywhere again since auto-reregister doesn't work
680 - added gstreamer-audio-formats to mad's requires since it needs the typefind
681   to work properly
682
683 * Mon Sep 9 2002 Christian Schaller <Uraeus@linuxrising.org>
684 - Added v4l2 plugin
685 * Thu Aug 27 2002 Christian Schaller <Uraeus@linuxrising.org>
686 - Fixed USE_DV_TRUE to USE_LIBDV_TRUE
687 - Added Gconf and floatcast headers to gstreamer-plugins-devel package
688 - Added mixmatrix plugin to audio-effects package
689
690 * Thu Jul 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
691 - fixed oss package to buildrequire instead of require glibc headers
692
693 * Mon Jul 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
694 - fixed -devel package group
695
696 * Fri Jul 05 2002 Thomas Vander Stichele <thomas@apestaart.org>
697 - release 0.4.0 !
698 - added gstreamer-libs.pc
699 - removed all gst-register-%{majorminor} calls since this should be done automatically now
700
701 * Thu Jul 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
702 - fix issue with SDL package
703 - make all packages STRICTLY require the right version to avoid
704   ABI issues
705 - make gst-plugins obsolete gst-plugin-libs
706 - also send output of gst-register-%{majorminor} to /dev/null to lower the noise
707
708 * Wed Jul 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
709 - require glibc-devel instead of glibc-kernheaders since the latter is only
710   since 7.3 and glibc-devel pulls in the right package anyway
711
712 * Sun Jun 23 2002 Thomas Vander Stichele <thomas@apestaart.org>
713 - changed header location of plug-in libs
714
715 * Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
716 - major cleanups
717 - adding gst-register-%{majorminor} on postun everywhere
718 - remove ldconfig since we don't actually install libs in system dirs
719 - removed misc package
720 - added video-effects
721 - dot every Summary
722 - uniformify all descriptions a little
723
724 * Thu Jun 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
725 - various BuildRequires: additions
726
727 * Tue Jun 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
728 - added USE_LIBADSPA_TRUE bits to ladspa package
729
730 * Mon Jun 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
731 - Added libfame package
732
733 * Mon May 12 2002 Christian Fredrik Kalager Schaller <Uraeus@linuxrising.org>
734 - Added jack, dxr3, http packages
735 - Added visualisation plug-ins, effecttv and synaesthesia
736 - Created devel package
737 - Removed gstreamer-plugins-libs package (moved it into gstreamer-plugins)
738 - Replaced prefix/dirname with _macros
739
740 * Mon May 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
741 - added gstreamer-GConf package
742
743 * Wed Mar 13 2002 Thomas Vander Stichele <thomas@apestaart.org>
744 - added more BuildRequires and Requires
745 - rearranged some plug-ins
746 - added changelog ;)