gstreamer1-plugins-ugly-vl.spec 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. ## TODO: build with opencore-amr
  2. %define major 1.0
  3. %define _gst_ver 1.0.6
  4. %define _gstpb_ver 1.0.6
  5. Summary: GStreamer Streaming-media framework ugly plugins
  6. Summary(ja): GStreamer ストリーミングメディアフレームワーク用 ugly プラグイン
  7. Name: gstreamer1-plugins-ugly
  8. Version: 1.0.6
  9. Release: 1%{?_dist_release}
  10. License: LGPLv2+
  11. Group: System Environment/Libraries
  12. URL: http://gstreamer.freedesktop.org/
  13. Source: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.xz
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. Requires: gstreamer1 >= %{_gst_ver}
  16. Requires: gstreamer1-plugins-base >= %{_gstpb_ver}
  17. Requires: glib2
  18. Requires: libid3tag
  19. # Don't require libmad because they are provided by
  20. # self-build-libmad packages.
  21. #Requires: libmad
  22. BuildRequires: gstreamer1-devel >= %{_gst_ver}
  23. BuildRequires: gstreamer1-plugins-base-devel >= %{_gstpb_ver}
  24. #BuildRequires: gtk-doc >= 1.3
  25. BuildRequires: python >= 2.1, python-pyxml
  26. BuildRequires: glib2-devel >= 2.6
  27. BuildRequires: twolame-devel
  28. BuildRequires: libid3tag-devel >= 0.15
  29. BuildRequires: liboil-devel >= 0.3.0
  30. BuildRequires: libcdio-devel >= 0.82
  31. BuildRequires: libdvdread-devel
  32. BuildRequires: PyXML
  33. # *-devel packages provided by other self-build-* should only be listed
  34. # in self-build-%{name}.spec as PreReq.
  35. ##BuildRequires: x264-devel
  36. ##BuildRequires: libmpeg2-devel
  37. ##BuildRequires: a52dec-devel
  38. ##BuildRequires: lame-devel
  39. ##BuildRequires: libmad-devel >= 0.15
  40. %description
  41. GStreamer is a streaming-media framework, based on graphs of filters which
  42. operate on media data. Applications using this library can do anything
  43. from real-time sound processing to playing videos, and just about anything
  44. else media-related. Its plugin-based architecture means that new data
  45. types or processing capabilities can be added simply by installing new
  46. plugins.
  47. This package contains a set of plug-ins that have good quality and
  48. correct functionality, but distributing them might pose problems. The
  49. license on either the plug-ins or the supporting libraries might not
  50. be how the GStreamer authors like. The code might be widely known to
  51. present patent problems.
  52. %description -l ja
  53. GStreamer はメディアデータ操作用の filter graph をベースにしたスト
  54. リーミングメディアフレームワークです。 このライブラリを使用すれば
  55. アプリケーションは、サウンドのリアルタイム処理からビデオ再生まで、
  56. メディアに関係する全ての機能が利用できます。また Gstremer はプラグ
  57. イン方式を採用していることから、新しい種類のデータや機能への対応が、
  58. プラグインを追加することで簡単に実現できます。
  59. このパッケージは品質も機能も問題は無いものの、配布すると問題になる
  60. 可能性があるプラグインを含んでいます。プラグインとそのサポート・ライ
  61. ブラリのライセンスも Gstreamer とは異なっています。一般には特許に
  62. 関連するコードとして良く知られています。
  63. # %package devel
  64. # Summary: Documentation files for GStreamer ugly plugins.
  65. # Summary(ja): GStreamer ugly プラグインのドキュメント
  66. # Group: Development/Libraries
  67. # Requires: %{name} = %{version}-%{release}
  68. # %description devel
  69. # GStreamer はメディアデータ操作用の filter graph をベースにしたスト
  70. # リーミングメディアフレームワークです。 このライブラリを使用すれば
  71. # アプリケーションは、サウンドのリアルタイム処理からビデオ再生まで、
  72. # メディアに関係する全ての機能が利用できます。また Gstremer はプラグ
  73. # イン方式を採用していることから、新しい種類のデータや機能への対応が、
  74. # プラグインを追加することで簡単に実現できます。
  75. # このパッケージは GStreamer ugly 用のドキュメントを含んでいます。
  76. %prep
  77. %setup -q -n gst-plugins-ugly-%{version}
  78. %build
  79. %configure \
  80. --disable-static \
  81. --disable-amrnb \
  82. --disable-sidplay \
  83. %__make %{?_smp_mflags}
  84. %install
  85. %__rm -rf %{buildroot}
  86. %makeinstall
  87. # Clean out files that should not be part of the rpm.
  88. %__rm -f %{buildroot}%{_libdir}/gstreamer-%{major}/*.{a,la}
  89. %__rm -f %{buildroot}%{_libdir}/*.{a,la}
  90. %find_lang gst-plugins-ugly-%{major}
  91. %clean
  92. %__rm -rf %{buildroot}
  93. %files -f gst-plugins-ugly-%{major}.lang
  94. %defattr(-,root,root)
  95. %doc AUTHORS ChangeLog COPYING NEWS README RELEASE REQUIREMENTS
  96. %{_datadir}/gstreamer-%{major}/presets
  97. # ugly plugins without external dependencies
  98. %{_libdir}/gstreamer-%{major}/*.so
  99. # ugly plugins with external dependencies, but in the main package
  100. # %{_libdir}/gstreamer-%{major}/libgstmad.so
  101. # %files devel
  102. # %defattr(-,root,root)
  103. # %{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-%{major}
  104. %changelog
  105. * Sat Mar 23 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.6-1
  106. - new upstream relase
  107. * Wed Jan 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.5-1
  108. - new upstream relase
  109. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.4-1
  110. - new upstream relase
  111. * Fri Oct 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-1
  112. - new upstream relase
  113. - rename package
  114. * Sat Jun 23 2012 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.19-1
  115. - new upstream relase
  116. * Sun Dec 18 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.18-1
  117. - new upstream relase
  118. - built with new x264
  119. - License: LGPLv2+
  120. * Sat Mar 26 2011 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.17-1
  121. - new upstream relase
  122. * Fri Sep 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.16-1
  123. - new upstream relase
  124. * Sun Jun 27 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.15-1
  125. - new upstream relase
  126. * Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.14-1
  127. - new upstream relase
  128. * Wed Feb 17 2010 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.13-1
  129. - new upstream relase
  130. * Sat Oct 24 2009 Munehiro Yamamoto <munepi@vinelinux.org> 0.10.12-1
  131. - new upstream relase
  132. - enable mpeg2dec with libmpeg2-devel in %%configure
  133. * Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.11-3
  134. - change release to sync with self-build-gstreamer-plugins-ugly
  135. * Wed May 13 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.11-2
  136. - dropped BuildRequires: gtk-doc >= 1.3
  137. - disable-gtk-doc in configure options
  138. - added Obsoletes: gstreamer-plugins-ugly-devel <= 0.10.11-1vl5
  139. * Sun Mar 29 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.11-1
  140. - new upstream relase
  141. * Mon Feb 09 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.10-2
  142. - changed to PreReq: self-build-libmad >= 0.15 from libmad-devel
  143. * Sat Jan 10 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 0.10.10-1
  144. - new upstream relase
  145. * Sun Aug 17 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 0.10,8-1
  146. - upstream release
  147. - delete --disable-a52dec configure option
  148. - delete %%with_lame macro
  149. - added japanase summary and description
  150. * Sun Dec 17 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.5-0vl1
  151. - upstream release
  152. - update %%_gst_ver
  153. * Sun Nov 12 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.4-0vl3
  154. - add NoSource: 0
  155. * Sat Nov 11 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.4-0vl2
  156. - add %%with_lame macro
  157. - enable lame support if rpmbuild with '--with lame'
  158. * Wed Aug 16 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.4-0vl1
  159. - upstream release
  160. * Mon Apr 03 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.3-0vl1
  161. - upstream release
  162. - add libgstdvdsub.so
  163. * Fri Feb 24 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.2-0vl1
  164. - upstream release
  165. - update %%_gst_ver, %%_gstpb_ver (0.10.1->0.10.3)
  166. - add libgstasf.so
  167. * Fri Feb 10 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.1-0vl2
  168. - fix typo
  169. * Mon Jan 23 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.10.1-0vl1
  170. - initial package based on gstreamer-plugins
  171. - new upstream release
  172. - change major to 0.10
  173. - update dependencies
  174. - update %%configure options
  175. * Mon Dec 12 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8.11-0vl3
  176. - remove duplicated libgst{idct,qtdemux,xwindowlistener}.so
  177. * Thu Oct 13 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8.11-0vl2
  178. - added missing alsa plugin
  179. * Thu Sep 22 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.11-0vl1
  180. - new upstream release
  181. - added alsa and cairo plugins
  182. * Sun Jul 10 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.10-0vl1
  183. - new upstream release
  184. * Mon Jun 6 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.9-0vl1
  185. - new upstream release
  186. * Wed May 11 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.8-0vl5
  187. - added Conflicts: gstreamer-plugins-extra-audio < 0.8.8-0vl2
  188. * Sun May 8 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.8-0vl4
  189. - added libgstcdparania.so for gnome-cd (gnome-media)
  190. - BuildRequires: cdparanoia-devel
  191. * Wed Mar 30 2005 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 0.8.8-0vl3
  192. - drop BuildRequires: xmms-devel, Requires: xmms
  193. * Tue Mar 29 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.8.8-0vl2
  194. - libgstvideo4linux2.so temoporally omitted for ppc
  195. (will be back later, I hope)
  196. * Sun Mar 13 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.8.8-0vl1
  197. - new upstream release
  198. - s/Copyright/License/
  199. - includes plugins depend on main package libraries only
  200. * Wed Nov 10 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.5-0vl1
  201. - new upstream release
  202. * Tue Dec 09 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.6.4-0vl1
  203. - new upstream release
  204. * Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.2-0vl1
  205. - new upstream release
  206. * Sat Feb 22 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.0-0vl1
  207. - new upstream release
  208. * Sat Feb 01 2003 Tomoya TAKA <taka@vinelinux.org> 0.5.2-0vl3
  209. - build with -fPIC on alpha
  210. * Fri Jan 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.2-0vl2
  211. - modified scripts
  212. * Fri Jan 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.2-0vl1
  213. - new upstream release
  214. * Sun Jan 19 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.1-0vl2
  215. - disable some plugins.
  216. * Sun Jan 19 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.5.1-0vl1
  217. - new upstream release
  218. - initial build for Vine Linux
  219. * Thu Dec 19 2002 Elliot Lee <sopwith@redhat.com> 0.5.0-15
  220. - Include ia64
  221. - Add BuildRequires: autoconf automake
  222. * Wed Dec 18 2002 Jonathan Blandford <jrb@redhat.com>
  223. - rebuild
  224. * Tue Dec 17 2002 Jonathan Blandford <jrb@redhat.com> 0.5.0-12
  225. - rebuild
  226. * Mon Dec 16 2002 Jonathan Blandford <jrb@redhat.com> 0.5.0-10
  227. - rebuild
  228. - disable tests
  229. * Mon Dec 16 2002 Tim Powers <timp@redhat.com> 0.5.0-9
  230. - rebuild
  231. * Wed Dec 11 2002 Jonathan Blandford <jrb@redhat.com> 0.5.0-7
  232. - fix libdir for ia64.
  233. * Wed Dec 11 2002 Jonathan Blandford <jrb@redhat.com> 0.5.0-3
  234. - ExcludeArch: ia64. Random assembler errors that I have no hope of fixing
  235. - Add devel package
  236. * Wed Dec 11 2002 Jonathan Blandford <jrb@redhat.com> 0.5.0-1
  237. - 0.5.0
  238. - apparently, festival-devel isn't needed.
  239. * Tue Dec 10 2002 Tim Powers <timp@redhat.com> 0.4.2-3
  240. - rebuild to fix broken dep on libgstreamer-0.4.2.so.0
  241. * Tue Dec 3 2002 Havoc Pennington <hp@redhat.com>
  242. - excludearch the arches that can't build gstreamer cothreads
  243. - well it isn't really SMP-safe
  244. - add patch for including pthread.h when required
  245. - prereq gconftool
  246. - fix typo that broke schema installation in post
  247. * Mon Dec 2 2002 Havoc Pennington <hp@redhat.com>
  248. - initial "official" import
  249. - munge tarball for legal cleanliness
  250. * Thu Nov 7 2002 Jeremy Katz <katzj@redhat.com>
  251. - 0.4.2
  252. * Mon Sep 23 2002 Jeremy Katz <katzj@redhat.com>
  253. - 0.4.1
  254. - install the gconf schema
  255. - use %%configure
  256. * Sun Sep 22 2002 Jeremy Katz <katzj@redhat.com>
  257. - update to 0.4.0
  258. - give explicit vorbis include path, don't run vorbis test
  259. * Sun Aug 11 2002 Jeremy Katz <katzj@redhat.com>
  260. - collapse into one package to preserve some sanity
  261. * Wed Mar 13 2002 Thomas Vander Stichele <thomas@apestaart.org>
  262. - added more BuildRequires and Requires
  263. - rearranged some plugins
  264. - added changelog ;)