mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
7cd51262a7
Original commit message from CVS: this contains fixed needed to once again build rpms of CVS head. It disables doc building, dists the po stuff (not the the way ds wanted, but the way I understood how to) and fixes latest additions/removals to the spec
327 lines
12 KiB
RPMSpec
327 lines
12 KiB
RPMSpec
Name: gstreamer
|
|
Version: @VERSION@
|
|
Release: @GST_VERSION_RELEASE@
|
|
Summary: GStreamer streaming media framework runtime.
|
|
|
|
Group: Libraries/Multimedia
|
|
License: LGPL
|
|
URL: http://gstreamer.net/
|
|
Vendor: GStreamer Backpackers Team <package@gstreamer.net>
|
|
Source: http://gstreamer.net/releases/%{version}/src/%{name}-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%define majorminor @GST_MAJORMINOR@
|
|
%define _glib2 @GLIB2_REQ@
|
|
%define _libxml2 @LIBXML2_REQ@
|
|
|
|
Requires: glib2 >= %_glib2
|
|
Requires: libxml2 >= %_libxml2
|
|
Requires: popt > 1.6
|
|
Prereq: %{name}-tools >= %{version}
|
|
BuildRequires: glib2-devel >= %_glib2
|
|
BuildRequires: libxml2-devel >= %_libxml2
|
|
BuildRequires: bison
|
|
BuildRequires: flex
|
|
BuildRequires: gtk-doc >= 0.7
|
|
BuildRequires: gcc
|
|
BuildRequires: zlib-devel
|
|
BuildRequires: popt > 1.6
|
|
Prereq: /sbin/ldconfig
|
|
|
|
### documentation requirements
|
|
BuildRequires: openjade
|
|
BuildRequires: python2
|
|
BuildRequires: docbook-style-dsssl docbook-dtd31-sgml
|
|
BuildRequires: transfig xfig
|
|
|
|
%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.
|
|
|
|
%package devel
|
|
Summary: Libraries/include files for GStreamer streaming media framework.
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: glib2-devel >= %_glib2
|
|
Requires: libxml2-devel >= %_libxml2
|
|
|
|
%description devel
|
|
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.
|
|
|
|
This package contains the libraries and includes files necessary to develop
|
|
applications and plugins for GStreamer.
|
|
|
|
%package tools
|
|
Summary: tools for GStreamer streaming media framework.
|
|
Group: Libraries/Multimedia
|
|
|
|
%description tools
|
|
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.
|
|
|
|
This package contains the basic command-line tools used for GStreamer, like
|
|
gst-register and gst-launch. It is split off to allow parallel-installability
|
|
in the future.
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
|
|
CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
|
|
FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
|
|
%{?__libtoolize:[ -f configure.in ] && %{__libtoolize} --copy --force} ; \
|
|
./configure \
|
|
--prefix=%{_prefix} \
|
|
--exec-prefix=%{_exec_prefix} \
|
|
--bindir=%{_bindir} \
|
|
--sbindir=%{_sbindir} \
|
|
--sysconfdir=%{_sysconfdir} \
|
|
--datadir=%{_datadir} \
|
|
--includedir=%{_includedir} \
|
|
--libdir=%{_libdir} \
|
|
--libexecdir=%{_libexecdir} \
|
|
--localstatedir=%{_localstatedir} \
|
|
--sharedstatedir=%{_sharedstatedir} \
|
|
--mandir=%{_mandir} \
|
|
--infodir=%{_infodir} \
|
|
--enable-debug \
|
|
--with-cachedir=%{_localstatedir}/cache/gstreamer-%{majorminor} \
|
|
--disable-tests --disable-examples
|
|
# --enable-docs-build --with-html-dir=$RPM_BUILD_ROOT%{_datadir}/gtk-doc/html
|
|
|
|
if [ "$SMP" != "" ]; then
|
|
(make "MAKE=make -k -j $SMP"; exit 0)
|
|
else
|
|
make
|
|
fi
|
|
|
|
%install
|
|
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
|
|
|
%makeinstall
|
|
# Clean out files that should not be part of the rpm.
|
|
# This is the recommended way of dealing with it for RH8
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/cache/gstreamer-%{majorminor}
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}-%{majorminor}/*.la
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}-%{majorminor}/*.a
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
|
|
%clean
|
|
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post
|
|
/sbin/ldconfig
|
|
%{_bindir}/gst-register > /dev/null 2> /dev/null
|
|
|
|
%postun
|
|
/sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-, root, root, -)
|
|
%doc AUTHORS COPYING README TODO COPYING.LIB ABOUT-NLS REQUIREMENTS DOCBUILDING RELEASE
|
|
%{_libdir}/libgstreamer-%{majorminor}.so.*
|
|
%{_libdir}/libgstcontrol-%{majorminor}.so.*
|
|
%dir %{_libdir}/gstreamer-%{majorminor}
|
|
%dir %{_localstatedir}/cache/gstreamer-%{majorminor}
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstautoplugcache*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstautoplugger*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstbasicomega*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstoptscheduler.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstoptomega*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstbasicgthreadscheduler*.so
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstoptgthreadscheduler*.so
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstelements*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgsttypes*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgststaticautoplug*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstbytestream*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstgetbits*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstspider*.so*
|
|
%{_libdir}/gstreamer-%{majorminor}/libgstindexers.so
|
|
%{_datadir}/locale/*
|
|
|
|
%files tools
|
|
%defattr(-, root, root, -)
|
|
%{_bindir}/gst-xmlinspect-%{majorminor}
|
|
%{_bindir}/gst-complete-%{majorminor}
|
|
%{_bindir}/gst-compprep-%{majorminor}
|
|
%{_bindir}/gst-inspect-%{majorminor}
|
|
%{_bindir}/gst-launch-%{majorminor}
|
|
%{_bindir}/gst-md5sum-%{majorminor}
|
|
%{_bindir}/gst-register-%{majorminor}
|
|
%{_bindir}/gst-feedback-%{majorminor}
|
|
%{_bindir}/gst-xmllaunch-%{majorminor}
|
|
%{_bindir}/gst-typefind-%{majorminor}
|
|
%{_mandir}/man1/gst-feedback-%{majorminor}.*
|
|
%{_mandir}/man1/gst-xmllaunch-%{majorminor}.*
|
|
%{_mandir}/man1/gst-complete-%{majorminor}.*
|
|
%{_mandir}/man1/gst-compprep-%{majorminor}.*
|
|
%{_mandir}/man1/gst-inspect-%{majorminor}.*
|
|
%{_mandir}/man1/gst-launch-%{majorminor}.*
|
|
%{_mandir}/man1/gst-md5sum-%{majorminor}.*
|
|
%{_mandir}/man1/gst-register-%{majorminor}.*
|
|
|
|
%files devel
|
|
%defattr(-, root, root, -)
|
|
%dir %{_includedir}/%{name}-%{majorminor}
|
|
%dir %{_includedir}/%{name}-%{majorminor}/gst
|
|
%{_includedir}/%{name}-%{majorminor}/gst/*.h
|
|
%dir %{_includedir}/%{name}-%{majorminor}/gst/control
|
|
%{_includedir}/%{name}-%{majorminor}/gst/control/*.h
|
|
%dir %{_includedir}/%{name}-%{majorminor}/gst/bytestream
|
|
%{_includedir}/%{name}-%{majorminor}/gst/bytestream/bytestream.h
|
|
%dir %{_includedir}/%{name}-%{majorminor}/gst/getbits
|
|
%{_includedir}/%{name}-%{majorminor}/gst/getbits/getbits.h
|
|
# %{_libdir}/libgstreamer.a
|
|
%{_libdir}/libgstreamer-%{majorminor}.so
|
|
%{_libdir}/libgstcontrol-%{majorminor}.so
|
|
%{_datadir}/aclocal/gst-element-check-%{majorminor}.m4
|
|
%{_libdir}/pkgconfig/gstreamer-%{majorminor}.pc
|
|
%{_libdir}/pkgconfig/gstreamer-control-%{majorminor}.pc
|
|
## we specify the API docs as regular files since %docs doesn't fail when
|
|
# files aren't found anymore for RPM >= 4
|
|
# we list all of the files we really need to trap incomplete doc builds
|
|
# then we catch the rest with *, you can safely ignore the errors from this
|
|
## gstreamer API
|
|
# %dir %{_datadir}/gtk-doc/html/%{name}-%{majorminor}
|
|
# %{_datadir}/gtk-doc/html/%{name}-%{majorminor}/%{name}-%{majorminor}.devhelp
|
|
# %{_datadir}/gtk-doc/html/%{name}-%{majorminor}/element-types.html
|
|
# %{_datadir}/gtk-doc/html/%{name}-%{majorminor}/gstreamer.html
|
|
# %{_datadir}/gtk-doc/html/%{name}-%{majorminor}/index.sgml
|
|
## gstreamer-libs API
|
|
# %dir %{_datadir}/gtk-doc/html/%{name}-libs-%{majorminor}
|
|
# %{_datadir}/gtk-doc/html/%{name}-libs-%{majorminor}/index.sgml
|
|
## this catches all of the rest of the docs we might have forgotten
|
|
# %{_datadir}/gtk-doc/html/*
|
|
|
|
|
|
%changelog
|
|
* Sun Aug 17 2003 Christian Schaller <uraeus@gnome.org>
|
|
- Remove docs build from RPM as the build is broken
|
|
- Fix stuff since more files are versioned now
|
|
- Remove wingo schedulers
|
|
- Remove putbits stuff
|
|
|
|
* Sun May 18 2003 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
- devhelp files are now generated by gtk-doc, changed accordingly
|
|
|
|
* Sun Mar 16 2003 Christian F.K. Schaller <Uraeus@gnome.org>
|
|
- Add gthread scheduler
|
|
|
|
* Sat Dec 07 2002 Thomas Vander Stichele <thomas at apestaart dot org>
|
|
- define majorminor and use it everywhere
|
|
- full parallel installability
|
|
|
|
* Tue Nov 05 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Add optwingo scheduler
|
|
* Sat Oct 12 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Updated to work better with default RH8 rpm
|
|
- Added missing unspeced files
|
|
- Removed .a and .la files from buildroot
|
|
|
|
* Sat Sep 21 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- added gst-md5sum
|
|
|
|
* Tue Sep 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- adding flex to buildrequires
|
|
|
|
* Fri Sep 13 2002 Christian F.K. Schaller <Uraeus@linuxrising.org>
|
|
- Fixed the schedulers after the renaming
|
|
* Sun Sep 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- added transfig to the BuildRequires:
|
|
|
|
* Sat Jun 22 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- moved header location
|
|
|
|
* Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- added popt
|
|
- removed .la
|
|
|
|
* Fri Jun 07 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- added release of gstreamer to req of gstreamer-devel
|
|
- changed location of API docs to be in gtk-doc like other gtk-doc stuff
|
|
- reordered SPEC file
|
|
|
|
* Mon Apr 29 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- moved html docs to gtk-doc standard directory
|
|
|
|
* Tue Mar 5 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- move version defines of glib2 and libxml2 to configure.ac
|
|
- add BuildRequires for these two libs
|
|
|
|
* Sun Mar 3 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- put html docs in canonical place, avoiding %doc erasure
|
|
- added devhelp support, current install of it is hackish
|
|
|
|
* Sat Mar 2 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Added documentation to build
|
|
|
|
* Mon Feb 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- added libgstbasicscheduler
|
|
- renamed libgst to libgstreamer
|
|
|
|
* Fri Jan 04 2002 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Added configdir parameter as it seems the configdir gets weird otherwise
|
|
|
|
* Thu Jan 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
|
|
- split off gstreamer-editor from core
|
|
- removed gstreamer-gnome-apps
|
|
|
|
* Sat Dec 29 2001 Rodney Dawes <dobey@free.fr>
|
|
- Cleaned up the spec file for the gstreamer core/plug-ins split
|
|
- Improve spec file
|
|
|
|
* Sat Dec 15 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Split of more plugins from the core and put them into their own modules
|
|
- Includes colorspace, xfree and wav
|
|
- Improved package Require lines
|
|
- Added mp3encode (lame based) to the SPEC
|
|
|
|
* Wed Dec 12 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Thomas merged mpeg plugins into one
|
|
* Sat Dec 08 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- More minor cleanups including some fixed descriptions from Andrew Mitchell
|
|
|
|
* Fri Dec 07 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Added logging to the make statement
|
|
|
|
* Wed Dec 05 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Updated in preparation for 0.3.0 release
|
|
|
|
* Fri Jun 29 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Updated for 0.2.1 release
|
|
- Split out the GUI packages into their own RPM
|
|
- added new plugins (FLAC, festival, quicktime etc.)
|
|
|
|
* Sat Jun 09 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Visualisation plugins bundled out togheter
|
|
- Moved files sections up close to their respective descriptions
|
|
|
|
* Sat Jun 02 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Split the package into separate RPMS,
|
|
putting most plugins out by themselves.
|
|
|
|
* Fri Jun 01 2001 Christian Schaller <Uraeus@linuxrising.org>
|
|
- Updated with change suggestions from Dennis Bjorklund
|
|
|
|
* Tue Jan 09 2001 Erik Walthinsen <omega@cse.ogi.edu>
|
|
- updated to build -devel package as well
|
|
|
|
* Sun Jan 30 2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
- first draft of spec file
|
|
|