at-spi2-atk-vl.spec 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. Name: at-spi2-atk
  2. Version: 2.6.0
  3. Release: 1%{?_dist_release}
  4. Summary: A GTK+ module that bridges ATK to D-Bus at-spi
  5. Group: System Environment/Libraries
  6. License: LGPLv2+
  7. URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
  8. #VCS: git:git://git.gnome.org/at-spi-atk
  9. Source0: http://download.gnome.org/sources/at-spi2-atk/2.6/%{name}-%{version}.tar.xz
  10. BuildRequires: at-spi2-core-devel
  11. BuildRequires: dbus-devel
  12. BuildRequires: dbus-glib-devel
  13. BuildRequires: glib2-devel
  14. BuildRequires: libxml2-devel
  15. BuildRequires: atk-devel
  16. BuildRequires: libSM-devel
  17. BuildRequires: intltool
  18. Requires: at-spi2-core
  19. Vendor: Project Vine
  20. Distribution: Vine Linux
  21. Packager: Takemikaduchi
  22. %description
  23. at-spi allows assistive technologies to access GTK-based
  24. applications. Essentially it exposes the internals of applications for
  25. automation, so tools such as screen readers, magnifiers, or even
  26. scripting interfaces can query and interact with GUI controls.
  27. This version of at-spi is a major break from previous versions.
  28. It has been completely rewritten to use D-Bus rather than
  29. ORBIT / CORBA for its transport protocol.
  30. This package includes a gtk-module that bridges ATK to the new
  31. D-Bus based at-spi.
  32. %package devel
  33. Summary: Development files for %{name}
  34. Summary(ja): %{name} の開発ファイル
  35. Group: Development/Libraries
  36. Requires: %{name} = %{version}-%{release}
  37. Requires: glib2-devel
  38. %description devel
  39. The %{name}-devel package contains libraries and header files for
  40. developing applications that use %{name}.
  41. %prep
  42. %setup -q
  43. %build
  44. %configure --disable-static
  45. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  46. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  47. make %{?_smp_mflags}
  48. %install
  49. make install DESTDIR=$RPM_BUILD_ROOT
  50. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  51. %postun
  52. if [ $1 -eq 0 ]; then
  53. glib-compile-schemas %{_datadir}/glib-2.0/schemas
  54. fi
  55. %posttrans
  56. glib-compile-schemas %{_datadir}/glib-2.0/schemas
  57. %files
  58. %defattr(-,root,root,-)
  59. %doc COPYING AUTHORS README
  60. %{_libdir}/libatk-bridge-2.0.so.*
  61. %dir %{_libdir}/gtk-2.0
  62. %dir %{_libdir}/gtk-2.0/modules
  63. %{_libdir}/gtk-2.0/modules/libatk-bridge.so
  64. %dir %{_libdir}/gnome-settings-daemon-3.0
  65. %dir %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/
  66. %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
  67. %{_datadir}/glib-2.0/schemas/org.a11y.atspi.gschema.xml
  68. %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
  69. %files devel
  70. %defattr(-,root,root,-)
  71. %{_includedir}/%{name}
  72. %{_libdir}/libatk-bridge-2.0.so
  73. %{_libdir}/pkgconfig/atk-bridge-2.0.pc
  74. %changelog
  75. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
  76. - new upstream release
  77. - remove BuildRequires: gtk2-devel
  78. - create -devel subpackage
  79. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.0-1
  80. - new upstream release
  81. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
  82. - new upstream release
  83. * Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
  84. - new upstream release
  85. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
  86. - new upstream release
  87. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.92-1
  88. - initial build for Vine Linux
  89. * Mon Sep 5 2011 Matthias Clasen <mclasen@redhat.com> 2.1.91-1
  90. - Update to 2.1.91
  91. * Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> 2.1.4-1
  92. - Update to 2.1.4
  93. * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 2.0.1-1
  94. - Update to 2.0.1
  95. * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> 2.0.0-1
  96. - Update to 2.0.0
  97. * Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> 1.91.93-1
  98. - Update to 1.91.93
  99. * Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.92-1
  100. - Update to 1.91.92
  101. * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> 1.91.91-1
  102. - Update to 1.91.91
  103. * Tue Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.90-1
  104. - Update to 1.91.90
  105. * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6-4
  106. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  107. * Mon Feb 07 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-3
  108. - Add upstream patches to fix crashers
  109. * Fri Feb 04 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-2
  110. - Revert crashy part of 1.91.6 release
  111. * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
  112. - Update to 1.91.6
  113. * Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
  114. - Update to 1.91.5
  115. * Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
  116. - Update to 1.91.2
  117. * Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
  118. - Update to 1.91.0
  119. * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
  120. - Update to 0.4.0
  121. * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91.1-1
  122. - Update to 0.3.91.1
  123. * Fri Aug 27 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-2
  124. - Make the gtk module resident to prevent crashes
  125. * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
  126. - Update to 0.3.90
  127. * Mon Aug 2 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1
  128. - Update to 0.3.6
  129. * Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.5-1
  130. - Update to 0.3.5
  131. * Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
  132. - Update to 0.3.4
  133. * Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
  134. - Update to 0.3.3
  135. - Include gtk3 module
  136. - Drop gtk deps, since we don't want to depend on both gtk2 and gtk3;
  137. instead own the directories
  138. * Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
  139. - Don't relocate the dbus a11y stack
  140. * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
  141. - Update to 0.3.2
  142. * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
  143. - Update to 0.3.1
  144. * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
  145. - Update to 0.1.8
  146. * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
  147. - Update to 0.1.7
  148. * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
  149. - Update to 0.1.6
  150. * Sun Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
  151. - Update to 0.1.5
  152. * Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1
  153. - Update to 0.1.4
  154. * Sat Dec 5 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1
  155. - Initial packaging