2005-09-02 17:01:14 +00:00
|
|
|
%define majorminor @GST_MAJORMINOR@
|
|
|
|
%define gstreamer gstreamer09
|
|
|
|
%define gstregister %{_bindir}/gst-register-%{majorminor}
|
|
|
|
%define register %{gstregister} > /dev/null 2>&1 || :
|
2004-09-25 14:52:29 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
%define gst_minver 0.9.1
|
2004-09-25 14:52:29 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
Name: %{gstreamer}-plugins-ugly
|
2002-04-13 00:46:23 +00:00
|
|
|
Version: @VERSION@
|
2005-09-02 17:01:14 +00:00
|
|
|
Release: @GST_PLUGINS_UGLY_VERSION_RELEASE@.gst
|
|
|
|
Summary: GStreamer streaming media framework "ugly" plug-ins
|
2002-04-13 00:46:23 +00:00
|
|
|
|
2004-03-02 11:53:50 +00:00
|
|
|
Group: Applications/Multimedia
|
2002-06-17 14:23:21 +00:00
|
|
|
License: LGPL
|
2005-09-02 17:01:14 +00:00
|
|
|
URL: http://gstreamer.freedesktop.org/
|
|
|
|
Vendor: GStreamer Backpackers Team <package@gstreamer.freedesktop.org>
|
|
|
|
Source: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2002-04-13 00:46:23 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
Requires: %{gstreamer} >= %{gst_minver}
|
|
|
|
BuildRequires: %{gstreamer}-devel >= %{gst_minver}
|
2004-09-25 14:52:29 +00:00
|
|
|
BuildRequires: gcc-c++
|
2003-07-07 22:40:55 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
@USE_SIDPLAY_TRUE@BuildRequires: libsidplay-devel >= 1.36.0
|
|
|
|
# @USE_A52DEC_TRUE@BuildRequires: a52dec-devel >= 0.7.3
|
|
|
|
# @USE_DVDNAV_TRUE@BuildRequires: libdvdnav-devel >= 0.1.3
|
|
|
|
# @USE_DVDREAD_TRUE@BuildRequires: libdvdread-devel >= 0.9.0
|
|
|
|
@USE_LAME_TRUE@BuildRequires: lame-devel >= 3.89
|
|
|
|
@USE_MAD_TRUE@BuildRequires: libid3tag-devel >= 0.15.0
|
|
|
|
@USE_MAD_TRUE@BuildRequires: libmad-devel >= 0.15.0
|
|
|
|
@USE_MPEG2DEC_TRUE@BuildRequires: mpeg2dec-devel >= 0.4.0
|
|
|
|
|
|
|
|
@USE_SIDPLAY_TRUE@Provides: gstreamer-sid = %{version}-%{release}
|
|
|
|
@USE_LAME_TRUE@Provides: gstreamer-lame = %{version}-%{release}
|
|
|
|
@USE_MAD_TRUE@Provides: gstreamer-mad = %{version}-%{release}
|
|
|
|
# @USE_A52DEC_TRUE@Provides: gstreamer- = %{version}-%{release}
|
|
|
|
# @USE_DVDNAV_TRUE@Provides: gstreamer-dvdnavsrc = %{version}-%{release}
|
|
|
|
# @USE_DVDREAD_TRUE@Provides: gstreamer-dvdreadsrc = %{version}-%{release}
|
|
|
|
@USE_MPEG2DEC_TRUE@Provides: gstreamer-mpeg2dec = %{version}-%{release}
|
2003-07-07 22:40:55 +00:00
|
|
|
|
2002-01-05 14:24:32 +00:00
|
|
|
%description
|
2005-09-02 17:01:14 +00:00
|
|
|
GStreamer is a streaming media framework, based on graphs of elements which
|
|
|
|
operate on media data.
|
|
|
|
|
|
|
|
This package contains well-written plug-ins that can't be shipped in
|
|
|
|
gstreamer-plugins-good because:
|
|
|
|
- the license is not LGPL
|
|
|
|
- the license of the library is not LGPL
|
|
|
|
- there are possible licensing issues with the code.
|
|
|
|
|
|
|
|
# %package devel
|
|
|
|
# Summary: Development files for GStreamer Ugly Plugins
|
|
|
|
# Group: Development/Libraries
|
|
|
|
#
|
|
|
|
# Requires: %{name} = %{version}-%{release}
|
|
|
|
#
|
|
|
|
# %description devel
|
|
|
|
# GStreamer is a streaming media framework, based on graphs of elements which
|
|
|
|
# operate on media data.
|
|
|
|
#
|
|
|
|
# This package contains well-written plug-ins that can't be shipped in
|
|
|
|
# gstreamer-plugins-good because:
|
|
|
|
# - the license is not LGPL
|
|
|
|
# - the license of the library is not LGPL
|
|
|
|
# - there are possible licensing issues with the code.
|
|
|
|
#
|
|
|
|
# This package contains development files and documentation.
|
2002-03-01 15:46:26 +00:00
|
|
|
|
2002-01-05 14:24:32 +00:00
|
|
|
%prep
|
2005-09-02 17:01:14 +00:00
|
|
|
%setup -q -n gst-plugins-ugly-%{version}
|
2002-01-05 14:24:32 +00:00
|
|
|
%build
|
2004-03-01 16:36:35 +00:00
|
|
|
%configure \
|
2002-07-09 10:45:37 +00:00
|
|
|
--enable-debug \
|
2002-04-13 00:46:23 +00:00
|
|
|
--enable-DEBUG
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2004-03-01 16:36:35 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
2002-05-10 21:56:15 +00:00
|
|
|
%install
|
2004-03-01 16:36:35 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
# Install doc temporarily in order to be included later by rpm
|
2004-03-01 16:36:35 +00:00
|
|
|
%makeinstall
|
2005-09-02 17:01:14 +00:00
|
|
|
|
2002-10-20 01:08:34 +00:00
|
|
|
# Clean out files that should not be part of the rpm.
|
2002-12-12 10:26:43 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.la
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/*.a
|
2002-10-20 01:08:34 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
2005-09-02 17:01:14 +00:00
|
|
|
|
|
|
|
# %find_lang gst-plugins-ugly-%{majorminor}
|
2002-10-20 01:08:34 +00:00
|
|
|
|
2002-01-05 14:24:32 +00:00
|
|
|
%clean
|
2004-03-01 16:36:35 +00:00
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2002-01-05 14:24:32 +00:00
|
|
|
|
2004-03-27 18:57:09 +00:00
|
|
|
%post
|
2005-09-02 17:01:14 +00:00
|
|
|
%{register}
|
2004-09-25 14:52:29 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
%postun
|
|
|
|
%{register}
|
2004-09-25 14:52:29 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
%files
|
|
|
|
#%files -f gst-plugins-ugly-%{majorminor}.lang
|
2004-09-25 14:52:29 +00:00
|
|
|
%defattr(-, root, root, -)
|
2005-09-02 17:01:14 +00:00
|
|
|
%doc AUTHORS COPYING README REQUIREMENTS
|
2004-09-25 14:52:29 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
# plugins without external dependencies
|
|
|
|
#%{_libdir}/gstreamer-%{majorminor}/libgstac3parse.so
|
|
|
|
#%{_libdir}/gstreamer-%{majorminor}/libgstasfdemux.so
|
|
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstdvdlpcmdec.so
|
|
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstmpegaudioparse.so
|
|
|
|
#%{_libdir}/gstreamer-%{majorminor}/libgstmpegstream.so
|
|
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstrmdemux.so
|
|
|
|
#%{_libdir}/gstreamer-%{majorminor}/libgstsynaesthesia.so
|
2004-09-25 14:52:29 +00:00
|
|
|
|
2005-09-02 17:01:14 +00:00
|
|
|
# plugins with dependencies
|
|
|
|
@USE_SIDPLAY_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstsid.so
|
2005-08-24 17:40:17 +00:00
|
|
|
@USE_LAME_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstlame.so
|
2005-07-05 15:26:56 +00:00
|
|
|
@USE_MAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmad.so
|
2005-05-06 12:43:59 +00:00
|
|
|
# @USE_A52DEC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgsta52dec.so
|
|
|
|
# @USE_DVDNAV_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdvdnavsrc.so
|
|
|
|
# @USE_DVDREAD_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstdvdreadsrc.so
|
2005-07-25 15:23:42 +00:00
|
|
|
@USE_MPEG2DEC_TRUE@%{_libdir}/gstreamer-%{majorminor}/libgstmpeg2dec.so
|
2005-09-02 17:01:14 +00:00
|
|
|
|
|
|
|
# %files devel
|
|
|
|
# %defattr(-, root, root, -)
|
|
|
|
# %doc %{_datadir}/gtk-doc/html/gstreamer-plugins-ugly-plugins-%{majorminor}/*
|
2002-10-29 14:53:42 +00:00
|
|
|
|
2002-03-13 16:40:16 +00:00
|
|
|
%changelog
|
2005-09-02 17:01:14 +00:00
|
|
|
* Fri Sep 02 2005 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- clean out for split into ugly
|
|
|
|
|
2005-02-22 18:14:34 +00:00
|
|
|
* Mon Feb 14 2005 Christian Schaller <christian at fluendo dot com>
|
|
|
|
- Add vnc plugin
|
|
|
|
|
|
|
|
* Wed Jan 19 2005 Christian Schaller <christian at fluendo dot com>
|
|
|
|
- add dv1394 plugin
|
|
|
|
|
2004-12-22 22:45:41 +00:00
|
|
|
* Wed Dec 22 2004 Christian Schaller <christian at fluendo dot com>
|
|
|
|
- Add -plugins- to plugin names
|
|
|
|
|
2004-12-22 10:48:12 +00:00
|
|
|
* Thu Dec 9 2004 Christian Schaller <christian a fluendo dot com>
|
|
|
|
- Add the mms plugin
|
|
|
|
|
2004-10-06 15:24:31 +00:00
|
|
|
* Wed Oct 06 2004 Christian Schaller <christian at fluendo dot com>
|
|
|
|
- Add Wim's new mng decoder plugin
|
|
|
|
- add shout2 plugin for Zaheer, hope it is correctly done :)
|
|
|
|
|
2004-09-29 19:00:31 +00:00
|
|
|
* Wed Sep 29 2004 Christian Schaller <uraeus at gnome dot org>
|
|
|
|
- Fix USE statement for V4L2
|
|
|
|
|
|
|
|
* Thu Sep 28 2004 Christian Schaller <uraeus at gnome dot org>
|
2004-09-28 11:01:10 +00:00
|
|
|
- Remove kio plugin (as it was broken)
|
|
|
|
|
2004-09-25 14:52:29 +00:00
|
|
|
* Wed Sep 21 2004 Christian Schaller <uraeus at gnome dot org>
|
|
|
|
- Reorganize SPEC to fit better with fedora.us and freshrpms.net packages
|
|
|
|
- Make sure gstinterfaces.so is in the package
|
|
|
|
- Add all new plugins
|
|
|
|
|
2004-03-15 17:17:28 +00:00
|
|
|
* Mon Mar 15 2004 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- put back media-info
|
|
|
|
- add ffmpegcolorspace plugin
|
|
|
|
|
2004-03-27 18:57:09 +00:00
|
|
|
* Sun Mar 07 2004 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Remove rm commands for media-info stuff
|
|
|
|
- Add libdir/*
|
|
|
|
|
|
|
|
* Thu Mar 04 2004 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Add missing gconf schema install in %post
|
|
|
|
|
2004-03-02 11:53:50 +00:00
|
|
|
* Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- Libraries/Multimedia doesn't exist, remove it
|
|
|
|
|
2004-03-01 23:48:31 +00:00
|
|
|
* Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- added speex plugin.
|
|
|
|
|
2004-03-01 16:36:35 +00:00
|
|
|
* Mon Mar 01 2004 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- Cleaned up the mess. Could we PLEASE keep this sort of organized and
|
|
|
|
- alphabetic for easy lookup ?
|
|
|
|
|
2004-02-14 11:09:58 +00:00
|
|
|
* Fri Feb 13 2004 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Added latest new headers
|
|
|
|
|
2004-01-21 06:57:30 +00:00
|
|
|
* Wed Jan 21 2004 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- added NAS plugin
|
2004-02-14 11:09:58 +00:00
|
|
|
- added i18n locale dir
|
2004-01-21 06:57:30 +00:00
|
|
|
|
2004-01-16 17:42:20 +00:00
|
|
|
* Fri Jan 16 2004 Christian Schaller <uraeus@gnome.org>
|
|
|
|
- added libcaca plugin
|
|
|
|
- added libgstcolorspace - fixed name of libgsthermescolorspace
|
|
|
|
|
|
|
|
* Wed Jan 14 2004 Christian Schaller <uraeus@gnome.org>
|
|
|
|
- Add gamma plugin
|
|
|
|
- Have the pixbuf plugin deleted for now
|
|
|
|
|
2003-12-18 11:18:40 +00:00
|
|
|
* Wed Dec 18 2003 Christian Schaller <Uraeus@gnome.org>
|
2003-12-17 22:56:57 +00:00
|
|
|
- remove gsttagediting.h as it is gone
|
2003-12-18 11:18:40 +00:00
|
|
|
- replace it with gst/tag/tag.h
|
2004-03-01 23:48:31 +00:00
|
|
|
|
2003-11-23 12:06:35 +00:00
|
|
|
* Sun Nov 23 2003 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Update spec file for latest changes
|
2003-11-23 21:21:12 +00:00
|
|
|
- add faad plugin
|
2004-03-01 23:48:31 +00:00
|
|
|
|
2003-10-16 21:11:37 +00:00
|
|
|
* Thu Oct 16 2003 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Add new colorbalance and tuner and xoverlay stuff
|
|
|
|
- Change name of kde-audio-devel to arts-devel
|
|
|
|
|
2003-09-27 18:53:21 +00:00
|
|
|
* Sat Sep 27 2003 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Add majorminor to man page names
|
|
|
|
- add navigation lib to package
|
|
|
|
|
2003-09-11 19:02:00 +00:00
|
|
|
* Tue Sep 11 2003 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Add -%{majorminor} to each instance of gst-register
|
|
|
|
|
2003-08-19 21:05:26 +00:00
|
|
|
* Tue Aug 19 2003 Christian Schaller <Uraeus@Gnome.org>
|
|
|
|
- Add new plugins
|
|
|
|
|
2003-07-12 12:49:14 +00:00
|
|
|
* Sat Jul 12 2003 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- move gst/ mpeg plugins to base package
|
|
|
|
- remove hermes conditional from snapshot
|
|
|
|
- remove one instance of resample plugin
|
|
|
|
- fix up silly versioned plugins efence and rmdemux
|
|
|
|
|
2003-07-07 22:40:55 +00:00
|
|
|
* Sat Jul 05 2003 Christian Schaller <Uraeus@gnome.org>
|
2003-07-12 12:49:14 +00:00
|
|
|
- Major overhaul of SPEC file to make it compatible with what Red Hat ships
|
|
|
|
as default
|
|
|
|
- Probably a little less sexy, but cross-distro SPEC files are a myth anyway
|
|
|
|
so making it convenient for RH users wins out
|
|
|
|
- Keeping conditionals even with new re-org so that developers building the
|
|
|
|
RPMS don't need everything installed
|
|
|
|
- Add bunch of obsoletes to ease migration from earlier official GStreamer RPMS
|
2003-07-07 22:40:55 +00:00
|
|
|
- Remove plugins that doesn't exist anymore
|
2003-07-12 12:49:14 +00:00
|
|
|
|
2003-03-02 11:29:18 +00:00
|
|
|
* Sun Mar 02 2003 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Remove USE_RTP statement from RTP plugin
|
|
|
|
- Move RTP plugin to no-deps section
|
|
|
|
|
2003-03-01 15:04:35 +00:00
|
|
|
* Sat Mar 01 2003 Christian Schaller <Uraeus@gnome.org>
|
|
|
|
- Remove videosink from SPEC
|
2003-01-23 13:06:24 +00:00
|
|
|
* Thu Jan 23 2003 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- various fixes
|
|
|
|
- make video output packages provide gstreamer-videosink
|
|
|
|
|
|
|
|
* Thu Jan 23 2003 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- split out ffmpeg stuff to separate plugin
|
|
|
|
|
2002-12-27 16:23:01 +00:00
|
|
|
* Fri Dec 27 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- add virtual provides for audio sources and sinks
|
|
|
|
|
2002-12-15 21:48:34 +00:00
|
|
|
* Sun Dec 15 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
|
|
- Update mpeg2dec REQ to be 0.3.1
|
2002-12-27 16:23:01 +00:00
|
|
|
|
2002-12-11 21:58:36 +00:00
|
|
|
* Tue Dec 10 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- only install schema once
|
|
|
|
- move out devel lib stuff to -devel package
|
|
|
|
|
2002-12-08 14:50:04 +00:00
|
|
|
* Sun Dec 08 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
2002-12-08 19:55:32 +00:00
|
|
|
- fix location of libgstpng
|
2002-12-08 14:50:04 +00:00
|
|
|
- changes for parallel installability
|
|
|
|
|
2002-11-28 12:58:38 +00:00
|
|
|
* Thu Nov 28 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
|
|
- Put in libgstpng plugin
|
|
|
|
- rm the libgstmedia-info stuff until thomas think they are ready
|
|
|
|
|
2002-11-01 21:40:33 +00:00
|
|
|
* Fri Nov 01 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- don't use compprep until ABI issues can be fixed
|
|
|
|
|
|
|
|
* Wed Oct 30 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- added smpte plugin
|
|
|
|
- split out dvdnavread package
|
|
|
|
- fixed snapshot deps and added hermes conditionals
|
|
|
|
|
2002-10-29 14:58:26 +00:00
|
|
|
* Tue Oct 29 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
|
|
- added -play package, libs, and .pc files
|
|
|
|
|
2002-10-24 20:42:58 +00:00
|
|
|
* Thu Oct 24 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
|
|
- Added wavenc to audio formats package
|
2002-10-29 14:58:26 +00:00
|
|
|
|
2002-10-20 01:08:34 +00:00
|
|
|
* Sat Oct 20 2002 Christian Scchaller <Uraeus@linuxrising.org>
|
|
|
|
- Removed all .la files
|
|
|
|
- added separate non-openquicktime demuxer plugin
|
|
|
|
- added snapshot plugin
|
|
|
|
- added videotest plugin
|
|
|
|
- Split avi plugin out to avi and windec plugins since aviplugin do not depend on avifile
|
|
|
|
- Added cdplayer plugin
|
|
|
|
|
2002-09-23 09:41:55 +00:00
|
|
|
* Fri Sep 20 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- added gst-compprep calls
|
|
|
|
|
|
|
|
* Wed Sep 18 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
2003-09-11 19:02:00 +00:00
|
|
|
- add gst-register-%{majorminor} calls everywhere again since auto-reregister doesn't work
|
2002-09-23 09:41:55 +00:00
|
|
|
- added gstreamer-audio-formats to mad's requires since it needs the typefind
|
|
|
|
to work properly
|
|
|
|
|
2002-09-09 16:53:13 +00:00
|
|
|
* Mon Sep 9 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
|
|
- Added v4l2 plugin
|
2002-08-27 17:32:31 +00:00
|
|
|
* Thu Aug 27 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
|
|
- Fixed USE_DV_TRUE to USE_LIBDV_TRUE
|
|
|
|
- Added Gconf and floatcast headers to gstreamer-plugins-devel package
|
|
|
|
- Added mixmatrix plugin to audio-effects package
|
|
|
|
|
2002-07-11 11:14:30 +00:00
|
|
|
* Thu Jul 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- fixed oss package to buildrequire instead of require glibc headers
|
|
|
|
|
2002-07-08 20:34:01 +00:00
|
|
|
* Mon Jul 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- fixed -devel package group
|
|
|
|
|
2002-07-09 10:45:37 +00:00
|
|
|
* Fri Jul 05 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- release 0.4.0 !
|
|
|
|
- added gstreamer-libs.pc
|
2003-09-11 19:02:00 +00:00
|
|
|
- removed all gst-register-%{majorminor} calls since this should be done automatically now
|
2002-07-09 10:45:37 +00:00
|
|
|
|
|
|
|
* Thu Jul 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- fix issue with SDL package
|
|
|
|
- make all packages STRICTLY require the right version to avoid
|
|
|
|
ABI issues
|
|
|
|
- make gst-plugins obsolete gst-plugin-libs
|
2003-09-11 19:02:00 +00:00
|
|
|
- also send output of gst-register-%{majorminor} to /dev/null to lower the noise
|
2002-07-09 10:45:37 +00:00
|
|
|
|
|
|
|
* Wed Jul 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- require glibc-devel instead of glibc-kernheaders since the latter is only
|
|
|
|
since 7.3 and glibc-devel pulls in the right package anyway
|
|
|
|
|
2002-06-22 23:37:20 +00:00
|
|
|
* Sun Jun 23 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- changed header location of plug-in libs
|
|
|
|
|
2002-06-17 14:23:21 +00:00
|
|
|
* Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- major cleanups
|
2003-09-11 19:02:00 +00:00
|
|
|
- adding gst-register-%{majorminor} on postun everywhere
|
2002-06-17 14:23:21 +00:00
|
|
|
- remove ldconfig since we don't actually install libs in system dirs
|
|
|
|
- removed misc package
|
|
|
|
- added video-effects
|
|
|
|
- dot every Summary
|
|
|
|
- uniformify all descriptions a little
|
|
|
|
|
2002-06-06 11:14:27 +00:00
|
|
|
* Thu Jun 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- various BuildRequires: additions
|
|
|
|
|
2002-06-04 21:42:16 +00:00
|
|
|
* Tue Jun 04 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- added USE_LIBADSPA_TRUE bits to ladspa package
|
|
|
|
|
2002-06-03 11:30:41 +00:00
|
|
|
* Mon Jun 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- Added libfame package
|
|
|
|
|
2002-05-13 19:53:56 +00:00
|
|
|
* Mon May 12 2002 Christian Fredrik Kalager Schaller <Uraeus@linuxrising.org>
|
|
|
|
- Added jack, dxr3, http packages
|
2002-06-17 14:23:21 +00:00
|
|
|
- Added visualisation plug-ins, effecttv and synaesthesia
|
2002-05-13 19:53:56 +00:00
|
|
|
- Created devel package
|
|
|
|
- Removed gstreamer-plugins-libs package (moved it into gstreamer-plugins)
|
|
|
|
- Replaced prefix/dirname with _macros
|
|
|
|
|
2002-05-10 21:56:15 +00:00
|
|
|
* Mon May 06 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- added gstreamer-GConf package
|
|
|
|
|
2002-03-13 16:40:16 +00:00
|
|
|
* Wed Mar 13 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
|
|
- added more BuildRequires and Requires
|
2002-06-17 14:23:21 +00:00
|
|
|
- rearranged some plug-ins
|
2002-03-13 16:40:16 +00:00
|
|
|
- added changelog ;)
|