at-spi2-atk-vl.spec 7.8 KB

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