dconf-vl.spec 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. # Basic Information
  2. Name: dconf
  3. Version: 0.26.0
  4. Release: 1%{?_dist_release}
  5. License: LGPL
  6. Group: System Environment/Base
  7. Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.26/%{name}-%{version}.tar.xz
  8. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. Packager: yasumichi, Takemiakduchi
  12. Summary: dconf is a low-level configuration system.
  13. Summary(ja): dconfは、低レベル設定システムです。
  14. # Dependency
  15. Requires: dbus
  16. BuildRequires: glib2-devel
  17. BuildRequires: libxml2-devel
  18. BuildRequires: dbus-devel
  19. BuildRequires: libxslt-devel
  20. BuildRequires: vala-devel
  21. BuildRequires: docbook-style-xsl
  22. %description
  23. dconf is a low-level configuration system. Its main purpose is to provide
  24. a backend to GSettings on platforms that don't already have configuration
  25. storage systems.
  26. %description -l ja
  27. dconfは、低レベル設定システムです。その主要な目的は、まだ設定保存システムを
  28. 有していないプラットフォーム上にGSettingsのバックエンドを提供することです。
  29. %package devel
  30. Summary: Headers for developing programs that will use %{name}
  31. Summary(ja): %{name} の開発用ファイル
  32. Group: Development/Libraries
  33. Requires: %{name} = %{version}-%{release}
  34. Requires: glib2-devel
  35. Requires: libxml2-devel
  36. Requires: dbus-devel
  37. %description devel
  38. This package contains the headers that programmers will need to develop
  39. applications which will use %{name}.
  40. %package docs
  41. Summary: Documentation for %{name}
  42. Summary(ja): %{name} 用のドキュメント
  43. Group: Documentation
  44. BuildArch: noarch
  45. %description docs
  46. This package contains documentation for %{name}.
  47. %package vala
  48. Summary: Vala bindings for %{name}
  49. Summary(ja): %{name} の Vala バインディング
  50. Group: Development/Libraries
  51. Requires: %{name} = %{version}-%{release}
  52. Requires: vala
  53. %description vala
  54. Vala bindings for %{name}.
  55. %prep
  56. %setup -q
  57. %build
  58. %configure
  59. %{__make} %{?_smp_mflags}
  60. %install
  61. %{__rm} -rf ${RPM_BUILD_ROOT}
  62. %{__make} install DESTDIR=${RPM_BUILD_ROOT}
  63. %clean
  64. %{__rm} -rf ${RPM_BUILD_ROOT}
  65. %post
  66. gio-querymodules %{_libdir}/gio/modules
  67. %postun
  68. if [ $1 -eq 0 ] ; then
  69. gio-querymodules %{_libdir}/gio/modules
  70. fi
  71. %files
  72. %defattr(-,root,root,-)
  73. %doc COPYING NEWS
  74. %{_bindir}/dconf
  75. %{_libdir}/gio/modules/libdconfsettings.so
  76. %{_libdir}/libdconf*.so.*
  77. %{_libexecdir}/dconf-service
  78. %{_datadir}/bash-completion/completions/dconf
  79. %{_datadir}/dbus-1/services/ca.desrt.dconf.service
  80. %{_mandir}/man1/dconf.1.gz
  81. %{_mandir}/man1/dconf-service.1.gz
  82. %{_mandir}/man7/dconf.7.gz
  83. %files devel
  84. %defattr(-,root,root,-)
  85. %{_includedir}/dconf/
  86. %{_libdir}/libdconf*.so
  87. %{_libdir}/pkgconfig/*.pc
  88. %files docs
  89. %defattr(-,root,root,-)
  90. %{_datadir}/gtk-doc/html/dconf/
  91. %files vala
  92. %defattr(-,root,root,-)
  93. %{_datadir}/vala/vapi/dconf.deps
  94. %{_datadir}/vala/vapi/dconf.vapi
  95. %changelog
  96. * Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.26.0-1
  97. - new upstream release
  98. * Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.24.0-1
  99. - new upstream release
  100. - remove dconf-editor subpackage
  101. - create %%{name}-docs,vala subpackages
  102. * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.0-1
  103. - new upstream release
  104. * Wed Jun 18 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 0.20.0-3
  105. - move some post/postun scripts to dconf-editor:
  106. - glib-compile-schemas, gtk-update-icon-cache, update-desktop-database
  107. * Mon Jun 16 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 0.20.0-2
  108. - split dconf-editor to subpackage.
  109. - drop libgee dependency(R,BR)
  110. - remove unneeded dependency(Requires)
  111. * Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.20.0-1
  112. - new upstream release
  113. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.0-2
  114. - rebuild with VineSeed environment
  115. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.0-1
  116. - new upstream release
  117. * Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.1-1
  118. - new upstream release
  119. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.0-1
  120. - new upstream release
  121. - add BuildRequires: vala
  122. * Fri Nov 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.1-1
  123. - new upstream release
  124. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.0-1
  125. - new upstream release
  126. - add BuildRequires: libxslt-devel, docbook-style-xsl
  127. * Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.12.1-1
  128. - new upstream release
  129. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.12.0-1
  130. - new upstream release
  131. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.0-1
  132. - new upstream release
  133. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.1-1
  134. - new upstream release
  135. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.8.0-1
  136. - new upstream release
  137. - add BuildRequires: dbus-devel
  138. - change BuildRequires: gtk3-devel instead of gtk2-devel
  139. * Sun Oct 17 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.5.1-1
  140. - new package.