dconf-vl.spec 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. # Basic Information
  2. Name: dconf
  3. Version: 0.18.0
  4. Release: 2%{?_dist_release}
  5. License: LGPL
  6. Group: System Environment/Base
  7. Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.18/%{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: glib2
  16. Requires: gtk3
  17. Requires: libgee
  18. Requires: libxml2
  19. BuildRequires: glib2-devel
  20. BuildRequires: gtk3-devel
  21. BuildRequires: libgee-devel
  22. BuildRequires: libxml2-devel
  23. BuildRequires: dbus-devel
  24. BuildRequires: libxslt-devel
  25. BuildRequires: vala
  26. BuildRequires: docbook-style-xsl
  27. %description
  28. dconf is a low-level configuration system. Its main purpose is to provide
  29. a backend to GSettings on platforms that don't already have configuration
  30. storage systems.
  31. %description -l ja
  32. dconfは、低レベル設定システムです。その主要な目的は、まだ設定保存システムを
  33. 有していないプラットフォーム上にGSettingsのバックエンドを提供することです。
  34. %package devel
  35. Summary: Headers for developing programs that will use %{name}
  36. Summary(ja): %{name} の開発用ファイル
  37. Group: Development/Libraries
  38. Requires: %{name} = %{version}-%{release}
  39. Requires: glib2-devel
  40. Requires: gtk3-devel
  41. Requires: libgee-devel
  42. Requires: libxml2-devel
  43. Requires: dbus-devel
  44. %description devel
  45. This package contains the headers that programmers will need to develop
  46. applications which will use %{name}.
  47. %prep
  48. %setup -q
  49. %build
  50. %configure
  51. #%{__make} %{?_smp_mflags} INTROSPECTION_SCANNER='/usr/bin/g-ir-scanner --identifier-prefix=DConf'
  52. %{__make} %{?_smp_mflags}
  53. %install
  54. %{__rm} -rf ${RPM_BUILD_ROOT}
  55. %{__make} install DESTDIR=${RPM_BUILD_ROOT}
  56. %find_lang %{name}
  57. %clean
  58. %{__rm} -rf ${RPM_BUILD_ROOT}
  59. %post
  60. touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
  61. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
  62. update-desktop-database -q &> /dev/null || :
  63. gio-querymodules %{_libdir}/gio/modules
  64. %postun
  65. if [ $1 -eq 0 ] ; then
  66. touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
  67. gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
  68. update-desktop-database -q &> /dev/null || :
  69. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  70. gio-querymodules %{_libdir}/gio/modules
  71. fi
  72. %posttrans
  73. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  74. %files -f %{name}.lang
  75. %defattr(-,root,root)
  76. %doc COPYING NEWS
  77. %{_bindir}/dconf
  78. %{_bindir}/dconf-editor
  79. %{_libdir}/gio/modules/libdconfsettings.so
  80. %{_libdir}/libdconf*.so.*
  81. %{_libexecdir}/dconf-service
  82. %{_datadir}/applications/dconf-editor.desktop
  83. %{_datadir}/bash-completion/completions/dconf
  84. %{_datadir}/dbus-1/services/ca.desrt.dconf.service
  85. %{_datadir}/glib-2.0/schemas/*.xml
  86. %{_datadir}/icons/hicolor/*/apps/*
  87. %{_datadir}/icons/HighContrast/*/apps/*
  88. %{_mandir}/man1/*.gz
  89. %{_mandir}/man7/dconf.7.gz
  90. %files devel
  91. %defattr(-, root, root, -)
  92. %{_includedir}/dconf/
  93. %{_includedir}/dconf-dbus-1/
  94. %{_libdir}/libdconf*.so
  95. %{_libdir}/pkgconfig/*.pc
  96. %{_datadir}/gtk-doc/html/dconf/
  97. %{_datadir}/vala/vapi/dconf.deps
  98. %{_datadir}/vala/vapi/dconf.vapi
  99. %changelog
  100. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.0-2
  101. - rebuild with VineSeed environment
  102. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.0-1
  103. - new upstream release
  104. * Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.1-1
  105. - new upstream release
  106. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.0-1
  107. - new upstream release
  108. - add BuildRequires: vala
  109. * Fri Nov 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.1-1
  110. - new upstream release
  111. * Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.0-1
  112. - new upstream release
  113. - add BuildRequires: libxslt-devel, docbook-style-xsl
  114. * Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.12.1-1
  115. - new upstream release
  116. * Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.12.0-1
  117. - new upstream release
  118. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.0-1
  119. - new upstream release
  120. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.1-1
  121. - new upstream release
  122. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.8.0-1
  123. - new upstream release
  124. - add BuildRequires: dbus-devel
  125. - change BuildRequires: gtk3-devel instead of gtk2-devel
  126. * Sun Oct 17 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.5.1-1
  127. - new package.