2002-02-12 12:01:45 +00:00
|
|
|
%define name gstreamer-plugins
|
2002-01-05 14:24:32 +00:00
|
|
|
%define ver @VERSION@
|
2002-02-11 16:01:13 +00:00
|
|
|
%define rel @GST_PLUGINS_RELEASE@
|
2002-01-05 14:24:32 +00:00
|
|
|
%define prefix /usr
|
|
|
|
%define sysconfdir /etc
|
|
|
|
|
|
|
|
Summary: GStreamer Streaming-media framework plugins
|
|
|
|
Name: %name
|
|
|
|
Version: %ver
|
|
|
|
Release: %rel
|
|
|
|
Copyright: LGPL
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 12:01:45 +00:00
|
|
|
Source: gst-plugins-%{ver}.tar.gz
|
2002-01-05 14:24:32 +00:00
|
|
|
BuildRoot: /var/tmp/%{name}-%{ver}-root
|
|
|
|
Docdir: %{prefix}/doc
|
|
|
|
Prefix: %prefix
|
2002-01-31 15:28:21 +00:00
|
|
|
Requires: libxml2 >= 2.4.0
|
2002-01-08 11:44:39 +00:00
|
|
|
Requires: gstreamer >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
BuildRequires: nasm => 0.90
|
2002-02-04 20:57:13 +00:00
|
|
|
BuildRequires: gstreamer-devel >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
GStreamer is a streaming-media framework, based on graphs of filters which
|
|
|
|
operate on media data. Applications using this library can do anything
|
|
|
|
from real-time sound processing to playing videos, and just about anything
|
|
|
|
else media-related. Its plugin-based architecture means that new data
|
|
|
|
types or processing capabilities can be added simply by installing new
|
|
|
|
plugins.
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%doc AUTHORS COPYING README
|
2002-02-04 20:57:13 +00:00
|
|
|
%{_bindir}/gst-launch-ext
|
2002-01-05 14:24:32 +00:00
|
|
|
%prep
|
2002-02-12 16:56:33 +00:00
|
|
|
%setup -n gst-plugins-%{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
%build
|
2002-01-18 17:00:47 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --sysconfdir=%{sysconfdir} --mandir=$RPM_BUILD_ROOT%{prefix}/share/man --enable-DEBUG
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
if [ "$SMP" != "" ]; then
|
|
|
|
(make "MAKE=make -k -j $SMP"; exit 0)
|
2002-02-13 12:02:11 +00:00
|
|
|
make 2>&1 | tee make.log
|
2002-01-05 14:24:32 +00:00
|
|
|
else
|
2002-02-13 12:02:11 +00:00
|
|
|
make 2>&1 | tee make.log
|
2002-01-05 14:24:32 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%install
|
|
|
|
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
make prefix=$RPM_BUILD_ROOT%{prefix} install
|
|
|
|
|
|
|
|
%clean
|
|
|
|
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
### ESD ###
|
|
|
|
@USE_ESD_TRUE@%package -n gstreamer-esd
|
|
|
|
@USE_ESD_TRUE@Summary: Gstreamer plugin for ESD sound output
|
|
|
|
@USE_ESD_TRUE@Group: Libraries/Multimedia
|
|
|
|
@USE_ESD_TRUE@Requires: esound >= 0.2.8
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ESD_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_ESD_TRUE@
|
|
|
|
@USE_ESD_TRUE@%description -n gstreamer-esd
|
|
|
|
@USE_ESD_TRUE@Output plugin for GStreamer for use with the esound package
|
|
|
|
@USE_ESD_TRUE@
|
|
|
|
@USE_ESD_TRUE@%files -n gstreamer-esd
|
|
|
|
@USE_ESD_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_ESD_TRUE@%{prefix}/lib/gst/libesd*
|
|
|
|
@USE_ESD_TRUE@
|
|
|
|
@USE_ESD_TRUE@%post -n gstreamer-esd
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ESD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_ESD_TRUE@
|
|
|
|
@USE_ESD_TRUE@%postun -n gstreamer-esd
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ESD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_ESD_TRUE@/sbin/ldconfig
|
|
|
|
|
2002-01-08 11:44:39 +00:00
|
|
|
### FESTIVAL ###
|
|
|
|
@USE_FESTIVAL_TRUE@%package -n gstreamer-festival
|
|
|
|
@USE_FESTIVAL_TRUE@Summary: GStreamer plugin for text-to-speech support using Festival
|
|
|
|
@USE_FESTIVAL_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_FESTIVAL_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-08 11:44:39 +00:00
|
|
|
@USE_FESTIVAL_TRUE@Requires: festival >= 1.4.1
|
|
|
|
@USE_FESTIVAL_TRUE@
|
|
|
|
@USE_FESTIVAL_TRUE@%description -n gstreamer-festival
|
|
|
|
@USE_FESTIVAL_TRUE@Element for text-to-speech using the festival server.
|
|
|
|
@USE_FESTIVAL_TRUE@
|
|
|
|
@USE_FESTIVAL_TRUE@%files -n gstreamer-festival
|
|
|
|
@USE_FESTIVAL_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_FESTIVAL_TRUE@%{prefix}/lib/gst/libgstfestival*
|
|
|
|
@USE_FESTIVAL_TRUE@
|
|
|
|
@USE_FESTIVAL_TRUE@%post -n gstreamer-festival
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_FESTIVAL_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-08 11:44:39 +00:00
|
|
|
|
|
|
|
### HERMES ###
|
|
|
|
@USE_HERMES_TRUE@%package -n gstreamer-xvideosink
|
|
|
|
@USE_HERMES_TRUE@Summary: Gstreamer XFree output plugin
|
|
|
|
@USE_HERMES_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_HERMES_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-08 11:44:39 +00:00
|
|
|
@USE_HERMES_TRUE@Requires: Hermes => 1.3.0
|
|
|
|
@USE_HERMES_TRUE@%description -n gstreamer-xvideosink
|
|
|
|
@USE_HERMES_TRUE@Xfree86 video sink
|
|
|
|
@USE_HERMES_TRUE@
|
|
|
|
@USE_HERMES_TRUE@%files -n gstreamer-xvideosink
|
|
|
|
@USE_HERMES_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_HERMES_TRUE@%{prefix}/lib/gst/libxvideosink*
|
|
|
|
@USE_HERMES_TRUE@
|
|
|
|
@USE_HERMES_TRUE@%post -n gstreamer-xvideosink
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_HERMES_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-08 11:44:39 +00:00
|
|
|
|
|
|
|
@USE_HERMES_TRUE@%package -n gstreamer-colorspace
|
|
|
|
@USE_HERMES_TRUE@Summary: Gstreamer colorspace conversion plugin
|
|
|
|
@USE_HERMES_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_HERMES_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-08 11:44:39 +00:00
|
|
|
@USE_HERMES_TRUE@Requires: Hermes => 1.3.0
|
|
|
|
@USE_HERMES_TRUE@%description -n gstreamer-colorspace
|
|
|
|
@USE_HERMES_TRUE@Colorspace plugin based on Hermes library
|
|
|
|
@USE_HERMES_TRUE@
|
|
|
|
@USE_HERMES_TRUE@%files -n gstreamer-colorspace
|
|
|
|
@USE_HERMES_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_HERMES_TRUE@%{prefix}/lib/gst/libgstcolorspace*
|
|
|
|
@USE_HERMES_TRUE@
|
|
|
|
@USE_HERMES_TRUE@%post -n gstreamer-colorspace
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_HERMES_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-08 11:44:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
### LAME ###
|
|
|
|
@USE_LAME_TRUE@%package -n gstreamer-lame
|
|
|
|
@USE_LAME_TRUE@Summary: GStreamer plugin encoding mp3 songs
|
|
|
|
@USE_LAME_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_LAME_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-08 11:44:39 +00:00
|
|
|
@USE_LAME_TRUE@
|
|
|
|
@USE_LAME_TRUE@%description -n gstreamer-lame
|
|
|
|
@USE_LAME_TRUE@Plugin for encoding mp3 with lame
|
|
|
|
@USE_LAME_TRUE@
|
|
|
|
@USE_LAME_TRUE@%files -n gstreamer-lame
|
|
|
|
@USE_LAME_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_LAME_TRUE@%{prefix}/lib/gst/libgstlame*
|
|
|
|
@USE_LAME_TRUE@
|
|
|
|
@USE_LAME_TRUE@%post -n gstreamer-lame
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_LAME_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-08 11:44:39 +00:00
|
|
|
|
2002-01-05 14:24:32 +00:00
|
|
|
### MAD ###
|
|
|
|
@USE_MAD_TRUE@%package -n gstreamer-mad
|
|
|
|
@USE_MAD_TRUE@Summary: Plugin using MAD for mp3 decoding
|
|
|
|
@USE_MAD_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MAD_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MAD_TRUE@Requires: gstreamer-plugin-libs = %{ver}
|
|
|
|
@USE_MAD_TRUE@Requires: mad >= 0.13.0
|
|
|
|
@USE_MAD_TRUE@
|
|
|
|
@USE_MAD_TRUE@%description -n gstreamer-mad
|
|
|
|
@USE_MAD_TRUE@Plugin for playback of mp3 songs using the very good MAD library
|
|
|
|
@USE_MAD_TRUE@
|
|
|
|
@USE_MAD_TRUE@%files -n gstreamer-mad
|
|
|
|
@USE_MAD_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_MAD_TRUE@%{prefix}/lib/gst/libgstmad*
|
|
|
|
@USE_MAD_TRUE@
|
|
|
|
@USE_MAD_TRUE@%post -n gstreamer-mad
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MAD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MAD_TRUE@
|
|
|
|
@USE_MAD_TRUE@%postun -n gstreamer-mad
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MAD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MAD_TRUE@/sbin/ldconfig
|
|
|
|
|
|
|
|
### OSS ###
|
|
|
|
@USE_OSS_TRUE@%package -n gstreamer-oss
|
|
|
|
@USE_OSS_TRUE@Summary: Gstreamer plugins for input and output using OSS
|
|
|
|
@USE_OSS_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_OSS_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OSS_TRUE@
|
|
|
|
@USE_OSS_TRUE@%description -n gstreamer-oss
|
|
|
|
@USE_OSS_TRUE@Plugins for output and input to the OpenSoundSytem audio
|
|
|
|
@USE_OSS_TRUE@drivers found in the Linux kernels or commercially available
|
|
|
|
@USE_OSS_TRUE@from OpenSound.
|
|
|
|
@USE_OSS_TRUE@
|
|
|
|
@USE_OSS_TRUE@%files -n gstreamer-oss
|
|
|
|
@USE_OSS_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_OSS_TRUE@%{prefix}/lib/gst/libgstoss*
|
|
|
|
@USE_OSS_TRUE@
|
|
|
|
@USE_OSS_TRUE@%post -n gstreamer-oss
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_OSS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OSS_TRUE@
|
|
|
|
@USE_OSS_TRUE@%postun -n gstreamer-oss
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_OSS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OSS_TRUE@/sbin/ldconfig
|
|
|
|
|
|
|
|
### Vorbis ###
|
|
|
|
@USE_VORBIS_TRUE@%package -n gstreamer-vorbis
|
|
|
|
@USE_VORBIS_TRUE@Summary: Gstreamer plugin for encoding and decoding Ogg Vorbis audio files
|
|
|
|
@USE_VORBIS_TRUE@Group: Libraries/Multimedia
|
|
|
|
@USE_VORBIS_TRUE@Requires: libogg >= 1.0beta4
|
|
|
|
@USE_VORBIS_TRUE@Requires: libvorbis >= 1.0beta4
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_VORBIS_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_VORBIS_TRUE@
|
|
|
|
@USE_VORBIS_TRUE@%description -n gstreamer-vorbis
|
|
|
|
@USE_VORBIS_TRUE@Plugins for creating and playing Ogg Vorbis audio files.
|
|
|
|
@USE_VORBIS_TRUE@
|
|
|
|
@USE_VORBIS_TRUE@%files -n gstreamer-vorbis
|
|
|
|
@USE_VORBIS_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_VORBIS_TRUE@%{prefix}/lib/gst/libgstvorbis*
|
|
|
|
@USE_VORBIS_TRUE@
|
|
|
|
@USE_VORBIS_TRUE@%post -n gstreamer-vorbis
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_VORBIS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_VORBIS_TRUE@
|
|
|
|
@USE_VORBIS_TRUE@%postun -n gstreamer-vorbis
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_VORBIS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_VORBIS_TRUE@/sbin/ldconfig
|
|
|
|
|
|
|
|
@USE_AALIB_TRUE@%package -n gstreamer-aalib
|
|
|
|
@USE_AALIB_TRUE@Summary: Gstreamer plugin for Ascii-art output
|
|
|
|
@USE_AALIB_TRUE@Group: Libraries/Multimedia
|
|
|
|
@USE_AALIB_TRUE@Requires: aalib >= 1.3
|
|
|
|
@USE_AALIB_TRUE@BuildRequires: aalib-devel >= 1.3
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_AALIB_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AALIB_TRUE@
|
|
|
|
@USE_AALIB_TRUE@%description -n gstreamer-aalib
|
|
|
|
@USE_AALIB_TRUE@Plugin for viewing movies in Ascii-art using aalib library.
|
|
|
|
@USE_AALIB_TRUE@
|
|
|
|
@USE_AALIB_TRUE@%files -n gstreamer-aalib
|
|
|
|
@USE_AALIB_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_AALIB_TRUE@%{prefix}/lib/gst/libgstaa*
|
|
|
|
@USE_AALIB_TRUE@
|
|
|
|
@USE_AALIB_TRUE@%post -n gstreamer-aalib
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_AALIB_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-01-08 11:07:06 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@%package -n gstreamer-audiofile
|
|
|
|
@USE_AUDIOFILE_TRUE@Summary: GStreamer plugin audiofile support
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@Requires: audiofile >= 0.2.1
|
2002-01-08 11:07:06 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@Requires: gstreamer-plugin-libs = %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@
|
2002-01-08 11:07:06 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@%description -n gstreamer-audiofile
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@Plugin for supporting reading and writing all files audiofile support
|
|
|
|
@USE_AUDIOFILE_TRUE@
|
2002-01-08 11:07:06 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@%files -n gstreamer-audiofile
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_AUDIOFILE_TRUE@%{prefix}/lib/gst/libafs*
|
|
|
|
@USE_AUDIOFILE_TRUE@
|
2002-01-08 11:07:06 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@%post -n gstreamer-audiofile
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_AUDIOFILE_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_AVIFILE_TRUE@%package -n gstreamer-avi
|
|
|
|
@USE_AVIFILE_TRUE@Summary: Gstreamer plugin for AVI format movie playback
|
|
|
|
@USE_AVIFILE_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_AVIFILE_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-07 20:29:05 +00:00
|
|
|
@USE_AVIFILE_TRUE@Requires: gstreamer-plugin-libs = %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AVIFILE_TRUE@Requires: avifile = 0.6.20011111DD
|
2002-02-04 22:52:02 +00:00
|
|
|
@USE_AVIFILE_TRUE@Requires: gstreamer-colorspace >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_AVIFILE_TRUE@
|
|
|
|
@USE_AVIFILE_TRUE@%description -n gstreamer-avi
|
|
|
|
@USE_AVIFILE_TRUE@Plugins for playback of AVI format media files.
|
|
|
|
@USE_AVIFILE_TRUE@
|
|
|
|
@USE_AVIFILE_TRUE@%files -n gstreamer-avi
|
|
|
|
@USE_AVIFILE_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_AVIFILE_TRUE@%{prefix}/lib/gst/libgstavi*
|
|
|
|
@USE_AVIFILE_TRUE@%{prefix}/lib/gst/libwin*
|
|
|
|
@USE_AVIFILE_TRUE@
|
|
|
|
@USE_AVIFILE_TRUE@%post -n gstreamer-avi
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_AVIFILE_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_CDPARANOIA_TRUE@%package -n gstreamer-cdparanoia
|
|
|
|
@USE_CDPARANOIA_TRUE@Summary: Gstreamer plugin for CD audio input using CDParanoia IV
|
|
|
|
@USE_CDPARANOIA_TRUE@Group: Libraries/Multimedia
|
|
|
|
@USE_CDPARANOIA_TRUE@Requires: cdparanoia >= alpha9.7
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_CDPARANOIA_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_CDPARANOIA_TRUE@BuildRequires: cdparanoia-devel >= alpha9.7
|
|
|
|
@USE_CDPARANOIA_TRUE@
|
|
|
|
@USE_CDPARANOIA_TRUE@%description -n gstreamer-cdparanoia
|
|
|
|
@USE_CDPARANOIA_TRUE@Plugin for ripping audio tracks using cdparanoia under GStreamer
|
|
|
|
@USE_CDPARANOIA_TRUE@
|
|
|
|
@USE_CDPARANOIA_TRUE@%files -n gstreamer-cdparanoia
|
|
|
|
@USE_CDPARANOIA_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_CDPARANOIA_TRUE@%{prefix}/lib/gst/libgstcdparanoia*
|
|
|
|
@USE_CDPARANOIA_TRUE@
|
|
|
|
@USE_CDPARANOIA_TRUE@%post -n gstreamer-cdparanoia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_CDPARANOIA_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_FLAC_TRUE@%package -n gstreamer-flac
|
|
|
|
@USE_FLAC_TRUE@Summary: Gstreamer plugin for FLAC lossless audio format
|
|
|
|
@USE_FLAC_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_FLAC_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_FLAC_TRUE@
|
|
|
|
@USE_FLAC_TRUE@%description -n gstreamer-flac
|
|
|
|
@USE_FLAC_TRUE@Plugin for the free FLAC lossless audio format.
|
|
|
|
@USE_FLAC_TRUE@
|
|
|
|
@USE_FLAC_TRUE@%files -n gstreamer-flac
|
|
|
|
@USE_FLAC_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_FLAC_TRUE@%{prefix}/lib/gst/libgstflac*
|
|
|
|
@USE_FLAC_TRUE@
|
|
|
|
@USE_FLAC_TRUE@%post -n gstreamer-flac
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_FLAC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_GNOME_VFS_TRUE@%package -n gstreamer-gnomevfs
|
|
|
|
@USE_GNOME_VFS_TRUE@Summary: GStreamer plugins for GNOME VFS input and output
|
|
|
|
@USE_GNOME_VFS_TRUE@Group: Libraries/Multimedia
|
2002-02-02 15:50:36 +00:00
|
|
|
@USE_GNOME_VFS_TRUE@Requires: gnome-vfs2 > 1.9.4.00
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_GNOME_VFS_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-02-02 15:50:36 +00:00
|
|
|
@USE_GNOME_VFS_TRUE@BuildRequires: gnome-vfs2-devel > 1.9.4.00
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_GNOME_VFS_TRUE@
|
|
|
|
@USE_GNOME_VFS_TRUE@%description -n gstreamer-gnomevfs
|
|
|
|
@USE_GNOME_VFS_TRUE@Plugins for reading and writing through GNOME VFS.
|
|
|
|
@USE_GNOME_VFS_TRUE@
|
|
|
|
@USE_GNOME_VFS_TRUE@%files -n gstreamer-gnomevfs
|
|
|
|
@USE_GNOME_VFS_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_GNOME_VFS_TRUE@%{prefix}/lib/gst/libgstgnomevfs*
|
|
|
|
@USE_GNOME_VFS_TRUE@
|
|
|
|
@USE_GNOME_VFS_TRUE@%post -n gstreamer-gnomevfs
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_GNOME_VFS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_GSM_TRUE@%package -n gstreamer-gsm
|
|
|
|
@USE_GSM_TRUE@Summary: Gstreamer plugin for GSM lossy audio format
|
|
|
|
@USE_GSM_TRUE@Group: Libraries/Multimedia
|
|
|
|
@USE_GSM_TRUE@Requires: gsm >= 1.0.10
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_GSM_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_GSM_TRUE@
|
|
|
|
@USE_GSM_TRUE@%description -n gstreamer-gsm
|
|
|
|
@USE_GSM_TRUE@Output plugin for GStreamer to convert to GSM lossy audio format.
|
|
|
|
@USE_GSM_TRUE@
|
|
|
|
@USE_GSM_TRUE@%files -n gstreamer-gsm
|
|
|
|
@USE_GSM_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_GSM_TRUE@%{prefix}/lib/gst/libgstgsm*
|
|
|
|
@USE_GSM_TRUE@
|
|
|
|
@USE_GSM_TRUE@%post -n gstreamer-gsm
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_GSM_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-01-29 13:44:50 +00:00
|
|
|
@USE_MJPEGTOOLS_TRUE@%package -n gstreamer-jpegmmx
|
|
|
|
@USE_MJPEGTOOLS_TRUE@Summary: Gstreamer mjpegtools
|
|
|
|
@USE_MJPEGTOOLS_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MJPEGTOOLS_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-29 13:44:50 +00:00
|
|
|
@USE_MJPEGTOOLS_TRUE@
|
|
|
|
@USE_MJPEGTOOLS_TRUE@%description -n gstreamer-jpegmmx
|
|
|
|
@USE_MJPEGTOOLS_TRUE@Mgpegtools based encoding and decoding plugin
|
|
|
|
@USE_MJPEGTOOLS_TRUE@
|
|
|
|
@USE_MJPEGTOOLS_TRUE@%files -n gstreamer-jpegmmx
|
|
|
|
@USE_MJPEGTOOLS_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_MJPEGTOOLS_TRUE@%{prefix}/lib/gst/libgstjpegmmx*
|
|
|
|
@USE_MJPEGTOOLS_TRUE@
|
|
|
|
@USE_MJPEGTOOLS_TRUE@%post -n gstreamer-jpegmmx
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MJPEGTOOLS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-29 13:44:50 +00:00
|
|
|
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg
|
|
|
|
@USE_MPEG2DEC_TRUE@Summary: GStreamer plugins for MPEG video playback and encoding
|
|
|
|
@USE_MPEG2DEC_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@Requires: mpeg2dec => 0.2.0
|
2002-01-08 13:05:31 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@Requires: gstreamer-plugin-libs => %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@Obsoletes: gstreamer-mpeg1
|
|
|
|
@USE_MPEG2DEC_TRUE@Obsoletes: gstreamer-mpeg2
|
|
|
|
@USE_MPEG2DEC_TRUE@
|
|
|
|
@USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg
|
|
|
|
@USE_MPEG2DEC_TRUE@Plugins for playing and encoding MPEG video
|
|
|
|
@USE_MPEG2DEC_TRUE@
|
|
|
|
@USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg
|
|
|
|
@USE_MPEG2DEC_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg1types*
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg1encoder*
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpegaudio*
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmp1*
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpegstream*
|
|
|
|
# @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2play*
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2enc*
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2subt*
|
2002-01-18 17:47:46 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2types*
|
2002-01-05 14:24:32 +00:00
|
|
|
# @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmp2videoparse*
|
|
|
|
@USE_MPEG2DEC_TRUE@
|
|
|
|
@USE_MPEG2DEC_TRUE@%post -n gstreamer-mpeg
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg2dec
|
|
|
|
@USE_MPEG2DEC_TRUE@Summary: GStreamer plugins for Mpeg level 2 playback
|
|
|
|
@USE_MPEG2DEC_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@Requires: mpeg2dec >= 0.2.0
|
|
|
|
@USE_MPEG2DEC_TRUE@
|
|
|
|
@USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg2dec
|
|
|
|
@USE_MPEG2DEC_TRUE@Plugins for playing mpeg level 2 encoded movies
|
|
|
|
@USE_MPEG2DEC_TRUE@
|
|
|
|
@USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg2dec
|
|
|
|
@USE_MPEG2DEC_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2dec*
|
|
|
|
@USE_MPEG2DEC_TRUE@
|
|
|
|
@USE_MPEG2DEC_TRUE@%post -n gstreamer-mpeg2dec
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_SDL_TRUE@%package -n gstreamer-sdl
|
|
|
|
@USE_SDL_TRUE@Summary: Gstreamer plugin for outputing to SDL
|
|
|
|
@USE_SDL_TRUE@Group: Libraries/Multimedia
|
|
|
|
@USE_SDL_TRUE@Requires: SDL >= 1.2.0
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_SDL_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_SDL_TRUE@BuildRequires: SDL-devel >= 1.2.0
|
|
|
|
@USE_SDL_TRUE@
|
|
|
|
@USE_SDL_TRUE@%description -n gstreamer-sdl
|
|
|
|
@USE_SDL_TRUE@Plugin for sending output to the Simple Direct Media architecture.
|
|
|
|
@USE_SDL_TRUE@(http://www.libsdl.org). Usefull for fullscreen playback.
|
|
|
|
@USE_SDL_TRUE@
|
|
|
|
@USE_SDL_TRUE@%files -n gstreamer-sdl
|
|
|
|
@USE_SDL_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_SDL_TRUE@%{prefix}/lib/gst/libsdl*
|
|
|
|
@USE_SDL_TRUE@
|
|
|
|
@USE_SDL_TRUE@%post -n gstreamer-sdl
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_SDL_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-01-08 13:05:31 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%package -n gstreamer-openquicktime
|
|
|
|
@USE_OPENQUICKTIME_TRUE@Summary: GStreamer OpenQuicktime video Plugin
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-02-02 15:59:00 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@Requires: openquicktime => 0.9
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@
|
2002-01-08 13:05:31 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%description -n gstreamer-openquicktime
|
|
|
|
@USE_OPENQUICKTIME_TRUE@Plugin which uses the OpenQuicktime library
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@from 3ivx to play Quicktime movies.
|
2002-01-08 13:05:31 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@(http://openquicktime.sourceforge.net/)
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@
|
2002-01-08 13:05:31 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%files -n gstreamer-openquicktime
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%defattr(-, root, root)
|
2002-01-08 13:09:47 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%{prefix}/lib/gst/libgstopenquicktime*
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@
|
2002-01-08 13:05:31 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%post -n gstreamer-openquicktime
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_OPENQUICKTIME_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
# Video 4 Linux
|
|
|
|
@USE_V4L_TRUE@%package -n gstreamer-v4l
|
|
|
|
@USE_V4L_TRUE@Summary: GStreamer video for linux input plugin
|
|
|
|
@USE_V4L_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_V4L_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_V4L_TRUE@
|
|
|
|
@USE_V4L_TRUE@%description -n gstreamer-v4l
|
|
|
|
@USE_V4L_TRUE@Plugin for accessing video for Linux streams.
|
|
|
|
@USE_V4L_TRUE@
|
|
|
|
@USE_V4L_TRUE@%files -n gstreamer-v4l
|
|
|
|
@USE_V4L_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_V4L_TRUE@%{prefix}/lib/gst/libv4l*
|
|
|
|
@USE_V4L_TRUE@
|
|
|
|
@USE_V4L_TRUE@%post -n gstreamer-v4l
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_V4L_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
# ALSA Audio plugin
|
|
|
|
@USE_ALSA_TRUE@%package -n gstreamer-alsa
|
|
|
|
@USE_ALSA_TRUE@Summary: GStreamer plugins for the ALSA sound architecture
|
|
|
|
@USE_ALSA_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ALSA_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_ALSA_TRUE@
|
|
|
|
@USE_ALSA_TRUE@%description -n gstreamer-alsa
|
|
|
|
@USE_ALSA_TRUE@Input and output plugin for the ALSA soundcard driver architecture.
|
|
|
|
@USE_ALSA_TRUE@
|
|
|
|
@USE_ALSA_TRUE@%files -n gstreamer-alsa
|
|
|
|
@USE_ALSA_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_ALSA_TRUE@%{prefix}/lib/gst/libgstalsa*
|
|
|
|
@USE_ALSA_TRUE@
|
|
|
|
@USE_ALSA_TRUE@%post -n gstreamer-alsa
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ALSA_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_DVDREAD_TRUE@%package -n gstreamer-libdvd
|
|
|
|
@USE_DVDREAD_TRUE@Summary: GStreamer plugins for DVD playback
|
|
|
|
@USE_DVDREAD_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_DVDREAD_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_DVDREAD_TRUE@
|
|
|
|
@USE_DVDREAD_TRUE@%description -n gstreamer-libdvd
|
|
|
|
@USE_DVDREAD_TRUE@Input and output plugin for the ALSA soundcard driver architecture.
|
|
|
|
@USE_DVDREAD_TRUE@
|
|
|
|
@USE_DVDREAD_TRUE@%files -n gstreamer-libdvd
|
|
|
|
@USE_DVDREAD_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_DVDREAD_TRUE@%{prefix}/lib/gst/libdvd*
|
|
|
|
@USE_DVDREAD_TRUE@
|
|
|
|
@USE_DVDREAD_TRUE@%post -n gstreamer-libdvd
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_DVDREAD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_A52DEC_TRUE@%package -n gstreamer-a52dec
|
|
|
|
@USE_A52DEC_TRUE@Summary: GStreamer VOB decoder plugin
|
|
|
|
@USE_A52DEC_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_A52DEC_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_A52DEC_TRUE@Requires: a52dec >= 0.7.0
|
|
|
|
@USE_A52DEC_TRUE@
|
|
|
|
@USE_A52DEC_TRUE@%description -n gstreamer-a52dec
|
|
|
|
@USE_A52DEC_TRUE@Plugin for decoding of VOB files
|
|
|
|
@USE_A52DEC_TRUE@
|
|
|
|
@USE_A52DEC_TRUE@%files -n gstreamer-a52dec
|
|
|
|
@USE_A52DEC_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_A52DEC_TRUE@%{prefix}/lib/gst/libgsta52dec*
|
|
|
|
@USE_A52DEC_TRUE@
|
|
|
|
@USE_A52DEC_TRUE@%post -n gstreamer-a52dec
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_A52DEC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_MIKMOD_TRUE@%package -n gstreamer-mikmod
|
|
|
|
@USE_MIKMOD_TRUE@Summary: GStreamer Mikmod plugin
|
|
|
|
@USE_MIKMOD_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MIKMOD_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_MIKMOD_TRUE@
|
|
|
|
@USE_MIKMOD_TRUE@%description -n gstreamer-mikmod
|
|
|
|
@USE_MIKMOD_TRUE@Plugin for playback of module files supported by mikmod under GStreamer
|
|
|
|
@USE_MIKMOD_TRUE@
|
|
|
|
@USE_MIKMOD_TRUE@%files -n gstreamer-mikmod
|
|
|
|
@USE_MIKMOD_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_MIKMOD_TRUE@%{prefix}/lib/gst/libgstmikmod*
|
|
|
|
@USE_MIKMOD_TRUE@
|
|
|
|
@USE_MIKMOD_TRUE@%post -n gstreamer-mikmod
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_MIKMOD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_SIDPLAY_TRUE@%package -n gstreamer-sid
|
|
|
|
@USE_SIDPLAY_TRUE@Summary: GStreamer Sid C64 music plugin
|
|
|
|
@USE_SIDPLAY_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_SIDPLAY_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_SIDPLAY_TRUE@Requires: libsidplay => 1.36.0
|
|
|
|
@USE_SIDPLAY_TRUE@%description -n gstreamer-sid
|
|
|
|
@USE_SIDPLAY_TRUE@Plugin for playback of C64 SID format music files
|
|
|
|
@USE_SIDPLAY_TRUE@
|
|
|
|
@USE_SIDPLAY_TRUE@%files -n gstreamer-sid
|
|
|
|
@USE_SIDPLAY_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_SIDPLAY_TRUE@%{prefix}/lib/gst/libgstsid*
|
|
|
|
@USE_SIDPLAY_TRUE@
|
|
|
|
@USE_SIDPLAY_TRUE@%post -n gstreamer-sid
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_SIDPLAY_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_RTP_TRUE@%package -n gstreamer-rtp
|
|
|
|
@USE_RTP_TRUE@Summary: GStreamer RTP plugin
|
|
|
|
@USE_RTP_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_RTP_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_RTP_TRUE@Requires: librtp >= 0.1
|
|
|
|
@USE_RTP_TRUE@
|
|
|
|
@USE_RTP_TRUE@%description -n gstreamer-rtp
|
|
|
|
@USE_RTP_TRUE@Library for transfering data with the RTP protocol
|
|
|
|
@USE_RTP_TRUE@
|
|
|
|
@USE_RTP_TRUE@%files -n gstreamer-rtp
|
|
|
|
@USE_RTP_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_RTP_TRUE@%{prefix}/lib/gst/libgstrtp*
|
|
|
|
@USE_RTP_TRUE@
|
|
|
|
@USE_RTP_TRUE@%post -n gstreamer-rtp
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_RTP_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_ARTS_TRUE@%package -n gstreamer-artsd
|
|
|
|
@USE_ARTS_TRUE@Summary: GStreamer artsd output plugin
|
|
|
|
@USE_ARTS_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ARTS_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_ARTS_TRUE@
|
|
|
|
@USE_ARTS_TRUE@%description -n gstreamer-artsd
|
|
|
|
@USE_ARTS_TRUE@Plugin for outputing to artsd sound server
|
|
|
|
@USE_ARTS_TRUE@
|
|
|
|
@USE_ARTS_TRUE@%files -n gstreamer-artsd
|
|
|
|
@USE_ARTS_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_ARTS_TRUE@%{prefix}/lib/gst/libartsd*
|
|
|
|
@USE_ARTS_TRUE@
|
|
|
|
@USE_ARTS_TRUE@%post -n gstreamer-artsd
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_ARTS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
@USE_RAW1394_TRUE@%package -n gstreamer-dv
|
|
|
|
@USE_RAW1394_TRUE@Summary: GStreamer dv plugin
|
|
|
|
@USE_RAW1394_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_RAW1394_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
@USE_RAW1394_TRUE@
|
|
|
|
@USE_RAW1394_TRUE@%description -n gstreamer-dv
|
|
|
|
@USE_RAW1394_TRUE@Plugin for digital video support
|
|
|
|
@USE_RAW1394_TRUE@
|
|
|
|
@USE_RAW1394_TRUE@%files -n gstreamer-dv
|
|
|
|
@USE_RAW1394_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_RAW1394_TRUE@%{prefix}/lib/gst/gstdv*
|
|
|
|
@USE_RAW1394_TRUE@
|
|
|
|
@USE_RAW1394_TRUE@%post -n gstreamer-dv
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_RAW1394_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%package -n gstreamer-audio-effects
|
|
|
|
Summary: GStreamer audio effects plugin
|
2002-01-05 14:24:32 +00:00
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%description -n gstreamer-audio-effects
|
2002-02-03 19:23:27 +00:00
|
|
|
Plugin with various audio effects including resampling,
|
|
|
|
sine waves generation, silence generation plugin
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%files -n gstreamer-audio-effects
|
2002-01-05 14:24:32 +00:00
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstresample*
|
|
|
|
%{prefix}/lib/gst/libgstsine*
|
2002-02-03 19:23:27 +00:00
|
|
|
%{prefix}/lib/gst/libgstsilence*
|
|
|
|
%{prefix}/lib/gst/libgststereo*
|
|
|
|
%{prefix}/lib/gst/libgstvol*
|
|
|
|
%{prefix}/lib/gst/libgstplayondemand*
|
|
|
|
%{prefix}/lib/gst/libgstspeed*
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%post -n gstreamer-audio-effects
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-lavencode
|
|
|
|
Summary: GStreamer YUV to LAV converter
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-lavencode
|
|
|
|
It takes YUV video frames and adds a header in front of it so it can be processed with the lavtools from mjpeg
|
|
|
|
|
|
|
|
%files -n gstreamer-lavencode
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgsty4m*
|
|
|
|
|
|
|
|
%post -n gstreamer-lavencode
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-qcam
|
|
|
|
Summary: GStreamer QuickCam plugin
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-qcam
|
|
|
|
Plugin for accessing a Quickcam source
|
|
|
|
|
|
|
|
%files -n gstreamer-qcam
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstqcam*
|
|
|
|
|
|
|
|
%post -n gstreamer-qcam
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-vcd
|
|
|
|
Summary: GStreamer Video CD plugin
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-vcd
|
2002-01-18 16:06:12 +00:00
|
|
|
Video CD parsing and playback
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%files -n gstreamer-vcd
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libvcd*
|
2002-01-18 17:00:47 +00:00
|
|
|
%{prefix}/lib/gst/libgstcdxa*
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-ladspa
|
|
|
|
Summary: Gstreamer wrapper for LADSPA plugins
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%files -n gstreamer-ladspa
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstladspa*
|
|
|
|
|
|
|
|
%description -n gstreamer-ladspa
|
|
|
|
Plugin which wraps LADSPA plugins for use by GStreamer applications.
|
|
|
|
|
|
|
|
%post -n gstreamer-ladspa
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-udp
|
2002-02-12 11:37:29 +00:00
|
|
|
Summary: GStreamer plugins for UDP tranport
|
2002-01-05 14:24:32 +00:00
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-udp
|
|
|
|
Plugins for UDP transport
|
|
|
|
|
|
|
|
%files -n gstreamer-udp
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstudp*
|
|
|
|
|
|
|
|
%post -n gstreamer-udp
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-flx
|
2002-02-12 11:37:29 +00:00
|
|
|
Summary: GStreamer plugin for FLI/FLX animation format
|
2002-01-05 14:24:32 +00:00
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-02-04 22:52:02 +00:00
|
|
|
Requires: gstreamer-plugin-libs = %{ver}
|
|
|
|
Requires: gstreamer-colorspace >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
%description -n gstreamer-flx
|
|
|
|
Plugin for playing FLI/FLX animations under GStreamer
|
|
|
|
|
|
|
|
%files -n gstreamer-flx
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstflx*
|
|
|
|
|
|
|
|
%post -n gstreamer-flx
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-deinterlace
|
|
|
|
Summary: GStreamer Video deinterlacer
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-deinterlace
|
|
|
|
Video deinterlace plugin
|
|
|
|
|
|
|
|
%files -n gstreamer-deinterlace
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstdeinterlace*
|
|
|
|
|
|
|
|
%post -n gstreamer-deinterlace
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-visualisation
|
2002-02-12 11:37:29 +00:00
|
|
|
Summary: GStreamer visualisations plugins
|
2002-01-05 14:24:32 +00:00
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-visualisation
|
2002-02-03 19:23:27 +00:00
|
|
|
Various plugins for visual effects to use with audio. Included are Smoothwave, Spectrum, Goom, Chart and vumeter
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%files -n gstreamer-visualisation
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstsmooth*
|
|
|
|
%{prefix}/lib/gst/libgstspectrum*
|
|
|
|
%{prefix}/lib/gst/libgstvu*
|
2002-02-03 19:05:07 +00:00
|
|
|
%{prefix}/lib/gst/libgstgoom*
|
2002-02-03 19:23:27 +00:00
|
|
|
%{prefix}/lib/gst/libchart*
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%post -n gstreamer-visualisation
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%package -n gstreamer-plugin-libs
|
|
|
|
Summary: GStreamer support libraries
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-plugin-libs
|
|
|
|
GStreamer support libraries
|
|
|
|
|
|
|
|
%files -n gstreamer-plugin-libs
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstaudio*
|
|
|
|
%{prefix}/lib/gst/libgstidct*
|
|
|
|
%{prefix}/lib/gst/libgstriff*
|
|
|
|
%{prefix}/lib/gst/libgstresample*
|
|
|
|
|
2002-02-03 19:27:21 +00:00
|
|
|
%package -n gstreamer-misc
|
2002-01-05 14:24:32 +00:00
|
|
|
Summary: GStreamer plugins for various effects
|
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-03 19:27:21 +00:00
|
|
|
%description -n gstreamer-misc
|
2002-02-03 19:23:27 +00:00
|
|
|
Plugins for various codecs, effects
|
|
|
|
and so on.
|
2002-01-05 14:24:32 +00:00
|
|
|
|
|
|
|
%files -n gstreamer-misc
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstadder*
|
|
|
|
%{prefix}/lib/gst/libgstalaw*
|
|
|
|
%{prefix}/lib/gst/libgstjpeg*
|
|
|
|
%{prefix}/lib/gst/libgstintfloat*
|
|
|
|
%{prefix}/lib/gst/libgstlevel*
|
|
|
|
%{prefix}/lib/gst/libgstmedian*
|
|
|
|
%{prefix}/lib/gst/libgstmono2stereo*
|
|
|
|
%{prefix}/lib/gst/libgstmulaw*
|
|
|
|
%{prefix}/lib/gst/libgstpassthrough*
|
|
|
|
%{prefix}/lib/gst/libgstrtjpe*
|
|
|
|
|
|
|
|
%post -n gstreamer-misc
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%package -n gstreamer-audio-formats
|
|
|
|
Summary: GStreamer audio format plugin
|
2002-01-05 14:24:32 +00:00
|
|
|
Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
Requires: gstreamer-plugins >= %{ver}
|
2002-02-04 22:52:02 +00:00
|
|
|
Requires: gstreamer-plugin-libs = %{ver}
|
2002-02-12 12:01:45 +00:00
|
|
|
|
|
|
|
%description -n gstreamer-audio-formats
|
2002-02-03 19:23:27 +00:00
|
|
|
Plugin for playback of wav, au and mp3 audio files
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%files -n gstreamer-audio-formats
|
2002-01-05 14:24:32 +00:00
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/lib/gst/libgstwavparse*
|
2002-02-03 19:23:27 +00:00
|
|
|
%{prefix}/lib/gst/libgstparseau*
|
|
|
|
%{prefix}/lib/gst/libgstmp3types*
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2002-02-12 11:37:29 +00:00
|
|
|
%post -n gstreamer-audio-formats
|
2002-02-12 17:40:01 +00:00
|
|
|
%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|
2002-02-03 19:05:07 +00:00
|
|
|
|
|
|
|
@USE_SHOUT_TRUE@%package -n gstreamer-icecast
|
2002-02-12 11:37:29 +00:00
|
|
|
@USE_SHOUT_TRUE@Summary: GStreamer Icecast broadcasting plugin
|
2002-02-03 19:05:07 +00:00
|
|
|
@USE_SHOUT_TRUE@Group: Libraries/Multimedia
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_SHOUT_TRUE@Requires: gstreamer-plugins >= %{ver}
|
2002-02-04 22:52:02 +00:00
|
|
|
@USE_SHOUT_TRUE@Requires: gstreamer-plugin-libs = %{ver}
|
|
|
|
@USE_SHOUT_TRUE@Requires: libshout >= 1.0.5
|
2002-02-03 19:05:07 +00:00
|
|
|
@USE_SHOUT_TRUE@%description -n gstreamer-icecast
|
|
|
|
@USE_SHOUT_TRUE@Plugin for broadcasting audio with the Icecast server
|
|
|
|
|
|
|
|
@USE_SHOUT_TRUE@%files -n gstreamer-icecast
|
|
|
|
@USE_SHOUT_TRUE@%defattr(-, root, root)
|
|
|
|
@USE_SHOUT_TRUE@%{prefix}/lib/gst/libgstshout*
|
|
|
|
|
|
|
|
@USE_SHOUT_TRUE@%post -n gstreamer-icecast
|
2002-02-12 17:40:01 +00:00
|
|
|
@USE_SHOUT_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
|