2010-07-01 17:54:58 +00:00
|
|
|
%global apiver 1.6
|
|
|
|
# first two digits of version
|
2011-03-01 13:57:29 +00:00
|
|
|
%define release_version %(echo %{version} | awk -F. '{print $1"."$2}')
|
2010-07-01 17:54:58 +00:00
|
|
|
|
2015-06-30 16:43:09 +00:00
|
|
|
%global glibmm24_version 2.45.3
|
|
|
|
|
2010-07-01 17:54:58 +00:00
|
|
|
Name: atkmm
|
2015-06-30 16:40:09 +00:00
|
|
|
Version: 2.23.1
|
|
|
|
Release: 1%{?dist}
|
2010-07-01 17:54:58 +00:00
|
|
|
Summary: C++ interface for the ATK library
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPLv2+
|
|
|
|
URL: http://www.gtkmm.org/
|
2012-02-27 13:46:19 +00:00
|
|
|
Source0: http://ftp.gnome.org/pub/GNOME/sources/atkmm/%{release_version}/atkmm-%{version}.tar.xz
|
2010-07-01 17:54:58 +00:00
|
|
|
|
|
|
|
BuildRequires: atk-devel
|
2015-06-30 16:43:09 +00:00
|
|
|
BuildRequires: glibmm24-devel >= %{glibmm24_version}
|
|
|
|
|
|
|
|
Requires: glibmm24%{?_isa} >= %{glibmm24_version}
|
2010-07-01 17:54:58 +00:00
|
|
|
|
|
|
|
# atkmm was split out into a separate package in gtkmm24 2.21.1
|
|
|
|
Conflicts: gtkmm24 < 2.21.1
|
|
|
|
|
|
|
|
%description
|
|
|
|
atkmm provides a C++ interface for the ATK library. Highlights
|
|
|
|
include typesafe callbacks, widgets extensible via inheritance and a
|
|
|
|
comprehensive set of widget classes that can be freely combined to
|
|
|
|
quickly create complex user interfaces.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Conflicts: gtkmm24-devel < 2.21.1
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
2011-03-01 09:32:46 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Developer's documentation for the atkmm library
|
|
|
|
Group: Documentation
|
|
|
|
BuildArch: noarch
|
2011-03-01 09:38:47 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2011-03-01 09:32:46 +00:00
|
|
|
Requires: glibmm24-doc
|
2011-02-21 21:14:35 +00:00
|
|
|
|
2011-03-01 09:32:46 +00:00
|
|
|
%description doc
|
2011-02-21 21:14:35 +00:00
|
|
|
This package contains developer's documentation for the atkmm
|
2011-02-21 22:57:08 +00:00
|
|
|
library. Atkmm is the C++ API for the ATK accessibility toolkit library.
|
2011-02-21 21:14:35 +00:00
|
|
|
|
|
|
|
The documentation can be viewed either through the devhelp
|
|
|
|
documentation browser or through a web browser.
|
|
|
|
|
|
|
|
|
2010-07-01 17:54:58 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
2011-03-01 09:32:46 +00:00
|
|
|
make %{?_smp_mflags}
|
2010-07-01 17:54:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
2015-06-30 16:43:44 +00:00
|
|
|
%license COPYING
|
2015-06-30 16:43:51 +00:00
|
|
|
%doc AUTHORS NEWS README
|
2010-07-01 17:54:58 +00:00
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files devel
|
2011-03-01 09:32:46 +00:00
|
|
|
%{_includedir}/atkmm-%{apiver}/
|
2010-07-01 17:54:58 +00:00
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/*.pc
|
2011-03-01 09:32:46 +00:00
|
|
|
%{_libdir}/atkmm-%{apiver}/
|
2011-02-21 21:14:35 +00:00
|
|
|
|
|
|
|
%files doc
|
2011-03-01 09:32:46 +00:00
|
|
|
%doc %{_docdir}/atkmm-%{apiver}/
|
2011-03-01 09:35:42 +00:00
|
|
|
%doc %{_datadir}/devhelp/
|
2010-07-01 17:54:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2015-06-30 16:40:09 +00:00
|
|
|
* Tue Jun 30 2015 Kalev Lember <klember@redhat.com> - 2.23.1-1
|
|
|
|
- Update to 2.23.1
|
2015-06-30 16:43:09 +00:00
|
|
|
- Set minimum required glibmm24 version
|
2015-06-30 16:43:44 +00:00
|
|
|
- Use license macro for COPYING
|
2015-06-30 16:40:09 +00:00
|
|
|
|
2015-06-17 01:15:52 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.7-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-02 10:41:50 +00:00
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 2.22.7-5
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
2014-08-15 21:40:51 +00:00
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.7-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 01:58:17 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 02:28:35 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-29 14:43:52 +00:00
|
|
|
* Mon Apr 29 2013 Kalev Lember <kalevlember@gmail.com> - 2.22.7-1
|
|
|
|
- Update to 2.22.7
|
2013-04-29 14:50:55 +00:00
|
|
|
- Drop -devel package deps that rpmbuild takes care of automatically
|
2013-04-29 14:43:52 +00:00
|
|
|
|
2013-02-13 17:19:51 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-18 17:03:57 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-02-27 13:46:19 +00:00
|
|
|
* Mon Feb 27 2012 Kalev Lember <kalevlember@gmail.com> - 2.22.6-1
|
|
|
|
- Update to 2.22.6
|
|
|
|
- Switch to .xz tarballs
|
|
|
|
|
2012-01-12 22:01:03 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-03-31 09:24:37 +00:00
|
|
|
* Thu Mar 31 2011 Kalev Lember <kalev@smartlink.ee> - 2.22.5-1
|
|
|
|
- Update to 2.22.5
|
|
|
|
|
2011-03-25 13:15:05 +00:00
|
|
|
* Fri Mar 25 2011 Kalev Lember <kalev@smartlink.ee> - 2.22.4-1
|
|
|
|
- Update to 2.22.4
|
|
|
|
|
2011-03-01 09:32:46 +00:00
|
|
|
* Tue Mar 01 2011 Kalev Lember <kalev@smartlink.ee> - 2.22.2-4
|
|
|
|
- Spec cleanup
|
2011-03-01 09:35:42 +00:00
|
|
|
- Actually co-own /usr/share/devhelp/ directory
|
2011-03-01 09:38:47 +00:00
|
|
|
- Require base package from -doc subpackage
|
2011-03-01 09:32:46 +00:00
|
|
|
|
2011-02-21 21:14:35 +00:00
|
|
|
* Mon Feb 21 2011 Haïkel Guémar <hguemar@fedoraproject.org> - 2.22.2-3
|
|
|
|
- split doc into subpackage
|
|
|
|
- fix documentation location
|
|
|
|
- co-own /usr/share/devhelp
|
|
|
|
|
2011-02-08 03:01:21 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.22.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-13 10:37:53 +00:00
|
|
|
* Thu Jan 13 2011 Kalev Lember <kalev@smartlink.ee> - 2.22.2-1
|
|
|
|
- Update to 2.22.2
|
|
|
|
|
2010-09-28 07:10:42 +00:00
|
|
|
* Tue Sep 28 2010 Kalev Lember <kalev@smartlink.ee> - 2.22.0-1
|
|
|
|
- Update to 2.22.0
|
|
|
|
|
2010-09-13 23:12:43 +00:00
|
|
|
* Tue Sep 14 2010 Kalev Lember <kalev@smartlink.ee> - 2.21.2-2
|
|
|
|
- Co-own /usr/share/gtk-doc/ directory (#604169)
|
|
|
|
|
2010-07-01 17:54:58 +00:00
|
|
|
* Wed Jun 30 2010 Kalev Lember <kalev@smartlink.ee> - 2.21.2-1
|
|
|
|
- Update to 2.21.2
|
|
|
|
|
|
|
|
* Sat Jun 26 2010 Kalev Lember <kalev@smartlink.ee> - 2.21.1-2
|
|
|
|
- added missing Conflicts: gtkmm24-devel to -devel subpackage
|
|
|
|
- calculate two-digit download directory from three-digit package version
|
|
|
|
|
|
|
|
* Wed Jun 23 2010 Kalev Lember <kalev@smartlink.ee> - 2.21.1-1
|
|
|
|
- Initial RPM release
|