clutter-gtk-vl.spec 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. %define clutter_gtk_version 1.0
  2. %define clutter_gtk_release 1%{?_dist_release}
  3. Name: clutter-gtk
  4. Version: %{clutter_gtk_version}.2
  5. Release: %{clutter_gtk_release}
  6. Summary: A basic GTK clutter widget
  7. Group: System Environment/Libraries
  8. License: LGPLv2+
  9. URL: http://www.clutter-project.org
  10. Source0: http://www.clutter-project.org/sources/%{name}/%{clutter_gtk_version}/%{name}-%{version}.tar.xz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. BuildRequires: gtk3-devel
  13. BuildRequires: clutter-devel
  14. BuildRequires: gobject-introspection-devel
  15. BuildRequires: autoconf
  16. Vendor: Project Vine
  17. Distribution: Vine Linux
  18. %description
  19. This allows clutter to be embedded in GTK applications.
  20. We hope with further work in the future clutter-gtk will
  21. also allow the reverse, namely embedding GTK in Clutter
  22. %package devel
  23. Summary: Clutter-gtk development environment
  24. Group: Development/Libraries
  25. Requires: %{name} = %{version}-%{release}
  26. Requires: gtk3-devel clutter-devel
  27. %description devel
  28. Header files and libraries for building a extension library for the
  29. clutter-gtk
  30. %prep
  31. %setup -q
  32. %build
  33. autoreconf -if
  34. %configure --enable-introspection=yes
  35. make %{?_smp_mflags}
  36. %install
  37. rm -rf $RPM_BUILD_ROOT
  38. make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -p"
  39. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  40. %find_lang cluttergtk-1.0
  41. %clean
  42. rm -rf $RPM_BUILD_ROOT
  43. %post -p /sbin/ldconfig
  44. %postun -p /sbin/ldconfig
  45. %files -f cluttergtk-1.0.lang
  46. %defattr(-,root,root,-)
  47. %doc AUTHORS ChangeLog COPYING NEWS
  48. %{_libdir}/*.so.*
  49. %{_datadir}/gtk-doc/html/clutter-gtk-1.0
  50. %{_libdir}/girepository-1.0/GtkClutter-1.0.typelib
  51. %files devel
  52. %defattr(-,root,root,-)
  53. %doc
  54. %{_libdir}/pkgconfig/clutter-gtk-1.0.pc
  55. %{_libdir}/*.so
  56. %{_includedir}/clutter-gtk-1.0/clutter-gtk
  57. %{_datadir}/gir-1.0/GtkClutter-1.0.gir
  58. %changelog
  59. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.2-1
  60. - new upstream release
  61. - delete Patch0
  62. - change BuildRequires: gtk3-devel instead of gtk2-devel
  63. * Thu Oct 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.8-1
  64. - new upstream release
  65. - add BuildRequires: autoconf
  66. - add configure option (--enable-introspection=yes)
  67. - add Patch0
  68. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.4-2
  69. - rebuild with rpm-4.8.1 for pkg-config file
  70. * Thu May 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.4-1
  71. - new upstream release
  72. - add BuildRequires: gir-repository-devel
  73. * Tue Dec 01 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.2-1
  74. - build for Vine Linux
  75. * Wed Jul 29 2009 Bastien Nocera <bnocera@redhat.com> 0.10.2-1
  76. - Update to 0.10.2
  77. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-2
  78. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  79. * Mon Jun 22 2009 Bastien Nocera <bnocera@redhat.com> 0.9.2-1
  80. - Update to 0.9.2
  81. * Sat Jun 20 2009 Bastien Nocera <bnocera@redhat.com> 0.9.0-2
  82. - Rebuild for new clutter
  83. * Tue May 26 2009 Bastien Nocera <bnocera@redhat.com> 0.9.0-1
  84. - Update to 0.9.0
  85. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-3
  86. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  87. * Fri Jan 23 2009 Allisson Azevedo <allisson@gmail.com> 0.8.2-2
  88. - Rebuild
  89. * Wed Oct 15 2008 Allisson Azevedo <allisson@gmail.com> 0.8.2-1
  90. - Update to 0.8.2
  91. * Sat Sep 6 2008 Allisson Azevedo <allisson@gmail.com> 0.8.1-1
  92. - Update to 0.8.1
  93. * Thu Jun 26 2008 Colin Walters <walters@redhat.com> 0.6.1-1
  94. - Update to 0.6.1 so we can make tweet go
  95. - Loosen files globs so we don't have to touch them every version
  96. * Thu Feb 21 2008 Allisson Azevedo <allisson@gmail.com> 0.6.0-1
  97. - Update to 0.6.0
  98. * Mon Sep 3 2007 Allisson Azevedo <allisson@gmail.com> 0.4.0-1
  99. - Update to 0.4.0
  100. * Thu May 10 2007 Allisson Azevedo <allisson@gmail.com> 0.1.0-3
  101. - fix devel files section
  102. * Thu May 10 2007 Allisson Azevedo <allisson@gmail.com> 0.1.0-2
  103. - INSTALL removed from docs
  104. - fix make install for keeping timestamps
  105. - fix devel files section
  106. - changed license for LGPL
  107. * Fri Apr 13 2007 Allisson Azevedo <allisson@gmail.com> 0.1.0-1
  108. - Initial RPM release