atk-vl.spec 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. # Something's not quite right with libtool....
  2. %define __libtoolize :
  3. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  4. %define glib2_base_version 2.26.0
  5. %define glib2_version %{glib2_base_version}
  6. Summary: Interfaces for accessibility support.
  7. Summary(ja): アクセシビリティサポートのためのインタフェース
  8. Name: atk
  9. Version: 1.32.0
  10. Release: 1%{?_dist_release}
  11. License: LGPL
  12. Group: System Environment/Libraries
  13. Source: ftp://ftp.gnome.org/pub/GNOME/sources/atk/1.32/atk-%{version}.tar.bz2
  14. URL: http://developer.gnome.org/projects/gap/
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. BuildRequires: glib2-devel >= %{glib2_version}
  17. BuildRequires: gobject-introspection-devel >= 0.6.7
  18. %description
  19. The ATK library provides a set of interfaces for adding accessibility
  20. support to applications and graphical user interface toolkits. By
  21. supporting the ATK interfaces, an application or toolkit can be used
  22. with tools such as screen readers, magnifiers, and alternative input
  23. devices.
  24. %package -n compat32-%{name}
  25. Summary: Interfaces for accessibility support.
  26. Summary(ja): アクセシビリティサポートのためのインタフェース
  27. Group: System Environment/Libraries
  28. Requires: atk = %{version}
  29. %description -n compat32-%{name}
  30. The ATK library provides a set of interfaces for adding accessibility
  31. support to applications and graphical user interface toolkits. By
  32. supporting the ATK interfaces, an application or toolkit can be used
  33. with tools such as screen readers, magnifiers, and alternative input
  34. devices.
  35. %package devel
  36. Summary: Accessability Toolkit development files
  37. Summary(ja): アクセシビリティツールキットの開発用ファイル
  38. Group: Development/Libraries
  39. Requires: atk = %{version}
  40. Requires: glib2-devel >= %{glib2_version}
  41. %description devel
  42. The atk-devel package includes the static libraries, header files, and
  43. developer docs for the atk package.
  44. Install atk-devel if you want to develop programs which will use ATK.
  45. %package -n compat32-%{name}-devel
  46. Summary: Accessability Toolkit development files
  47. Summary(ja): アクセシビリティツールキットの開発用ファイル
  48. Group: Development/Libraries
  49. Requires: %{name}-devel = %{version}
  50. Requires: compat32-%{name} = %{version}
  51. %description -n compat32-%{name}-devel
  52. The atk-devel package includes the static libraries, header files, and
  53. developer docs for the atk package.
  54. Install atk-devel if you want to develop programs which will use ATK.
  55. %prep
  56. %setup -q -n atk-%{version}
  57. %build
  58. #libtoolize --force --copy
  59. #aclocal
  60. #autoconf
  61. %configure --disable-gtk-doc --enable-introspection=yes
  62. make %{?_smp_mflags}
  63. %install
  64. rm -rf $RPM_BUILD_ROOT
  65. %makeinstall
  66. %find_lang atk10
  67. # remove unpackaged files
  68. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  69. %clean
  70. rm -rf $RPM_BUILD_ROOT
  71. %post -p /sbin/ldconfig
  72. %postun -p /sbin/ldconfig
  73. %post -n compat32-%{name} -p /sbin/ldconfig
  74. %postun -n compat32-%{name} -p /sbin/ldconfig
  75. %files -f atk10.lang
  76. %defattr(-, root, root)
  77. %doc README AUTHORS COPYING ChangeLog
  78. %{_libdir}/libatk*.so.*
  79. %{_libdir}/girepository-1.0
  80. %files devel
  81. %defattr(-, root, root)
  82. %{_includedir}/*
  83. %{_libdir}/libatk*.so
  84. %{_libdir}/pkgconfig/*.pc
  85. %{_datadir}/gtk-doc/*
  86. %{_datadir}/gir-1.0
  87. %if %{build_compat32}
  88. %files -n compat32-%{name}
  89. %defattr(-, root, root)
  90. %{_libdir}/libatk*.so.*
  91. %files -n compat32-%{name}-devel
  92. %defattr(-, root, root)
  93. %{_libdir}/libatk*.so
  94. %{_libdir}/pkgconfig/*.pc
  95. %endif
  96. %changelog
  97. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.30.2-1
  98. - add BuildRequires: gobject-introspection-devel
  99. - add configure option (--enable-introspection=yes)
  100. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 1.30.0-2
  101. - build with rpm-4.8.1-1 for pkg-config file
  102. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.30.0-1
  103. - new upstream release
  104. * Fri Sep 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.28.0-1
  105. - new upstream release
  106. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.26.0-1
  107. - new upstream release
  108. * Mon Sep 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.24.0-1
  109. - new upstream release
  110. - spec in UTF-8
  111. * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.22.0-1vl5
  112. - used %%{?_dist_release}
  113. * Tue Mar 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.22.0-0vl1
  114. - new upstream release
  115. * Sun Nov 18 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.0-0vl1
  116. - new upstream release
  117. * Wed Apr 25 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.18.0-0vl1
  118. - new upstream release
  119. * Mon Dec 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.12.4-0vl1
  120. - new upstream release
  121. * Sat Jul 29 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.12.1-0vl1
  122. - new upstream release
  123. * Fri Mar 17 2006 NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> 1.11.3-0vl2
  124. - added compat32-* packages for x86_64 architecture support
  125. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.3-0vl1
  126. - new upstream release
  127. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.2-0vl1
  128. - new upstream release
  129. * Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.3-0vl1
  130. - new upstream release
  131. * Fri May 20 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.10.1-0vl1
  132. - new upstream release
  133. * Mon Jan 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.0-0vl1
  134. - new upstream release
  135. * Sun Nov 07 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-0vl1
  136. - new upstream release
  137. * Sat May 1 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.1-0vl1
  138. - new upstream release
  139. * Thu Mar 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0-0vl1
  140. - new upstream release
  141. * Sun Feb 01 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.1-0vl1
  142. - new upstream release
  143. - fix kanji code of spec file.
  144. * Thu Sep 04 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0-0vl1
  145. - new upstream release
  146. * Mon Sep 01 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.6-0vl1
  147. - new upstream release
  148. * Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.3-0vl1
  149. - new upstream release
  150. * Tue Jan 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-0vl1
  151. - new upstream release
  152. * Sat Jan 4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-0vl1
  153. - new upstream release
  154. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl1
  155. - new upstream release
  156. * Fri Dec 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.4-0vl1
  157. - new upstream release
  158. - build for Vine Linux
  159. * Wed Jul 31 2002 Owen Taylor <otaylor@redhat.com>
  160. - Remove fixed-ltmain.sh
  161. - Version 1.0.3
  162. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  163. - automated rebuild
  164. * Tue Jun 04 2002 Havoc Pennington <hp@redhat.com>
  165. - rebuild in different environment
  166. * Tue Jun 4 2002 Havoc Pennington <hp@redhat.com>
  167. - 1.0.2
  168. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  169. - automated rebuild
  170. * Wed Apr 24 2002 Havoc Pennington <hp@redhat.com>
  171. - rebuild in different environment
  172. * Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
  173. - Update to version 1.0.1
  174. * Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
  175. - Version 1.0.0
  176. * Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
  177. - Update to 0.13
  178. * Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
  179. - Bump for rebuild
  180. * Mon Feb 18 2002 Havoc Pennington <hp@redhat.com>
  181. - rebuild for glib 1.3.14
  182. * Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
  183. - add horrible buildrequires hack
  184. * Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
  185. - 0.12.90 cvs snap
  186. * Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
  187. - Version 0.10
  188. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  189. - automated rebuild
  190. * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
  191. - new snap 0.8.90
  192. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  193. - rebuild with glib hacked to work on 64-bit
  194. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  195. - Version 0.7
  196. - add explicit check for required glib2 version before we do the build,
  197. so we don't end up with bad RPMs on --nodeps builds
  198. * Fri Oct 26 2001 Havoc Pennington <hp@redhat.com>
  199. - rebuild due to hosage on ia64 build system causing link to old glib
  200. * Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
  201. - Version 0.6
  202. * Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
  203. - 0.5
  204. - sync with Owen's version
  205. * Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
  206. - 0.4
  207. - fix requires
  208. - --enable-static
  209. - put static libs back in file list
  210. * Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
  211. - update to CVS snapshot
  212. * Wed Sep 05 2001 Havoc Pennington <hp@redhat.com>
  213. - require specific pango version
  214. - fix ltmain.sh to destroy all relinking BS
  215. * Tue Sep 4 2001 root <root@dhcpd37.meridian.redhat.com>
  216. - Version 0.2
  217. * Sat Jul 21 2001 Owen Taylor <otaylor@redhat.com>
  218. - Configure with --disable-gtk-doc
  219. * Tue Jul 10 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
  220. - Add post- and postun-sections running ldconfig
  221. * Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
  222. - 0.2
  223. * Fri May 4 2001 Owen Taylor <otaylor@redhat.com>
  224. - Initial version