at-spi2-atk-vl.spec 8.6 KB

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