swfdec-vl.spec 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. %define major_version 0.9
  2. %define liboil_version 0.3.1
  3. %define gtk2_version 2.16.0
  4. %define pango_version 1.24
  5. Summary: Flash animation rendering library
  6. Summary(ja): Flash アニメーションレンダリングライブラリ
  7. Name: swfdec
  8. Version: %{major_version}.2
  9. Release: 3%{?_dist_release}
  10. Group: System Environment/Libraries
  11. License: LGPLv2+
  12. URL: http://swfdec.freedesktop.org/
  13. Source0: http://swfdec.freedesktop.org/download/%{name}/%{major_version}/%{name}-%{version}.tar.gz
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  15. BuildRequires: alsa-lib-devel
  16. BuildRequires: glib2-devel >= 2.16
  17. BuildRequires: gstreamer-devel >= 0.10.11
  18. BuildRequires: gstreamer-plugins-base-devel >= 0.10.15
  19. BuildRequires: gtk2-devel >= %{gtk2_version}
  20. BuildRequires: liboil-devel >= %{liboil_version}
  21. BuildRequires: libsoup-devel >= 2.4.0
  22. BuildRequires: pango-devel >= %{pango_version}
  23. Requires(pre): /sbin/ldconfig
  24. Requires(post): /sbin/ldconfig
  25. %description
  26. swfdec is a library for rendering Adobe Flash animations. Currently it handles
  27. most Flash 3, 4 and many Flash 7 videos.
  28. %package devel
  29. Summary: Development files for %{name}
  30. Summary(ja): %{name} の開発ファイル
  31. Group: Development/Libraries
  32. Requires: %{name} = %{version}-%{release}
  33. Requires: liboil-devel
  34. Requires: pango-devel
  35. Requires: pkgconfig
  36. %description devel
  37. %{name}-devel contains the files needed to build packages that depend on
  38. swfdec.
  39. %package gtk
  40. Summary: A library for easy embedding of Flash files in an application
  41. Group: Development/Libraries
  42. Requires: %{name} = %{version}-%{release}
  43. Requires(pre): /sbin/ldconfig
  44. Requires(post): /sbin/ldconfig
  45. %description gtk
  46. %{name}-gtk is a library for developers that allows one to easily embed
  47. Flash videos and animations into their appplications.
  48. %package gtk-devel
  49. Summary: Development files for swfdec-gtk
  50. Summary(ja): swfdec-gtk の開発ファイル
  51. Group: Development/Libraries
  52. Requires: %{name}-gtk = %{version}-%{release}
  53. Requires: %{name}-devel = %{version}-%{release}
  54. Requires: gtk2-devel
  55. %description gtk-devel
  56. %{name}-gtk is a library for developers that allows one to easily embed
  57. Flash videos and animations into their appplications. This package contains
  58. files necessary to build packages and appplications that use %{name}-gtk.
  59. %prep
  60. %setup -q
  61. %build
  62. %configure --disable-static --with-audio=alsa
  63. # remove rpath from libtool
  64. sed -i.rpath 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  65. sed -i.rpath 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  66. make %{?_smp_mflags}
  67. %install
  68. rm -rf $RPM_BUILD_ROOT
  69. make DESTDIR=$RPM_BUILD_ROOT install INSTALL='install -p'
  70. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  71. %check
  72. # Disabling test since it will fail due to the gstreamer mp3 plugin
  73. # not being available in Fedora.
  74. #
  75. #export LD_LIBRARY_PATH=`pwd`/libswfdec/.libs:`pwd`/libswfdec-gtk/.libs
  76. #make check
  77. #unset LD_LIBRARY_PATH
  78. %clean
  79. rm -rf $RPM_BUILD_ROOT
  80. %post -p /sbin/ldconfig
  81. %post gtk -p /sbin/ldconfig
  82. %postun -p /sbin/ldconfig
  83. %postun gtk -p /sbin/ldconfig
  84. %files
  85. %defattr(-,root,root,-)
  86. %doc AUTHORS COPYING NEWS README
  87. %{_libdir}/libswfdec-%{major_version}.so.*
  88. %files devel
  89. %defattr(-,root,root,-)
  90. %{_datadir}/gtk-doc/html/%{name}/
  91. %{_libdir}/pkgconfig/%{name}-%{major_version}.pc
  92. %{_libdir}/libswfdec-%{major_version}.so
  93. %dir %{_includedir}/%{name}-%{major_version}
  94. %{_includedir}/%{name}-%{major_version}/swfdec/
  95. %files gtk
  96. %defattr(-,root,root,-)
  97. #%{_datadir}/icons/hicolor/*/apps/%{name}.png
  98. #%{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
  99. %{_libdir}/libswfdec-gtk-%{major_version}.so.*
  100. %files gtk-devel
  101. %defattr(-,root,root,-)
  102. %{_libdir}/libswfdec-gtk-%{major_version}.so
  103. %{_libdir}/pkgconfig/%{name}-gtk-%{major_version}.pc
  104. %{_includedir}/%{name}-%{major_version}/swfdec-gtk/
  105. %changelog
  106. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.2-3
  107. - rebuild with VineSeed environment
  108. * Tue Oct 05 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.2-2
  109. - rebuild with rpm-4.8.1
  110. * Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.9.2-1
  111. - new upstream release
  112. * Wed Dec 31 2008 Shu KONNO <owa@bg.wakwak.com> 0.8.4-1
  113. - new upstream release
  114. * Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.0-1
  115. - initial build for Vine Linux
  116. * Mon Sep 8 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.8.0-1
  117. - Update to 0.8.0.
  118. * Wed Jul 30 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.7.4-1
  119. - Update to 0.7.4.
  120. * Wed Jun 25 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.7.2-1
  121. - Update to 0.7.2
  122. * Wed Apr 23 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.6.6-1
  123. - Update to 0.6.6.
  124. - Drop memory-overwrite patch. Fixed upstream.
  125. - Drop alsa patch. Fixed upstream.
  126. * Thu Apr 10 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.6.4-3
  127. - Add patch to fix memory overwrite error. (#441614)
  128. * Thu Apr 10 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.6.4-2
  129. - Build w/ alsa backend instead of pulse audio.
  130. - Add patch to fix alsa support. (#441617).
  131. - Drop unnecessary BR on js-devel and gnome-vfs2-devel.
  132. - Add BR on glib2-devel.
  133. * Wed Apr 9 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.6.4-1
  134. - Update to 0.6.4.
  135. * Sat Mar 29 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.6.2-1
  136. - Update to 0.6.2.
  137. * Wed Feb 20 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.6.0-1
  138. - Update to 0.6.0.
  139. - Bump minimum version of gstreamer needed.
  140. - Add BR for gstreamer-plugins-base-devel.
  141. * Thu Feb 14 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.5.90-3
  142. - Rebuild for new libsoup.
  143. * Fri Feb 8 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.5.90-2
  144. - Rebuild for gcc-4.3.
  145. * Tue Jan 29 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.5.90-1
  146. - Update to 0.5.90.
  147. - Bump BR minimum versions for libsoup & pango.
  148. * Wed Dec 19 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.5.5-2
  149. - Build w/ pulse audio support.
  150. * Mon Dec 17 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.5.5-1
  151. - Update to 0.5.5.
  152. * Fri Nov 16 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.5.4-2
  153. - Add requires for pango-devel to devel pkg.
  154. - Keep timestamp on installed files.
  155. * Thu Nov 15 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.5.4-1
  156. - Update to 0.5.4.
  157. - Use valid license tag.
  158. - Remove BR on ffmpeg & libmad, and only build gstreamer backend.
  159. * Fri Oct 12 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.3-1
  160. - Update to new upstream release (0.5.3)
  161. * Wed Oct 10 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.2-1
  162. - Update to new upstream release (0.5.2)
  163. * Wed Aug 15 2007 Peter Gordon <peter@thecodergeek.com> - 0.5.1-1
  164. - Update to new upstream release (0.5.1)
  165. * Thu Jul 5 2007 kwizart <kwizart at gmail.com> - 0.4.5-1
  166. - Update to 0.4.5 (bugfix)
  167. - Add BR ffmpeg-devel libmad-devel (enabled in configure)
  168. - Remove rpath (libtool method)
  169. * Sat Apr 28 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.4-1
  170. - Update to new upstream release (0.4.4), which adds two new subpackages:
  171. swfdec-gtk and swfdec-gtk-devel.
  172. * Sun Mar 25 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.3-2
  173. - Add js-devel to the BuildRequires to fix compilation in Mock.
  174. (Thanks to Julian Sikorski; Livna bug #1453)
  175. * Sat Mar 24 2007 Peter Gordon <peter@thecodergeek.com> - 0.4.3-1
  176. - Update to new upstream release (0.4.3), with lots of spec cleanups
  177. - Spec file based heavily on Thomas Vander Stichele's 0.3.6 stuff.
  178. * Sun Dec 03 2006 Thomas Vander Stichele <thomas at apestaart dot org>
  179. - 0.3.6-0.gst.2
  180. - fix pre/post scripts
  181. * Sun Dec 03 2006 Thomas Vander Stichele <thomas at apestaart dot org>
  182. - 0.3.6-0.gst.1
  183. - new upstream
  184. - remove swf_play
  185. - add js-devel and gimp-devel buildrequires
  186. - add gimp plugin
  187. * Fri Jun 24 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  188. - 0.3.5-0.gst.1
  189. - updated to new upstream
  190. * Tue May 17 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  191. - 0.3.4-0.gst.1
  192. - updated to new upstream
  193. * Thu Mar 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
  194. - 0.3.2-0.lvn.1
  195. - updated to new liboil and upstream release
  196. * Thu Nov 11 2004 Thomas Vander Stichele <thomas at apestaart dot org>
  197. - new upstream release
  198. * Thu May 20 2004 Thomas Vander Stichele <thomas at apestaart dot org>
  199. - 0.2.2-0.lvn.2
  200. - require gcc-c++ for libtool
  201. - fix pre/post req
  202. - fix gtk loaders location
  203. - work around FC2 packaging bug for SDL-devel
  204. * Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
  205. - 0.2.2-0.lvn.1: updated for rpm.livna.us (without mozilla plugin)
  206. * Mon May 19 2003 Thomas Vander Stichele <thomas at apestaart dot org>
  207. - Updated for 0.2.2
  208. * Wed Feb 05 2003 Christian F.K. Schaller <Uraeus@linuxrising.org>
  209. - Update spec to handle pixbuf loader
  210. * Sat Oct 26 2002 Christian F.K. Schaller <Uraeus@linuxrising.org>
  211. - First attempt at spec