fix scheduler names after rename in SPEC
[platform/upstream/gstreamer.git] / gstreamer.spec.in
1 Name:           gstreamer
2 Version:        @VERSION@
3 Release:        @GST_VERSION_RELEASE@
4 Summary:        GStreamer streaming media framework runtime.
5
6 Group:          Libraries/Multimedia
7 License:        LGPL
8 URL:            http://gstreamer.net/
9 Vendor:         GStreamer Backpackers Team <package@gstreamer.net>
10 Source:         http://gstreamer.net/releases/%{version}/src/%{name}-%{version}.tar.gz
11 BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13 %define         _glib2          @GLIB2_REQ@
14 %define         _libxml2        @LIBXML2_REQ@
15
16 Requires:       glib2 >= %_glib2
17 Requires:       libxml2 >= %_libxml2
18 Requires:       popt > 1.6
19 BuildRequires:  glib2-devel >= %_glib2
20 BuildRequires:  libxml2-devel >= %_libxml2
21 BuildRequires:  nasm >= 0.90
22 BuildRequires:  bison
23 BuildRequires:  gtk-doc >= 0.7
24 BuildRequires:  gcc
25 BuildRequires:  zlib-devel
26 BuildRequires:  popt > 1.6
27 Prereq:         /sbin/ldconfig
28
29 ### documentation requirements
30 BuildRequires:  openjade
31 BuildRequires:  python2
32 BuildRequires:  docbook-style-dsssl docbook-dtd31-sgml
33 BuildRequires:  transfig
34
35 %description
36 GStreamer is a streaming-media framework, based on graphs of filters which
37 operate on media data. Applications using this library can do anything
38 from real-time sound processing to playing videos, and just about anything
39 else media-related.  Its plugin-based architecture means that new data
40 types or processing capabilities can be added simply by installing new 
41 plugins.
42
43 %package devel
44 Summary:        Libraries/include files for GStreamer streaming media framework.
45 Group:          Development/Libraries
46
47 Requires:       %{name} = %{version}-%{release}
48 Requires:       glib2-devel >= %_glib2
49 Requires:       libxml2-devel >= %_libxml2
50
51 %description devel
52 GStreamer is a streaming-media framework, based on graphs of filters which
53 operate on media data. Applications using this library can do anything
54 from real-time sound processing to playing videos, and just about anything
55 else media-related.  Its plugin-based architecture means that new data
56 types or processing capabilities can be added simply by installing new   
57 plugins.
58
59 This package contains the libraries and includes files necessary to develop
60 applications and plugins for GStreamer.
61
62 %prep
63 %setup
64
65 %build
66 CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
67 CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
68 FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
69 %{?__libtoolize:[ -f configure.in ] && %{__libtoolize} --copy --force} ; \
70 ./configure \
71   --prefix=%{_prefix} \
72   --exec-prefix=%{_exec_prefix} \
73   --bindir=%{_bindir} \
74   --sbindir=%{_sbindir} \
75   --sysconfdir=%{_sysconfdir} \
76   --datadir=%{_datadir} \
77   --includedir=%{_includedir} \
78   --libdir=%{_libdir} \
79   --libexecdir=%{_libexecdir} \
80   --localstatedir=%{_localstatedir} \
81   --sharedstatedir=%{_sharedstatedir} \
82   --mandir=%{_mandir} \
83   --infodir=%{_infodir} \
84   --enable-debug \
85   --with-configdir=/etc/gstreamer \
86   --disable-tests --disable-examples \
87   --enable-docs-build --with-html-dir=$RPM_BUILD_ROOT%{_datadir}/gtk-doc/html
88
89 if [ "$SMP" != "" ]; then
90   (make "MAKE=make -k -j $SMP"; exit 0)
91 else
92   make
93 fi
94
95 %install  
96 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
97 # adding devhelp stuff here for now, need to integrate better
98 # when devhelp allows it
99 mkdir -p $RPM_BUILD_ROOT/usr/share/devhelp/specs
100 cp $RPM_BUILD_DIR/%{name}-%{version}/docs/devhelp/*.devhelp $RPM_BUILD_ROOT/usr/share/devhelp/specs
101
102 %makeinstall
103
104 %clean
105 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
106
107 %post
108 /sbin/ldconfig
109 # registry handling is now done automatically
110 # %{_prefix}/bin/gst-register --gst-mask=0
111
112 %post devel
113 # adding devhelp links to work around different base not working
114 mkdir -p %{_datadir}/devhelp/books
115 ln -sf %{_datadir}/gtk-doc/html/gstreamer %{_datadir}/devhelp/books
116 ln -sf %{_datadir}/gtk-doc/html/gstreamer-libs %{_datadir}/devhelp/books
117
118 %postun
119 /sbin/ldconfig
120
121 %files
122 %defattr(-, root, root)
123 %doc AUTHORS COPYING README TODO COPYING.LIB ABOUT-NLS REQUIREMENTS DOCBUILDING RELEASE 
124 %{_bindir}/gst-complete
125 %{_bindir}/gst-compprep
126 %{_bindir}/gst-inspect
127 %{_bindir}/gst-launch
128 %{_bindir}/gst-register
129 %{_bindir}/gst-feedback
130 %{_libdir}/libgstreamer-%{version}.so.*
131 %{_libdir}/gst/libgstautoplugcache*.so*
132 %{_libdir}/gst/libgstautoplugger*.so*
133 %{_libdir}/gst/libgstbasicomega*.so*
134 %{_libdir}/gst/libgstfastomega*.so*
135 {_libdir}/gst/libgstoptomega*.so*
136 %{_libdir}/gst/libgstbasicwingo*.so*
137 %{_libdir}/gst/libgstfastwingo*.so*
138 %{_libdir}/gst/libgstelements*.so*
139 %{_libdir}/gst/libgsttypes*.so*
140 %{_libdir}/gst/libgststaticautoplug*.so*
141 %{_libdir}/gst/libgstbytestream*.so*
142 %{_libdir}/gst/libgstgetbits*.so*
143 %{_libdir}/gst/libgstputbits*.so*
144 %{_libdir}/gst/libgstspider*.so*
145 %{_mandir}/man1/gst-complete.*
146 %{_mandir}/man1/gst-compprep.*
147 %{_mandir}/man1/gst-inspect.*
148 %{_mandir}/man1/gst-launch.*
149 %{_mandir}/man1/gst-register.*
150
151 %{_libdir}/libgstcontrol*.so*
152
153 %files devel
154 %defattr(-, root, root)
155 %{_includedir}/%{name}-%{version}/gst
156 %{_libdir}/libgstreamer.a
157 %{_libdir}/libgstreamer.so
158 %{_libdir}/pkgconfig/gstreamer*.pc
159 ## we specify the API docs as regular files since %docs doesn't fail when
160 #  files aren't found anymore for RPM >= 4
161 #  we list all of the files we really need to trap incomplete doc builds
162 #  then we catch the rest with *, you can safely ignore the errors from this
163 ## gstreamer API
164 %{_datadir}/gtk-doc/html/gstreamer/autopluggers.html
165 %{_datadir}/gtk-doc/html/gstreamer/book1.html
166 %{_datadir}/gtk-doc/html/gstreamer/element-types.html
167 %{_datadir}/gtk-doc/html/gstreamer/gstautoplugfactory.html
168 %{_datadir}/gtk-doc/html/gstreamer/gstautoplug.html
169 %{_datadir}/gtk-doc/html/gstreamer/gstbin.html
170 %{_datadir}/gtk-doc/html/gstreamer/gstclock.html
171 %{_datadir}/gtk-doc/html/gstreamer/gstelement.html
172 %{_datadir}/gtk-doc/html/gstreamer/gst-index.html
173 %{_datadir}/gtk-doc/html/gstreamer/gstobject.html
174 %{_datadir}/gtk-doc/html/gstreamer/gstpad.html
175 %{_datadir}/gtk-doc/html/gstreamer/gstpipeline.html
176 %{_datadir}/gtk-doc/html/gstreamer/gstpluginfeature.html
177 # %{_datadir}/gtk-doc/html/gstreamer/gstreamer-cothreads.html
178 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstbuffer.html
179 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstbufferpool.html
180 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstcaps.html
181 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstcpu.html
182 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstdata.html
183 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstevent.html
184 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gst.html
185 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstinfo.html
186 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstparse.html
187 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstplugin.html
188 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstprops.html
189 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gststaticautoplug.html
190 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gststaticautoplugrender.html
191 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gsttee.html
192 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gsttype.html
193 %{_datadir}/gtk-doc/html/gstreamer/gstreamer-gstutils.html
194 %{_datadir}/gtk-doc/html/gstreamer/gstreamer.html
195 %{_datadir}/gtk-doc/html/gstreamer/gstschedulerfactory.html
196 %{_datadir}/gtk-doc/html/gstreamer/gstscheduler.html
197 %{_datadir}/gtk-doc/html/gstreamer/gstthread.html
198 %{_datadir}/gtk-doc/html/gstreamer/gsttimecache.html
199 %{_datadir}/gtk-doc/html/gstreamer/gsttypefactory.html
200 %{_datadir}/gtk-doc/html/gstreamer/gstxml.html
201 %{_datadir}/gtk-doc/html/gstreamer/index.sgml
202 ## gstreamer-libs API
203 %{_datadir}/gtk-doc/html/gstreamer-libs/book1.html
204 %{_datadir}/gtk-doc/html/gstreamer-libs/gstreamer-libs-gstcolorspace.html
205 %{_datadir}/gtk-doc/html/gstreamer-libs/gstreamer-libs-gstgetbits.html
206 %{_datadir}/gtk-doc/html/gstreamer-libs/gstreamer-libs.html
207 %{_datadir}/gtk-doc/html/gstreamer-libs/index.sgml
208 ## this catches all of the rest of the docs we might have forgotten
209 %{_datadir}/gtk-doc/html/*
210 %{_datadir}/devhelp/specs/gstreamer.devhelp
211 %{_datadir}/devhelp/specs/gstreamer-libs.devhelp
212
213
214 %changelog
215 * Fri Sep 13 2002 Christian F.K. Schaller <Uraeus@linuxrising.org>
216 - Fixed the schedulers after the renaming
217 * Sun Sep 08 2002 Thomas Vander Stichele <thomas@apestaart.org>
218 - added transfig to the BuildRequires:
219
220 * Sat Jun 22 2002 Thomas Vander Stichele <thomas@apestaart.org>
221 - moved header location
222
223 * Mon Jun 17 2002 Thomas Vander Stichele <thomas@apestaart.org>
224 - added popt
225 - removed .la
226
227 * Fri Jun 07 2002 Thomas Vander Stichele <thomas@apestaart.org>
228 - added release of gstreamer to req of gstreamer-devel
229 - changed location of API docs to be in gtk-doc like other gtk-doc stuff
230 - reordered SPEC file
231
232 * Mon Apr 29 2002 Thomas Vander Stichele <thomas@apestaart.org>
233 - moved html docs to gtk-doc standard directory
234
235 * Tue Mar 5 2002 Thomas Vander Stichele <thomas@apestaart.org>
236 - move version defines of glib2 and libxml2 to configure.ac
237 - add BuildRequires for these two libs
238
239 * Sun Mar 3 2002 Thomas Vander Stichele <thomas@apestaart.org>
240 - put html docs in canonical place, avoiding %doc erasure
241 - added devhelp support, current install of it is hackish
242
243 * Sat Mar 2 2002 Christian Schaller <Uraeus@linuxrising.org>
244 - Added documentation to build
245
246 * Mon Feb 11 2002 Thomas Vander Stichele <thomas@apestaart.org>
247 - added libgstbasicscheduler
248 - renamed libgst to libgstreamer
249
250 * Fri Jan 04 2002 Christian Schaller <Uraeus@linuxrising.org>
251 - Added configdir parameter as it seems the configdir gets weird otherwise
252
253 * Thu Jan 03 2002 Thomas Vander Stichele <thomas@apestaart.org>
254 - split off gstreamer-editor from core
255 - removed gstreamer-gnome-apps
256
257 * Sat Dec 29 2001 Rodney Dawes <dobey@free.fr>
258 - Cleaned up the spec file for the gstreamer core/plug-ins split
259 - Improve spec file
260
261 * Sat Dec 15 2001 Christian Schaller <Uraeus@linuxrising.org>
262 - Split of more plugins from the core and put them into their own modules
263 - Includes colorspace, xfree and wav
264 - Improved package Require lines
265 - Added mp3encode (lame based) to the SPEC
266
267 * Wed Dec 12 2001 Christian Schaller <Uraeus@linuxrising.org>
268 - Thomas merged mpeg plugins into one
269 * Sat Dec 08 2001 Christian Schaller <Uraeus@linuxrising.org>
270 - More minor cleanups including some fixed descriptions from Andrew Mitchell
271
272 * Fri Dec 07 2001 Christian Schaller <Uraeus@linuxrising.org>
273 - Added logging to the make statement
274
275 * Wed Dec 05 2001 Christian Schaller <Uraeus@linuxrising.org>
276 - Updated in preparation for 0.3.0 release
277
278 * Fri Jun 29 2001 Christian Schaller <Uraeus@linuxrising.org>
279 - Updated for 0.2.1 release
280 - Split out the GUI packages into their own RPM
281 - added new plugins (FLAC, festival, quicktime etc.)
282
283 * Sat Jun 09 2001 Christian Schaller <Uraeus@linuxrising.org>
284 - Visualisation plugins bundled out togheter
285 - Moved files sections up close to their respective descriptions
286
287 * Sat Jun 02 2001 Christian Schaller <Uraeus@linuxrising.org>
288 - Split the package into separate RPMS, 
289   putting most plugins out by themselves.
290
291 * Fri Jun 01 2001 Christian Schaller <Uraeus@linuxrising.org>
292 - Updated with change suggestions from Dennis Bjorklund
293
294 * Tue Jan 09 2001 Erik Walthinsen <omega@cse.ogi.edu>
295 - updated to build -devel package as well
296
297 * Sun Jan 30 2000 Erik Walthinsen <omega@cse.ogi.edu>
298 - first draft of spec file
299