gstreamer1-plugins-bad-vl.spec 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. %define majorminor 1.0
  2. %define gstreamer gstreamer1
  3. %define gst_minver 1.6.2
  4. %define gstpb_minver 1.6.2
  5. Summary: GStreamer streaming media framework "bad" plug-ins
  6. Summary(ja): GStreamer ストリーミングメディアフレームワーク用 bad プラグイン集
  7. Name: gstreamer1-plugins-bad
  8. Version: 1.6.2
  9. Release: 3%{?_dist_release}
  10. # The freeze and nfs plugins are LGPLv2 (only)
  11. License: LGPLv2+
  12. Group: System Environment/Libraries
  13. URL: http://gstreamer.freedesktop.org/
  14. Source: http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-%{version}.tar.xz
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  16. Requires: %{gstreamer} >= %{gst_minver}
  17. BuildRequires: %{gstreamer}-devel >= %{gst_minver}
  18. BuildRequires: %{gstreamer}-plugins-base-devel >= %{gstpb_minver}
  19. BuildRequires: %{gstreamer}-plugins-bad-free-devel >= %{gstpb_minver}
  20. BuildRequires: check
  21. BuildRequires: gettext
  22. BuildRequires: PyXML
  23. BuildRequires: libXt-devel
  24. BuildRequires: bzip2-devel
  25. BuildRequires: celt-devel
  26. BuildRequires: exempi-devel
  27. BuildRequires: jasper-devel
  28. #BuildRequires: ladspa-devel
  29. BuildRequires: libass-devel
  30. BuildRequires: libdc1394-devel
  31. BuildRequires: libdvdnav-devel
  32. BuildRequires: libexif-devel
  33. #BuildRequires: libiptcdata-devel
  34. BuildRequires: kate-devel
  35. BuildRequires: libmodplug-devel
  36. BuildRequires: libmpcdec-devel
  37. #BuildRequires: libofa-devel
  38. BuildRequires: librsvg2-devel
  39. BuildRequires: libsndfile-devel
  40. #BuildRequires: libtimidity-devel
  41. BuildRequires: libvpx-devel
  42. BuildRequires: mesa-libGLU-devel
  43. BuildRequires: openssl-devel
  44. BuildRequires: orc-devel
  45. #BuildRequires: schroedinger-devel
  46. BuildRequires: SDL-devel
  47. #BuildRequires: slv2-devel
  48. BuildRequires: soundtouch-devel
  49. BuildRequires: wavpack-devel
  50. #BuildRequires: wildmidi-devel
  51. #BuildRequires: zbar-devel
  52. BuildRequires: libmms-devel
  53. BuildRequires: twolame-devel
  54. #BuildRequires: libmimic-devel
  55. # self build
  56. #BuildRequires: libdca-devel
  57. #BuildRequires: faad2-devel
  58. #BuildRequires: xvidcore-devel
  59. #BuildRequires: mjpegtools-devel
  60. %description
  61. GStreamer is a streaming media framework, based on graphs of elements which
  62. operate on media data.
  63. This package contains plug-ins that have licensing issues, aren't tested
  64. well enough, or the code is not of good enough quality.
  65. # %package extras
  66. # Summary: Extra GStreamer "bad" plugins (less often used "bad" plugins)
  67. # Group: Applications/Multimedia
  68. # Requires: %{name} = %{version}-%{release}
  69. # %description extras
  70. # GStreamer is a streaming media framework, based on graphs of elements which
  71. # operate on media data.
  72. # gstreamer1-plugins-bad contains plug-ins that have licensing issues, aren't
  73. # tested well enough, or the code is not of good enough quality.
  74. # This package (gstreamer1-plugins-bad-extras) contains extra "bad" plugins for
  75. # sources (mythtv), sinks (jack, nas) and effects (pitch) which are not used
  76. # very much and require additional libraries to be installed.
  77. %prep
  78. %setup -q -n gst-plugins-bad-%{version}
  79. %build
  80. %configure \
  81. --enable-debug --disable-static --disable-gtk-doc --enable-experimental
  82. # Don't use rpath!
  83. %{__sed} -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  84. %{__sed} -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  85. %{__make} %{?_smp_mflags}
  86. %install
  87. %{__rm} -rf %{buildroot}
  88. %{__make} install DESTDIR="%{buildroot}"
  89. # Clean out files that should not be part of the rpm.
  90. %{__rm} -f %{buildroot}%{_libdir}/gstreamer-%{majorminor}/*.la
  91. %{__rm} -f %{buildroot}%{_libdir}/*.la
  92. # conflict with gstreamer1-plugins-bad
  93. %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/*.so*
  94. %{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/girepository-1.0
  95. %{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/include/gst/gl/gstglconfig.h
  96. %{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/pkgconfig
  97. %{__rm} -rf $RPM_BUILD_ROOT%{_includedir}
  98. %{__rm} -rf $RPM_BUILD_ROOT%{_datadir}
  99. REMOVE_MODULE_LIST=" \
  100. libgstadpcmdec.so \
  101. libgstadpcmenc.so \
  102. libgstasfmux.so \
  103. libgstaudiomixer.so \
  104. libgstaudiovisualizers.so \
  105. libgstautoconvert.so \
  106. libgstbayer.so \
  107. libgstbz2.so \
  108. libgstcamerabin2.so \
  109. libgstcoloreffects.so \
  110. libgstcompositor.so \
  111. libgstdataurisrc.so \
  112. libgstdebugutilsbad.so \
  113. libgstdtmf.so \
  114. libgstdvb.so \
  115. libgstfestival.so \
  116. libgstfieldanalysis.so \
  117. libgstfragmented.so \
  118. libgstfrei0r.so \
  119. libgstgaudieffects.so \
  120. libgstgdp.so \
  121. libgstgeometrictransform.so \
  122. libgstgsm.so \
  123. libgstid3tag.so \
  124. libgstinter.so \
  125. libgstinterlace.so \
  126. libgstivfparse.so \
  127. libgstjp2kdecimator.so \
  128. libgstjpegformat.so \
  129. libgstliveadder.so \
  130. libgstmpegpsdemux.so \
  131. libgstmpegtsdemux.so \
  132. libgstmpegpsmux.so \
  133. libgstmpegtsmux.so \
  134. libgstmidi.so \
  135. libgstneonhttpsrc.so \
  136. libgstopengl.so \
  137. libgstpcapparse.so \
  138. libgstpnm.so \
  139. libgstrawparse.so \
  140. libgstremovesilence.so \
  141. libgstresindvd.so \
  142. libgstrfbsrc.so \
  143. libgstrtpmux.so \
  144. libgstrtpvp8.so \
  145. libgstscaletempoplugin.so \
  146. libgstsdpelem.so \
  147. libgstsegmentclip.so \
  148. libgstshm.so \
  149. libgstsmooth.so \
  150. libgstsndfile.so \
  151. libgstsoundtouch.so \
  152. libgstspeed.so \
  153. libgststereo.so \
  154. libgstsubenc.so \
  155. libgsty4mdec.so \
  156. libgstaccurip.so \
  157. libgstaiff.so \
  158. libgstaudiofxbad \
  159. libgstfreeverb.so \
  160. libgstivtc.so \
  161. libgstmfc.so \
  162. libgstmxf.so \
  163. libgstrsvg.so \
  164. libgstvideofiltersbad.so \
  165. libgstvideoparsersbad.so \
  166. libgstvideosignal.so \
  167. libgstvmnc.so \
  168. libgstaudiofxbad.so \
  169. libgstyadif.so \
  170. libgstdtls.so \
  171. libgstrtpbad.so \
  172. libgstrtponvif.so \
  173. libgstvcdsrc.so"
  174. for file in $REMOVE_MODULE_LIST; do
  175. rm -f $RPM_BUILD_ROOT%{_libdir}/gstreamer-%{majorminor}/$file
  176. done
  177. %clean
  178. %{__rm} -rf %{buildroot}
  179. %post -p /sbin/ldconfig
  180. %postun -p /sbin/ldconfig
  181. %files
  182. %defattr(-,root,root,-)
  183. %doc AUTHORS COPYING README REQUIREMENTS
  184. %{_libdir}/gstreamer-%{majorminor}/libgstassrender.so
  185. %{_libdir}/gstreamer-%{majorminor}/libgstdecklink.so
  186. %{_libdir}/gstreamer-%{majorminor}/libgstdtsdec.so
  187. %{_libdir}/gstreamer-%{majorminor}/libgstdvbsuboverlay.so
  188. %{_libdir}/gstreamer-%{majorminor}/libgstdvdspu.so
  189. %{_libdir}/gstreamer-%{majorminor}/libgstfaac.so
  190. %{_libdir}/gstreamer-%{majorminor}/libgstfaad.so
  191. %{_libdir}/gstreamer-%{majorminor}/libgstmms.so
  192. %{_libdir}/gstreamer-%{majorminor}/libgstmodplug.so
  193. %{_libdir}/gstreamer-%{majorminor}/libgstmpeg2enc.so
  194. %{_libdir}/gstreamer-%{majorminor}/libgstmplex.so
  195. %{_libdir}/gstreamer-%{majorminor}/libgstopenal.so
  196. %{_libdir}/gstreamer-%{majorminor}/libgstrtmp.so
  197. %{_libdir}/gstreamer-%{majorminor}/libgstsiren.so
  198. %{_libdir}/gstreamer-%{majorminor}/libgstdashdemux.so
  199. %{_libdir}/gstreamer-%{majorminor}/libgstfbdevsink.so
  200. %{_libdir}/gstreamer-%{majorminor}/libgstsmoothstreaming.so
  201. %{_libdir}/gstreamer-%{majorminor}/libgstvdpau.so
  202. %{_libdir}/gstreamer-%{majorminor}/libgstx265.so
  203. %changelog
  204. * Wed Dec 30 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-3
  205. - rebuild with gnutls-3.4.7
  206. * Tue Dec 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-2
  207. - rebuild with nettle-3.1.1
  208. * Sat Dec 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-1
  209. - new upstream release
  210. * Fri Nov 06 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-1
  211. - new upstream release
  212. * Wed Mar 18 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 1.4.5-2
  213. - changed Group to System Environment/Libraries
  214. * Sun Mar 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.5-1
  215. - new upstream release
  216. * Tue Nov 18 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.4-1
  217. - new upstream release
  218. * Sun Nov 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.3-1
  219. - new upstream release
  220. * Sat Apr 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.4-1
  221. - new upstream release
  222. * Sun Mar 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.3-1
  223. - new upstream release
  224. * Mon Dec 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.2-1
  225. - new upstream release
  226. * Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.1-1
  227. - new upstream release
  228. * Sun Oct 27 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.0-1
  229. - new upstream release
  230. * Sat Aug 31 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.10-1
  231. - new upstream release
  232. * Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.9-1
  233. - new upstream release
  234. * Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.8-1
  235. - new upstream release
  236. * Sun Apr 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.7-1
  237. - new upstream release
  238. * Sat Mar 23 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.6-1
  239. - new upstream release
  240. * Wed Jan 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.5-1
  241. - new upstream release
  242. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.4-1
  243. - new upstream release
  244. * Fri Oct 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1-2
  245. - new upstream release
  246. - rename package
  247. * Sun Dec 18 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.22-1
  248. - new upstream release
  249. - added BuildRequires: libvpx-devel
  250. * Wed Nov 2 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.21-2
  251. - s/self-build-libdvdnav/libdvdnav/
  252. * Sat Mar 26 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.21-1
  253. - new upstream release
  254. - added BuildRequires:
  255. - libmms-devel
  256. - librtmp-devel
  257. * Fri Sep 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.20-1
  258. - new upstream release
  259. * Sun Jun 27 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.19-1
  260. - new upstream release
  261. * Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.18-1
  262. - new upstream release
  263. - added BuildRequires: libvdpau-devel
  264. * Wed Feb 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.17-1
  265. - new upstream release
  266. * Wed May 27 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.12-1
  267. - new upstream release
  268. - dropped gstreamer-plugins-bad-0.10.5-sys-modplug.patch,
  269. gst-plugins-bad-0.10.5-mms-seek.patch
  270. * Sun Mar 01 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.10-1
  271. - new upstream release
  272. - dropped devel and devel-docs subpackages
  273. * Sun Feb 15 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.9-2
  274. - rebuild with twolame-devel, libmpcdec-devel, mjpegtools-devel
  275. - changed to BuildRequires: self-build-faad2 from faad2-devel
  276. * Sun Jan 11 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.9-1
  277. - initial build based on RPM Fusion package
  278. * Sat Dec 27 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.9-3
  279. - Put devel docs in seperate subpackage to avoid multilib conflict (rf 276)
  280. * Wed Dec 17 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.9-2
  281. - Rebuild for new x264 (using patch from Rathann)
  282. * Sun Oct 26 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.9-1
  283. - New upstream release 0.10.9
  284. - Rebuild for new directfb
  285. * Sun Sep 14 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.8-4
  286. - Rebuild for new x264 and to generate new magic gstreamer provides
  287. * Sat Aug 16 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.8-3
  288. - Enable DVD navigation plugin
  289. * Fri Aug 1 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.8-2
  290. - Release bump to keep rpmfusion version higher then livna
  291. * Fri Aug 1 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.8-1
  292. - New upstream release 0.10.8
  293. - Merge changes from latest freshrpms package: enable ofa and dirac plugins
  294. * Fri Jun 27 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.7-2
  295. - Rebuild for new x264
  296. * Thu Apr 24 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.7-1
  297. - New upstream release 0.10.7
  298. - Drop many upstreamed patches
  299. * Sun Mar 9 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.6-3
  300. - Rebuild for new x264
  301. * Tue Feb 26 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.6-2
  302. - Enable dc1394 plugin
  303. * Sun Feb 24 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.6-1
  304. - New upstream release 0.10.6-1
  305. - Drop many upstreamed patches
  306. - Fixes conflict with the latest gstreamer-plugins-good (livna 1884)
  307. * Tue Feb 5 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-15
  308. - Fix compilation with gcc 4.3
  309. * Tue Feb 5 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-14
  310. - Add flv demuxer from CVS (livna bug 1846)
  311. * Sun Dec 9 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-13
  312. - Add patch fixing compilation with mjpegtools 1.9.0rc3
  313. * Sun Dec 9 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-12
  314. - Add patch from upstream vcs which makes mms honor your connection speed
  315. settings
  316. - Add (painstakingly self written) patch adding support for mms / mmsh seeking!
  317. * Tue Nov 13 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-11
  318. - Rebuild for new faad2
  319. * Sun Nov 4 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-10
  320. - Rebuild for new libdca
  321. * Thu Oct 18 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-9
  322. - Rebuild for new (old) faad2 (livna bug 1679)
  323. * Sat Sep 29 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-8
  324. - Update mythtvsrc code to CVS version (livna bug 1660)
  325. * Thu Sep 27 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-7
  326. - No libgstreal.so on ppc / ppc64
  327. * Thu Sep 27 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-6
  328. - Fix detection of libdts with current livna libtds, this might need to be
  329. changed back again for rpmfusion, depending on how libdts will look there
  330. * Sat Sep 22 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-5
  331. - Add mythtvsrc plugin (livna 1646)
  332. - Put some less often used plugins, which bring in also usually not installed
  333. deps in a -extras package
  334. * Sat Sep 15 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 0.10.5-4
  335. - Merge livna spec bugfixes into freshrpms spec for rpmfusion:
  336. - Set release to 4 to be higher as both livna and freshrpms latest release
  337. - Set package name and origin to rpmfusion
  338. - Make mpeg2enc plugin compile with current mjpegtools
  339. - Make the real plugins search for the RealPlayer .so files in various
  340. known possible locations instead of using only one hardcoded path to them
  341. - Make the wildmidi plugin work with the default Fedora timidity patch set
  342. - Add a couple of missing modtracker mimetypes to the modplug plugin
  343. - Use the system version of libmodplug
  344. - Fix building of the neonsrc plugin with the latest (rawhide) neon
  345. - Disable the ladspa plugin as this has been added to Fedora's rawhide
  346. gstreamer-plugins-good
  347. - Don't put an rpath in the .so's on x86_64
  348. - Re-enable gtk-doc now that we have a -devel package again
  349. - Enable libtimidity plugin
  350. - Fix detection of (and linking with) libdca for the dtsdec plugin
  351. * Tue Aug 21 2007 Matthias Saou <http://freshrpms.net/> 0.10.5-1
  352. - Update to 0.10.5.
  353. - Update faad2 patch : Some fixes went in, but faad2.h still produces an error.
  354. - Remove libgstqtdemux, libgstvideocrop and libgstwavpack, all are in good now.
  355. - Enable new nas, x264, wildmidi and libsndfile plugins.
  356. - Re-add devel package now that we have a main shared lib and header files.
  357. - Add check build requirement.
  358. * Fri Mar 30 2007 Matthias Saou <http://freshrpms.net/> 0.10.4-1
  359. - Update to 0.10.4 for F7.
  360. - Disable swfdec... does anything/anyone even use it here? Once it stabilizes
  361. somewhat more, maybe then it'll be worth re-enabling.
  362. - Re-enable wavpack, it works again now.
  363. - Enable libcdaudio support.
  364. - Enable jack support.
  365. - Enable ladspa support.
  366. - Enable mpeg2enc (mjpegtools) support.
  367. - Remove no longer present libgstvideo4linux2.so and add all new plugins.
  368. - Remove all gtk-doc references (all gone...?) and devel package too.
  369. * Tue Jan 9 2007 Matthias Saou <http://freshrpms.net/> 0.10.3-3
  370. - Update faad2 patch to also update the plugin sources, not just configure.
  371. * Mon Dec 18 2006 Matthias Saou <http://freshrpms.net/> 0.10.3-2
  372. - Try to rebuild against new wavpack 4.40 from Extras : Fails.
  373. - Try to update to 0.10.3.2 pre-release : Fails, it needs a more recent gst.
  374. - Try to include patch to update wavpack plugin source from 0.10.3.2
  375. pre-release : Fails to find wavpack/md5.h.
  376. - Give up and disable wavpack support for now, sorry! Patches welcome.
  377. - Include patch to fix faad2 2.5 detection.
  378. - Add soundtouch support.
  379. * Thu Jun 1 2006 Matthias Saou <http://freshrpms.net/> 0.10.3-1
  380. - Update to 0.10.3.
  381. - Add new translations.
  382. - Add libgstmodplug.so, libgstvideo4linux2.so and libgstxingheader.so.
  383. - Add new libmusicbrainz support.
  384. * Thu Mar 23 2006 Matthias Saou <http://freshrpms.net/> 0.10.1-2
  385. - Add libmms support, thanks to Daniel S. Rogers.
  386. * Wed Feb 22 2006 Matthias Saou <http://freshrpms.net/> 0.10.1-1
  387. - Update to 0.10.1.
  388. - Add libgstcdxaparse.so and libgstfreeze.so.
  389. - Enable libgstbz2.so, libgstglimagesink.so and libgstneonhttpsrc.so.
  390. * Wed Jan 25 2006 Matthias Saou <http://freshrpms.net/> 0.10.0.1-1
  391. - Update to 0.10.0.1, add new plugins.
  392. - Spec file cleanup and rebuild for FC5.
  393. * Mon Dec 05 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  394. - 0.10.0-0.gst.1
  395. - new release
  396. * Thu Dec 01 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  397. - 0.9.7-0.gst.1
  398. - new release with 0.10 major/minor
  399. * Sat Nov 12 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  400. - new release
  401. - remove tta patch
  402. - don't check for languages, no translations yet
  403. - added gtk-doc
  404. * Wed Oct 26 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  405. - 0.9.4-0.gst.1
  406. - new release
  407. - added speed plugin
  408. * Mon Oct 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  409. - 0.9.3-0.gst.1
  410. - new release