at-spi2-core-vl.spec 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. %bcond_with firstbuild
  2. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  3. Name: at-spi2-core
  4. Version: 2.6.3
  5. Release: 1%{?_dist_release}
  6. Summary: Protocol definitions and daemon for D-Bus at-spi
  7. Group: System Environment/Libraries
  8. License: LGPLv2+
  9. URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
  10. Source0: http://download.gnome.org/sources/at-spi2-core/2.6/%{name}-%{version}.tar.xz
  11. BuildRequires: dbus-devel
  12. BuildRequires: dbus-glib-devel
  13. BuildRequires: glib2-devel
  14. %{!?with_firstbuild:BuildRequires: gobject-introspection-devel}
  15. BuildRequires: libXtst-devel
  16. BuildRequires: libXevie-devel
  17. BuildRequires: libXext-devel
  18. BuildRequires: libXi-devel
  19. BuildRequires: libSM-devel
  20. BuildRequires: autoconf automake libtool
  21. BuildRequires: intltool
  22. %{!?with_firstbuild:BuildRequires: at-spi2-core-devel}
  23. Requires: dbus
  24. Vendor: Project Vine
  25. Distribution: Vine Linux
  26. Packager: Takemikaduchi
  27. %description
  28. at-spi allows assistive technologies to access GTK-based
  29. applications. Essentially it exposes the internals of applications for
  30. automation, so tools such as screen readers, magnifiers, or even
  31. scripting interfaces can query and interact with GUI controls.
  32. This version of at-spi is a major break from previous versions.
  33. It has been completely rewritten to use D-Bus rather than
  34. ORBIT / CORBA for its transport protocol.
  35. %package devel
  36. Summary: Development files and headers for at-spi2-core
  37. Group: Development/Libraries
  38. Requires: %{name} = %{version}-%{release}
  39. %description devel
  40. The at-spi2-core-devel package includes the header files and
  41. API documentation for libatspi.
  42. # compat32
  43. %package -n compat32-%{name}
  44. Summary: Protocol definitions and daemon for D-Bus at-spi
  45. Group: System Environment/Libraries
  46. Requires: %{name} = %{version}-%{release}
  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. %package -n compat32-%{name}-devel
  56. Summary: Development files and headers for at-spi2-core
  57. Group: Development/Libraries
  58. Requires: compat32-%{name} = %{version}-%{release}
  59. Requires: %{name}-devel = %{version}-%{release}
  60. %description -n compat32-%{name}-devel
  61. The at-spi2-core-devel package includes the header files and
  62. API documentation for libatspi.
  63. %prep
  64. %setup -q
  65. %build
  66. %configure %{?with_firstbuild:--disable-introspection} \
  67. --with-dbus-daemondir=/bin
  68. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  69. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  70. make %{?_smp_mflags}
  71. %install
  72. make install DESTDIR=$RPM_BUILD_ROOT
  73. %{find_lang} %{name}
  74. rm $RPM_BUILD_ROOT%{_libdir}/libatspi.la
  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 -f %{name}.lang
  80. %doc COPYING AUTHORS README
  81. %{_libexecdir}/at-spi2-registryd
  82. %{_datadir}/dbus-1/services/org.a11y.atspi.Registry.service
  83. %{_sysconfdir}/at-spi2
  84. %{_sysconfdir}/xdg/autostart/at-spi-dbus-bus.desktop
  85. %{_libdir}/libatspi.so.*
  86. %{!?with_firstbuild:%{_libdir}/girepository-1.0/Atspi-2.0.typelib}
  87. %{_libexecdir}/at-spi-bus-launcher
  88. %{_datadir}/dbus-1/services/org.a11y.Bus.service
  89. %files devel
  90. %{_libdir}/libatspi.so
  91. %{_datadir}/gtk-doc/html/libatspi
  92. %{!?with_firstbuild:%{_datadir}/gir-1.0/Atspi-2.0.gir}
  93. %{_includedir}/at-spi-2.0
  94. %{_libdir}/pkgconfig/atspi-2.pc
  95. # compat32
  96. %if %{build_compat32}
  97. %files -n compat32-%{name}
  98. %defattr(-,root,root,-)
  99. %{_libdir}/libatspi.so.*
  100. %files -n compat32-%{name}-devel
  101. %defattr(-,root,root,-)
  102. %{_libdir}/libatspi.so
  103. %endif
  104. %changelog
  105. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.3-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. * Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.2-1
  116. - new upstream release
  117. * Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.1-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. * Tue Sep 6 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. * Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.2-1
  132. - Update to 2.1.2
  133. * Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.1.1-1
  134. - Update to 2.1.1
  135. * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.1-1
  136. - Update to 2.0.1
  137. * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> - 2.0.0-1
  138. - Update to 2.0.0
  139. * Fri Apr 1 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.93-2
  140. - Fix 30 second wait during login (#691995)
  141. * Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.93-1
  142. - Update to 1.91.93
  143. * Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.92-1
  144. - Update to 2.91.92
  145. * Wed Mar 9 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-2
  146. - Fix a crash on logout
  147. * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.91-1
  148. - Update to 1.91.91
  149. * Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.90-1
  150. - Update to 1.91.90
  151. * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6.1-2
  152. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  153. * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6.1-1
  154. - Update to 1.91.6.1
  155. * Tue Feb 1 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
  156. - Update to 1.91.6
  157. * Fri Jan 21 2011 Christopher Aillon <caillon@redhat.com> - 1.91.5-2
  158. - Add gobject-introspection support
  159. * Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
  160. - Update to 1.91.5
  161. * Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
  162. - Update 1.91.2
  163. * Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
  164. - Update to 1.91.0
  165. * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
  166. - Update to 0.4.0
  167. * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91-1
  168. - Update to 0.3.91
  169. * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
  170. - Update to 0.3.90
  171. * Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
  172. - Update to 0.3.4
  173. * Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
  174. - Update to 0.3.3
  175. * Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
  176. - Don't relocate the dbus a11y stack
  177. * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
  178. - Update to 0.3.2
  179. * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
  180. - Update to 0.3.1
  181. * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
  182. - Update to 0.1.8
  183. * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
  184. - Update to 0.1.7
  185. * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
  186. - Update to 0.1.6
  187. * Wed Jan 20 2010 Matthias Clasen <mlasen@redhat.com> - 0.1.5-2
  188. - Specify the right location for the dbus daemon
  189. * Sun Jan 16 2010 Matthias Clasen <mlasen@redhat.com> - 0.1.5-1
  190. - Update to 0.1.5
  191. * Tue Dec 22 2009 Matthias Clasen <mlasen@redhat.com> - 0.1.4-1
  192. - Update to 0.1.4
  193. * Sat Dec 4 2009 Matthias Clasen <mlasen@redhat.com> - 0.1.3-1
  194. - Initial packaging