libgnomekbd-vl.spec 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. Summary: A keyboard configuration library
  2. Summary(ja): キーボード設定ライブラリ
  3. Name: libgnomekbd
  4. Version: 3.1.92
  5. Release: 1%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: LGPL
  8. URL: http://gswitchit.sourceforce.net
  9. Source0: http://ftp.gnome.org/pub/gnome/sources/libgnomekbd/3.1/libgnomekbd-%{version}.tar.xz
  10. # https://bugzilla.gnome.org/show_bug.cgi?id=615077
  11. Patch1: libgnomekbd-2.30.0-fix-invalid-value-in-schema.patch
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildRequires: dbus-devel >= 1.0
  14. BuildRequires: dbus-glib >= 0.73
  15. BuildRequires: GConf2-devel >= 2.26.0
  16. BuildRequires: gtk3-devel >= 2.91.7
  17. BuildRequires: libgnome-devel >= 2.26.0
  18. BuildRequires: libxklavier-devel >= 5.0
  19. BuildRequires: desktop-file-utils
  20. BuildRequires: perl(XML::Parser)
  21. BuildRequires: gettext
  22. Requires(pre): glib2
  23. Requires(post): glib2
  24. Requires(preun): glib2
  25. Vendor: Project Vine
  26. Distribution: Vine Linux
  27. Packager: Takemikaduchi
  28. %description
  29. The libgnomekbd package contains a GNOME library which manages
  30. keyboard configuration and offers various widgets related to
  31. keyboard configuration.
  32. %package devel
  33. Summary: Development files for %{name}
  34. Group: Development/Libraries
  35. Requires: %{name} = %{version}-%{release}
  36. Requires: libxklavier-devel >= 5.0
  37. Requires: libgnome-devel >= 2.24.0
  38. Requires: pkgconfig
  39. %description devel
  40. The libgnomekbd-devel package contains libraries and header files for
  41. developing applications that use libgnomekbd.
  42. %prep
  43. %setup -q
  44. ## %patch1 -p1
  45. %build
  46. %configure --disable-static --disable-schemas-install --enable-compile-warnings=no
  47. %__make %{?_smp_mflags}
  48. %install
  49. rm -rf $RPM_BUILD_ROOT
  50. make install DESTDIR=$RPM_BUILD_ROOT
  51. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  52. desktop-file-install --vendor gnome --delete-original \
  53. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  54. $RPM_BUILD_ROOT%{_datadir}/applications/gkbd-indicator-plugins-capplet.desktop
  55. %find_lang %{name}
  56. %clean
  57. rm -rf $RPM_BUILD_ROOT
  58. %post
  59. /sbin/ldconfig
  60. touch --no-create %{_datadir}/icons/hicolor || :
  61. if [ -x %{_bindir}/gtk-update-icon-cache ]; then
  62. %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
  63. fi
  64. update-desktop-database &> /dev/null ||:
  65. %posttrans
  66. gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
  67. %{_bindir}/glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
  68. %postun
  69. /sbin/ldconfig
  70. touch --no-create %{_datadir}/icons/hicolor || :
  71. if [ -x %{_bindir}/gtk-update-icon-cache ]; then
  72. %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
  73. fi
  74. %{_bindir}/glib-compile-schemas %{_datadir}/glib-2.0/schemas || :
  75. %files -f %{name}.lang
  76. %defattr(-,root,root,-)
  77. %doc AUTHORS COPYING.LIB
  78. %{_bindir}/gkbd-indicator-plugins-capplet
  79. %{_bindir}/gkbd-keyboard-display
  80. %{_libdir}/*.so.*
  81. %{_libdir}/girepository-1.0/Gkbd-3.0.typelib
  82. %{_datadir}/applications/gnome-gkbd-indicator-plugins-capplet.desktop
  83. %{_datadir}/applications/gkbd-keyboard-display.desktop
  84. %{_datadir}/glib-2.0/schemas/*.xml
  85. %{_datadir}/libgnomekbd/ui/*
  86. %{_datadir}/libgnomekbd/icons/*.svg
  87. %{_datadir}/GConf/gsettings/libgnomekbd.convert
  88. %files devel
  89. %defattr(-,root,root,-)
  90. %{_includedir}/libgnomekbd/*
  91. %{_libdir}/*.so
  92. %{_libdir}/pkgconfig/libgnomekbd.pc
  93. %{_libdir}/pkgconfig/libgnomekbdui.pc
  94. %{_datadir}/gir-1.0/Gkbd-3.0.gir
  95. %changelog
  96. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
  97. - new upstream release
  98. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.0-1
  99. - new upstream release
  100. - change BuildRequires: gtk3-devel instead of gtk2-devel
  101. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  102. - new upstream release
  103. - remove BuildRequires: libgnomeui-devel
  104. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-2
  105. - rebuild with rpm-4.8.1 for pkg-config file
  106. * Sat Jun 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-1
  107. - new upstream release
  108. * Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  109. - new upstream release
  110. - drop Patch1
  111. * Sat Apr 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-2
  112. - remove old Patches
  113. - add Patch1 to fix invalid default value in schema
  114. https://bugzilla.gnome.org/show_bug.cgi?id=615077
  115. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  116. - new upstream release
  117. - fix BuildRequires: libxklavier-devel >= 5.0
  118. * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  119. - new upstream release
  120. * Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.0-1
  121. - new upstream release
  122. - remove BR: libglade2-devel
  123. * Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  124. - new upstream release
  125. * Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  126. - new upstream release
  127. * Sun Mar 30 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.0-1vl5
  128. - new upstream release
  129. * Thu Dec 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.0-0vl1
  130. - new upstream release
  131. * Fri Apr 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-0vl1
  132. - initial build for Vine Linux
  133. * Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0-1
  134. - Update to 2.18.0
  135. * Wed Jan 24 2007 Matthias Clasen <mclasen@redhat.com> - 2.17.2-2
  136. - Port former control-center patches to improve keyboard drawing
  137. * Tue Nov 7 2006 Matthias Clasen <mclasen@redhat.com> - 2.17.2-1
  138. - Update to 2.17.2
  139. * Tue Nov 7 2006 Matthias Clasen <mclasen@redhat.com> - 0.1-4
  140. - Fix up Requires
  141. * Thu Nov 2 2006 Matthias Clasen <mclasen@redhat.com> - 0.1-3
  142. - Don't use --Werror
  143. * Sat Oct 28 2006 Matthias Clasen <mclasen@redhat.com> - 0.1-2
  144. - Fix a memory allocation error
  145. * Sat Oct 28 2006 Matthias Clasen <mclasen@redhat.com> - 0.1-1
  146. - Initial release