123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
- Name: at-spi2-atk
- Version: 2.8.1
- Release: 1%{?_dist_release}
- Summary: A GTK+ module that bridges ATK to D-Bus at-spi
- Group: System Environment/Libraries
- License: LGPLv2+
- URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
- #VCS: git:git://git.gnome.org/at-spi-atk
- Source0: http://download.gnome.org/sources/at-spi2-atk/2.8/%{name}-%{version}.tar.xz
- BuildRequires: at-spi2-core-devel
- BuildRequires: dbus-devel
- BuildRequires: dbus-glib-devel
- BuildRequires: glib2-devel
- BuildRequires: libxml2-devel
- BuildRequires: atk-devel
- BuildRequires: libSM-devel
- BuildRequires: intltool
- Requires: at-spi2-core
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- at-spi allows assistive technologies to access GTK-based
- applications. Essentially it exposes the internals of applications for
- automation, so tools such as screen readers, magnifiers, or even
- scripting interfaces can query and interact with GUI controls.
- This version of at-spi is a major break from previous versions.
- It has been completely rewritten to use D-Bus rather than
- ORBIT / CORBA for its transport protocol.
- This package includes a gtk-module that bridges ATK to the new
- D-Bus based at-spi.
- %package devel
- Summary: Development files for %{name}
- Summary(ja): %{name} の開発ファイル
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: glib2-devel
- %description devel
- The %{name}-devel package contains libraries and header files for
- developing applications that use %{name}.
- # compat32
- %package -n compat32-%{name}
- Summary: A GTK+ module that bridges ATK to D-Bus at-spi
- Group: System Environment/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: compat32-at-spi2-core
- %description -n compat32-%{name}
- at-spi allows assistive technologies to access GTK-based
- applications. Essentially it exposes the internals of applications for
- automation, so tools such as screen readers, magnifiers, or even
- scripting interfaces can query and interact with GUI controls.
- This version of at-spi is a major break from previous versions.
- It has been completely rewritten to use D-Bus rather than
- ORBIT / CORBA for its transport protocol.
- This package includes a gtk-module that bridges ATK to the new
- D-Bus based at-spi.
- %package -n compat32-%{name}-devel
- Summary: Development package for %{name}
- Group: Development/Libraries
- Requires: compat32-%{name} = %{version}-%{release}
- Requires: %{name}-devel = %{version}-%{release}
- Requires: compat32-at-spi2-core-devel
- %description -n compat32-%{name}-devel
- Files for development with compat32-%{name}.
- %prep
- %setup -q
- %build
- %configure --disable-static
- sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
- sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
- make %{?_smp_mflags}
- %install
- make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %post -n compat32-%{name} -p /sbin/ldconfig
- %postun -n compat32-%{name} -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc COPYING AUTHORS README
- %{_libdir}/libatk-bridge-2.0.so.*
- %dir %{_libdir}/gtk-2.0
- %dir %{_libdir}/gtk-2.0/modules
- %{_libdir}/gtk-2.0/modules/libatk-bridge.so
- %dir %{_libdir}/gnome-settings-daemon-3.0
- %dir %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/
- %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/%{name}
- %{_libdir}/libatk-bridge-2.0.so
- %{_libdir}/pkgconfig/atk-bridge-2.0.pc
- # compat32
- %if %{build_compat32}
- %files -n compat32-%{name}
- %defattr(-,root,root,-)
- %{_libdir}/libatk-bridge-2.0.so.*
- %files -n compat32-%{name}-devel
- %defattr(-,root,root,-)
- %{_libdir}/libatk-bridge-2.0.so
- %endif
- %changelog
- * Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.1-1
- - new upstream release
- * Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.2-1
- - new upstream release
- * Wed Oct 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
- - new upstream release
- * Sat Oct 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-2
- - create compat32 sub packages
- * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
- - new upstream release
- - remove BuildRequires: gtk2-devel
- - create -devel subpackage
- * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.0-1
- - new upstream release
- * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
- - new upstream release
- * Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
- - new upstream release
- * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
- - new upstream release
- * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.92-1
- - initial build for Vine Linux
- * Mon Sep 5 2011 Matthias Clasen <mclasen@redhat.com> 2.1.91-1
- - Update to 2.1.91
- * Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> 2.1.4-1
- - Update to 2.1.4
- * Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 2.0.1-1
- - Update to 2.0.1
- * Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> 2.0.0-1
- - Update to 2.0.0
- * Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> 1.91.93-1
- - Update to 1.91.93
- * Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.92-1
- - Update to 1.91.92
- * Mon Mar 7 2011 Matthias Clasen <mclasen@redhat.com> 1.91.91-1
- - Update to 1.91.91
- * Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.90-1
- - Update to 1.91.90
- * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
- * Mon Feb 07 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-3
- - Add upstream patches to fix crashers
- * Fri Feb 04 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-2
- - Revert crashy part of 1.91.6 release
- * Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
- - Update to 1.91.6
- * Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
- - Update to 1.91.5
- * Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
- - Update to 1.91.2
- * Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
- - Update to 1.91.0
- * Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
- - Update to 0.4.0
- * Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91.1-1
- - Update to 0.3.91.1
- * Fri Aug 27 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-2
- - Make the gtk module resident to prevent crashes
- * Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
- - Update to 0.3.90
- * Mon Aug 2 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1
- - Update to 0.3.6
- * Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.5-1
- - Update to 0.3.5
- * Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
- - Update to 0.3.4
- * Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
- - Update to 0.3.3
- - Include gtk3 module
- - Drop gtk deps, since we don't want to depend on both gtk2 and gtk3;
- instead own the directories
- * Tue Jun 1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
- - Don't relocate the dbus a11y stack
- * Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
- - Update to 0.3.2
- * Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
- - Update to 0.3.1
- * Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
- - Update to 0.1.8
- * Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
- - Update to 0.1.7
- * Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
- - Update to 0.1.6
- * Sat Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
- - Update to 0.1.5
- * Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1
- - Update to 0.1.4
- * Sat Dec 5 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1
- - Initial packaging
|