mirror of
https://abf.rosa.ru/djam/atk1.0.git
synced 2025-02-23 15:12:54 +00:00
346 lines
9.5 KiB
RPMSpec
346 lines
9.5 KiB
RPMSpec
%define enable_gtkdoc 0
|
||
|
||
%define api_version 1.0
|
||
%define lib_major 0
|
||
%define pkgname atk
|
||
%define lib_name %mklibname %{name}_ %{lib_major}
|
||
%define develname %mklibname -d %{name}
|
||
|
||
Name: %{pkgname}%{api_version}
|
||
Version: 2.2.0
|
||
Release: 4
|
||
Summary: Accessibility features for Gtk+
|
||
License: LGPLv2+
|
||
Group: Accessibility
|
||
Url: http://developer.gnome.org/projects/gap/
|
||
Source0: http://ftp.gnome.org/pub/GNOME/sources/%{pkgname}/%{pkgname}-%{version}.tar.xz
|
||
%if %enable_gtkdoc
|
||
BuildRequires: gtk-doc >= 1.11-3
|
||
%endif
|
||
BuildRequires: pkgconfig(glib-2.0) >= 2.5.7
|
||
BuildRequires: pkgconfig(gobject-introspection-1.0)
|
||
|
||
%description
|
||
Accessibility means providing system infrastructure that allows add-on
|
||
assistive software to transparently provide specalized input and ouput
|
||
capabilities. For example, screen readers allow blind users to navigate
|
||
through applications, determine the state of controls, and read text via
|
||
text to speech conversion. On-screen keyboards replace physical
|
||
keyboards, and head-mounted pointers replace mice.
|
||
|
||
ATK, the Accessibility Tookit, is used to obtain accessibily information
|
||
from GTK+ and GNOME widgets.
|
||
|
||
%package common
|
||
Summary: Data files used by atk
|
||
Group: System/Libraries
|
||
Conflicts: %{_lib}atk1.0_0 < 1.13.1-2
|
||
# 64bit atk1.0-common conflicts with old 32bit lib as well -Anssi
|
||
Conflicts: libatk1.0_0 < 1.13.1-2
|
||
|
||
%description common
|
||
ATK, the Accessibility Tookit, is used to obtain accessibily information
|
||
from GTK+ and GNOME widgets.
|
||
|
||
This package contains data used by atk library.
|
||
|
||
%package -n %{lib_name}
|
||
Summary: Accessibility features for Gtk+
|
||
Group: System/Libraries
|
||
Suggests: %{name}-common >= %{version}-%{release}
|
||
Provides: %{pkgname} = %{version}-%{release}
|
||
Provides: lib%{pkgname} = %{version}-%{release}
|
||
Provides: lib%{name} = %{version}-%{release}
|
||
Obsoletes: %{pkgname} lib%{pkgname}
|
||
Conflicts: gir-repository < 0.6.5-4
|
||
|
||
%description -n %{lib_name}
|
||
Accessibility means providing system infrastructure that allows add-on
|
||
assistive software to transparently provide specalized input and ouput
|
||
capabilities. For example, screen readers allow blind users to navigate
|
||
through applications, determine the state of controls, and read text via
|
||
text to speech conversion. On-screen keyboards replace physical
|
||
keyboards, and head-mounted pointers replace mice.
|
||
|
||
%package -n %{develname}
|
||
Summary: Stuff for developing with atk
|
||
Group: Development/C
|
||
Obsoletes: %{pkgname}-devel lib%{pkgname}-devel
|
||
Provides: %{pkgname}-devel = %{version}-%{release}
|
||
Requires: %{lib_name} = %{version}-%{release}
|
||
Conflicts: libatk10-devel
|
||
Obsoletes: %mklibname -d %{name}_ 0
|
||
Conflicts: gir-repository < 0.6.5-4
|
||
|
||
%description -n %{develname}
|
||
ATK, the Accessibility Tookit, is used to obtain accessibily information
|
||
from GTK+ and GNOME widgets.
|
||
|
||
%prep
|
||
%setup -q -n %{pkgname}-%{version}
|
||
|
||
%build
|
||
%configure2_5x \
|
||
--disable-static \
|
||
%if %enable_gtkdoc
|
||
--enable-gtk-doc
|
||
%endif
|
||
|
||
%make
|
||
|
||
%install
|
||
rm -rf %{buildroot}
|
||
%makeinstall_std
|
||
find %{buildroot} -name "*.la" -delete
|
||
%{find_lang} %{pkgname}10
|
||
|
||
%files common -f %{pkgname}10.lang
|
||
%doc README
|
||
|
||
%files -n %{lib_name}
|
||
%{_libdir}/libatk-%{api_version}.so.%{lib_major}*
|
||
%{_libdir}/girepository-1.0/Atk-%{api_version}.typelib
|
||
|
||
%files -n %{develname}
|
||
%doc AUTHORS ChangeLog NEWS
|
||
%doc %{_datadir}/gtk-doc/html/*
|
||
%{_includedir}/*
|
||
%{_libdir}/*.so
|
||
%{_libdir}/pkgconfig/*
|
||
%{_datadir}/gir-1.0/Atk-%{api_version}.gir
|
||
|
||
|
||
%changelog
|
||
* Sat Dec 03 2011 Matthew Dawkins <mattydaw@mandriva.org> 2.2.0-4
|
||
+ Revision: 737360
|
||
- really disable static build now
|
||
- rebuild to remove reqs in devel pkg
|
||
- removed .la files
|
||
- disabled static build
|
||
- removed old ldconfig scriptlets
|
||
- removed dup devel provides
|
||
- converted BRs to pkgconfig provides
|
||
|
||
* Sun Nov 06 2011 Paulo Andrade <pcpa@mandriva.com.br> 2.2.0-3
|
||
+ Revision: 722053
|
||
- Revert removal of .la files.
|
||
|
||
* Sat Nov 05 2011 Zé <ze@mandriva.org> 2.2.0-2
|
||
+ Revision: 720056
|
||
- clean defattr and section clean
|
||
- clean .la files
|
||
- rebuild
|
||
|
||
* Mon Oct 31 2011 Matthew Dawkins <mattydaw@mandriva.org> 2.2.0-1
|
||
+ Revision: 708113
|
||
- new version 2.2.0
|
||
|
||
* Mon Jun 13 2011 Götz Waschk <waschk@mandriva.org> 2.0.1-1
|
||
+ Revision: 684928
|
||
- new version
|
||
- xz tarball
|
||
|
||
* Tue Apr 05 2011 Funda Wang <fwang@mandriva.org> 2.0.0-1
|
||
+ Revision: 650440
|
||
- new version 2.0.0
|
||
|
||
* Sat Feb 26 2011 Funda Wang <fwang@mandriva.org> 1.32.0-2
|
||
+ Revision: 640095
|
||
- fix requires on newer glib
|
||
|
||
* Mon Sep 27 2010 Götz Waschk <waschk@mandriva.org> 1.32.0-1mdv2011.0
|
||
+ Revision: 581215
|
||
- update to new version 1.32.0
|
||
|
||
* Sun Sep 12 2010 Götz Waschk <waschk@mandriva.org> 1.30.0-3mdv2011.0
|
||
+ Revision: 577623
|
||
- rebuild for new g-i
|
||
|
||
* Thu Jul 29 2010 Götz Waschk <waschk@mandriva.org> 1.30.0-2mdv2011.0
|
||
+ Revision: 563161
|
||
- rebuild for new gobject-introspection
|
||
|
||
* Tue Mar 30 2010 Götz Waschk <waschk@mandriva.org> 1.30.0-1mdv2010.1
|
||
+ Revision: 528955
|
||
- update to new version 1.30.0
|
||
|
||
* Mon Mar 08 2010 Götz Waschk <waschk@mandriva.org> 1.29.92-1mdv2010.1
|
||
+ Revision: 515777
|
||
- update to new version 1.29.92
|
||
|
||
* Mon Dec 21 2009 Götz Waschk <waschk@mandriva.org> 1.29.4-1mdv2010.1
|
||
+ Revision: 480556
|
||
- new version
|
||
- disable gtk-doc (b.g.o #605113)
|
||
- enable introspection
|
||
|
||
* Wed Dec 09 2009 Götz Waschk <waschk@mandriva.org> 1.29.3-1mdv2010.1
|
||
+ Revision: 475370
|
||
- update to new version 1.29.3
|
||
|
||
* Tue Sep 22 2009 Götz Waschk <waschk@mandriva.org> 1.28.0-1mdv2010.0
|
||
+ Revision: 447188
|
||
- update to new version 1.28.0
|
||
|
||
* Mon Aug 10 2009 Götz Waschk <waschk@mandriva.org> 1.27.90-1mdv2010.0
|
||
+ Revision: 414195
|
||
- update to new version 1.27.90
|
||
|
||
* Sun Aug 09 2009 Oden Eriksson <oeriksson@mandriva.com> 1.26.0-2mdv2010.0
|
||
+ Revision: 413120
|
||
- rebuild
|
||
|
||
+ Götz Waschk <waschk@mandriva.org>
|
||
- reenable gtk-doc
|
||
|
||
* Mon Mar 16 2009 Götz Waschk <waschk@mandriva.org> 1.26.0-1mdv2009.1
|
||
+ Revision: 355933
|
||
- new version
|
||
- disable gtk-doc
|
||
|
||
* Mon Dec 01 2008 Götz Waschk <waschk@mandriva.org> 1.25.2-1mdv2009.1
|
||
+ Revision: 308752
|
||
- update to new version 1.25.2
|
||
|
||
* Mon Sep 22 2008 Götz Waschk <waschk@mandriva.org> 1.24.0-1mdv2009.0
|
||
+ Revision: 286524
|
||
- new version
|
||
- update license
|
||
|
||
* Mon Jul 21 2008 Götz Waschk <waschk@mandriva.org> 1.23.5-1mdv2009.0
|
||
+ Revision: 239327
|
||
- new version
|
||
|
||
* Mon Jun 16 2008 Thierry Vignaud <tv@mandriva.org> 1.22.0-2mdv2009.0
|
||
+ Revision: 220465
|
||
- rebuild
|
||
|
||
+ Pixel <pixel@mandriva.com>
|
||
- do not call ldconfig in %%post/%%postun, it is now handled by filetriggers
|
||
|
||
* Mon Mar 10 2008 Götz Waschk <waschk@mandriva.org> 1.22.0-1mdv2008.1
|
||
+ Revision: 183403
|
||
- new version
|
||
|
||
* Mon Feb 25 2008 Götz Waschk <waschk@mandriva.org> 1.21.92-1mdv2008.1
|
||
+ Revision: 174634
|
||
- new version
|
||
|
||
+ Thierry Vignaud <tv@mandriva.org>
|
||
- fix summary-not-capitalized
|
||
|
||
* Mon Jan 14 2008 Götz Waschk <waschk@mandriva.org> 1.21.5-1mdv2008.1
|
||
+ Revision: 151191
|
||
- new version
|
||
|
||
+ Thierry Vignaud <tv@mandriva.org>
|
||
- rebuild
|
||
- kill re-definition of %%buildroot on Pixel's request
|
||
|
||
+ Olivier Blin <blino@mandriva.org>
|
||
- restore BuildRoot
|
||
|
||
* Mon Sep 17 2007 Götz Waschk <waschk@mandriva.org> 1.20.0-1mdv2008.0
|
||
+ Revision: 88985
|
||
- new version
|
||
- new devel name
|
||
|
||
* Mon Jul 30 2007 Götz Waschk <waschk@mandriva.org> 1.19.6-1mdv2008.0
|
||
+ Revision: 56491
|
||
- new version
|
||
|
||
* Thu Jun 07 2007 Anssi Hannula <anssi@mandriva.org> 1.19.3-3mdv2008.0
|
||
+ Revision: 36140
|
||
- rebuild with correct optflags
|
||
|
||
+ Götz Waschk <waschk@mandriva.org>
|
||
- new version
|
||
|
||
|
||
* Mon Mar 12 2007 Götz Waschk <waschk@mandriva.org> 1.18.0-1mdv2007.1
|
||
+ Revision: 141738
|
||
- new version
|
||
|
||
* Mon Feb 12 2007 Götz Waschk <waschk@mandriva.org> 1.17.0-1mdv2007.1
|
||
+ Revision: 118936
|
||
- new version
|
||
|
||
* Mon Jan 22 2007 Götz Waschk <waschk@mandriva.org> 1.13.2-1mdv2007.1
|
||
+ Revision: 111821
|
||
- new version
|
||
|
||
* Sat Jan 13 2007 Anssi Hannula <anssi@mandriva.org> 1.13.1-3mdv2007.1
|
||
+ Revision: 108174
|
||
- make atk1.0-common conflict old 32-bit libpkg on 64-bit as well
|
||
|
||
* Tue Jan 09 2007 Frederic Crozat <fcrozat@mandriva.com> 1.13.1-2mdv2007.1
|
||
+ Revision: 106620
|
||
- Fix libification
|
||
|
||
* Mon Jan 08 2007 Götz Waschk <waschk@mandriva.org> 1.13.1-1mdv2007.1
|
||
+ Revision: 106043
|
||
- new version
|
||
|
||
* Mon Jan 08 2007 Götz Waschk <waschk@mandriva.org> 1.13.0-1mdv2007.1
|
||
+ Revision: 105992
|
||
- new version
|
||
|
||
* Mon Dec 18 2006 Götz Waschk <waschk@mandriva.org> 1.12.4-1mdv2007.1
|
||
+ Revision: 98484
|
||
- new version
|
||
|
||
* Fri Oct 13 2006 Götz Waschk <waschk@mandriva.org> 1.12.3-3mdv2006.0
|
||
+ Revision: 63815
|
||
- rebuild
|
||
- rebuild
|
||
- Import atk1.0
|
||
|
||
* Wed Oct 04 2006 Götz Waschk <waschk@mandriva.org> 1.12.3-1mdv2007.0
|
||
- New version 1.12.3
|
||
|
||
* Wed Aug 23 2006 Götz Waschk <waschk@mandriva.org> 1.12.2-1mdv2007.0
|
||
- New release 1.12.2
|
||
|
||
* Wed Jul 26 2006 Götz Waschk <waschk@mandriva.org> 1.12.1-1
|
||
- New release 1.12.1
|
||
|
||
* Tue Jul 11 2006 Götz Waschk <waschk@mandriva.org> 1.12.1-1mdk
|
||
- New release 1.12.1
|
||
|
||
* Tue Apr 11 2006 Frederic Crozat <fcrozat@mandriva.com> 1.11.4-1mdk
|
||
- Release 1.11.4
|
||
|
||
* Thu Feb 23 2006 Frederic Crozat <fcrozat@mandriva.com> 1.10.3-3mdk
|
||
- use mkrel
|
||
|
||
* Fri Jan 20 2006 Frederic Crozat <fcrozat@mandriva.com> 1.10.3-2mdk
|
||
- Rebuild for debug package
|
||
|
||
* Wed Oct 05 2005 Frederic Crozat <fcrozat@mandriva.com> 1.10.3-1mdk
|
||
- Release 1.10.3
|
||
|
||
* Sat Apr 30 2005 G<>tz Waschk <waschk@mandriva.org> 1.10.1-1mdk
|
||
- make it rpmbuildupdatable
|
||
- new version
|
||
|
||
* Tue Mar 08 2005 G<>tz Waschk <waschk@linux-mandrake.com> 1.9.1-1mdk
|
||
- new version
|
||
|
||
* Mon Mar 07 2005 G<>tz Waschk <waschk@linux-mandrake.com> 1.9.0-1mdk
|
||
- bump glib dep
|
||
- drop patch 0
|
||
- new version
|
||
|
||
* Thu Oct 21 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.8.0-1mdk
|
||
- New release 1.8.0
|
||
- Patch0 (Fedora): fix Tamil translation
|
||
|
||
* Fri Sep 03 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.6.1-2mdk
|
||
- Enable libtoolize
|
||
|
||
* Tue Apr 20 2004 Goetz Waschk <goetz@mandrakesoft.com> 1.6.1-1mdk
|
||
- New release 1.6.1
|
||
|
||
* Sat Apr 03 2004 Frederic Crozat <fcrozat@mandrakesoft.com> -1mdk
|
||
- Release 1.6.0 (with G<EFBFBD>tz Waschk help)
|
||
|