source: projects/specs/trunk/a/at-spi2-atk/at-spi2-atk-vl.spec @ 9791

Revision 9791, 8.4 KB checked in by Takemikaduchi, 9 years ago (diff)

GNOME 3.18.1, BlueZ 5.35, ICU 56.1, Mesa 11.0.4, PulseAudio 7.1, xserver 1.17.4, etc.

RevLine 
[6894]1%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
2
[4812]3Name:           at-spi2-atk
[9791]4Version:        2.18.1
[6951]5Release:        1%{?_dist_release}
[4812]6Summary:        A GTK+ module that bridges ATK to D-Bus at-spi
7
8Group:          System Environment/Libraries
9License:        LGPLv2+
10URL:            http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
11#VCS: git:git://git.gnome.org/at-spi-atk
[9791]12Source0:        http://download.gnome.org/sources/at-spi2-atk/2.18/%{name}-%{version}.tar.xz
[4812]13
14BuildRequires:  at-spi2-core-devel
15BuildRequires:  dbus-devel
16BuildRequires:  dbus-glib-devel
17BuildRequires:  glib2-devel
18BuildRequires:  libxml2-devel
19BuildRequires:  atk-devel
20BuildRequires:  libSM-devel
21BuildRequires:  intltool
22
23Requires:       at-spi2-core
24
[4850]25Vendor:         Project Vine
26Distribution:   Vine Linux
27Packager:       Takemikaduchi
28
[4812]29%description
30at-spi allows assistive technologies to access GTK-based
31applications. Essentially it exposes the internals of applications for
32automation, so tools such as screen readers, magnifiers, or even
33scripting interfaces can query and interact with GUI controls.
34
35This version of at-spi is a major break from previous versions.
36It has been completely rewritten to use D-Bus rather than
37ORBIT / CORBA for its transport protocol.
38
39This package includes a gtk-module that bridges ATK to the new
40D-Bus based at-spi.
41
42
[6890]43%package        devel
44Summary:        Development files for %{name}
45Summary(ja):    %{name} の開発ファイル
46Group:          Development/Libraries
47Requires:       %{name} = %{version}-%{release}
48Requires:       glib2-devel
49
50%description    devel
51The %{name}-devel package contains libraries and header files for
52developing applications that use %{name}.
53
[6894]54# compat32
55%package -n compat32-%{name}
56Summary:  A GTK+ module that bridges ATK to D-Bus at-spi
57Group:    System Environment/Libraries
58Requires: %{name} = %{version}-%{release}
59Requires: compat32-at-spi2-core
[6890]60
[6894]61%description -n compat32-%{name}
62at-spi allows assistive technologies to access GTK-based
63applications. Essentially it exposes the internals of applications for
64automation, so tools such as screen readers, magnifiers, or even
65scripting interfaces can query and interact with GUI controls.
66
67This version of at-spi is a major break from previous versions.
68It has been completely rewritten to use D-Bus rather than
69ORBIT / CORBA for its transport protocol.
70
71This package includes a gtk-module that bridges ATK to the new
72D-Bus based at-spi.
73
74
75%package -n compat32-%{name}-devel
76Summary: Development package for %{name}
77Group:   Development/Libraries
78Requires: compat32-%{name} = %{version}-%{release}
79Requires: %{name}-devel = %{version}-%{release}
80Requires: compat32-at-spi2-core-devel
81
82%description -n compat32-%{name}-devel
83Files for development with compat32-%{name}.
84
85
[4812]86%prep
87%setup -q
88
89%build
[6890]90%configure --disable-static
[4812]91sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
92sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
93
94make %{?_smp_mflags}
95
96
97%install
98make install DESTDIR=$RPM_BUILD_ROOT
99
[6890]100find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
[4812]101
[6894]102%post -p /sbin/ldconfig
[4812]103
[7633]104%postun -p /sbin/ldconfig
[4812]105
[6894]106%post -n compat32-%{name} -p /sbin/ldconfig
[7633]107
[6894]108%postun -n compat32-%{name} -p /sbin/ldconfig
109
110
[6890]111%files
112%defattr(-,root,root,-)
[4812]113%doc COPYING AUTHORS README
[6890]114%{_libdir}/libatk-bridge-2.0.so.*
[4812]115%dir %{_libdir}/gtk-2.0
116%dir %{_libdir}/gtk-2.0/modules
117%{_libdir}/gtk-2.0/modules/libatk-bridge.so
[6890]118%dir %{_libdir}/gnome-settings-daemon-3.0
119%dir %{_libdir}/gnome-settings-daemon-3.0/gtk-modules/
120%{_libdir}/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
[4812]121
[6890]122%files devel
123%defattr(-,root,root,-)
124%{_includedir}/%{name}
125%{_libdir}/libatk-bridge-2.0.so
126%{_libdir}/pkgconfig/atk-bridge-2.0.pc
[4812]127
[6894]128# compat32
129%if %{build_compat32}
130%files -n compat32-%{name}
131%defattr(-,root,root,-)
132%{_libdir}/libatk-bridge-2.0.so.*
[6890]133
[6894]134%files -n compat32-%{name}-devel
135%defattr(-,root,root,-)
136%{_libdir}/libatk-bridge-2.0.so
137%endif
138
139
[4812]140%changelog
[9791]141* Thu Oct 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.1-1
142- new upstream release
143
[9475]144* Sat Mar 28 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.16.0-1
[9073]145- new upstream release
146
[9475]147* Fri Sep 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.14.1-1
148- new upstream release
149
[8369]150* Sat Apr 19 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.1-1
151- new upstream release
152
[8353]153* Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.12.0-1
154- new upstream release
155
[8011]156* Sun Nov 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.2-1
157- new upstream release
158
[7938]159* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.10.0-1
160- new upstream release
161
[7633]162* Wed Apr 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.1-1
163- new upstream release
164
[7119]165* Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.2-1
166- new upstream release
167
[6951]168* Wed Oct 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.1-1
169- new upstream release
170
[6894]171* Sat Oct 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-2
172- create compat32 sub packages
173
[6890]174* Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-1
175- new upstream release
176- remove BuildRequires: gtk2-devel
177- create -devel subpackage
178
[6011]179* Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.4.0-1
180- new upstream release
181
[5168]182* Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.2-1
183- new upstream release
184
[5038]185* Fri Oct 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.1-1
186- new upstream release
187
[4850]188* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.2.0-1
189- new upstream release
190
[4812]191* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.92-1
192- initial build for Vine Linux
193
194
195* Mon Sep  5 2011 Matthias Clasen <mclasen@redhat.com> 2.1.91-1
196- Update to 2.1.91
197
198* Mon Jul 25 2011 Matthias Clasen <mclasen@redhat.com> 2.1.4-1
199- Update to 2.1.4
200
201* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 2.0.1-1
202- Update to 2.0.1
203
204* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 2.0.0-1
205- Update to 2.0.0
206
207* Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> 1.91.93-1
208- Update to 1.91.93
209
210* Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.92-1
211- Update to 1.91.92
212
213* Mon Mar  7 2011 Matthias Clasen <mclasen@redhat.com> 1.91.91-1
214- Update to 1.91.91
215
[7633]216* Mon Feb 21 2011 Matthias Clasen <mclasen@redhat.com> 1.91.90-1
[4812]217- Update to 1.91.90
218
219* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.91.6-4
220- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
221
222* Mon Feb 07 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-3
223- Add upstream patches to fix crashers
224
225* Fri Feb 04 2011 Bastien Nocera <bnocera@redhat.com> 1.91.6-2
226- Revert crashy part of 1.91.6 release
227
228* Wed Feb  2 2011 Christopher Aillon <caillon@redhat.com> - 1.91.6-1
229- Update to 1.91.6
230
231* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> - 1.91.5-1
232- Update to 1.91.5
233
234* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.2-1
235- Update to 1.91.2
236
237* Mon Oct  4 2010 Matthias Clasen <mclasen@redhat.com> - 1.91.0-1
238- Update to 1.91.0
239
240* Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.4.0-1
241- Update to 0.4.0
242
243* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.91.1-1
244- Update to 0.3.91.1
245
246* Fri Aug 27 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-2
247- Make the gtk module resident to prevent crashes
248
249* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.90-1
250- Update to 0.3.90
251
252* Mon Aug  2 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.6-1
253- Update to 0.3.6
254
255* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.5-1
256- Update to 0.3.5
257
258* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.4-1
259- Update to 0.3.4
260
261* Tue Jun  8 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.3-1
262- Update to 0.3.3
263- Include gtk3 module
264- Drop gtk deps, since we don't want to depend on both gtk2 and gtk3;
265  instead own the directories
266
267* Tue Jun  1 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-2
268- Don't relocate the dbus a11y stack
269
270* Fri May 28 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.2-1
271- Update to 0.3.2
272
273* Sat May 15 2010 Matthias Clasen <mclasen@redhat.com> - 0.3.1-1
274- Update to 0.3.1
275
276* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.8-1
277- Update to 0.1.8
278
279* Sat Feb 20 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.7-1
280- Update to 0.1.7
281
282* Wed Feb 10 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.6-1
283- Update to 0.1.6
284
[7633]285* Sat Jan 16 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
[4812]286- Update to 0.1.5
287
288* Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1
289- Update to 0.1.4
290
291* Sat Dec  5 2009 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1
292- Initial packaging
Note: See TracBrowser for help on using the repository browser.