source: projects/specs/trunk/d/dconf/dconf-vl.spec @ 9073

Revision 9073, 5.5 KB checked in by Takemikaduchi, 10 years ago (diff)

GNOME 3.14.1

RevLine 
[2089]1# Basic Information
2Name:           dconf
[9073]3Version:        0.22.0
4Release:        1%{?_dist_release}
[2089]5License:        LGPL
6Group:          System Environment/Base
[9073]7Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.22/%{name}-%{version}.tar.xz
[2089]8BuildRoot:      %{_tmppath}/%{name}-%{version}-root
9
10Vendor:         Project Vine
11Distribution:   Vine Linux
[8119]12Packager:       yasumichi, Takemiakduchi
[2089]13
14Summary:        dconf is a low-level configuration system.
15Summary(ja):    dconfは、低レベル設定システムです。
16
17# Dependency
[8562]18Requires:       dbus
[2089]19
20BuildRequires:  glib2-devel
[4616]21BuildRequires:  gtk3-devel
[2089]22BuildRequires:  libxml2-devel
[4616]23BuildRequires:  dbus-devel
[6890]24BuildRequires:  libxslt-devel
[8562]25BuildRequires:  vala-devel
[6890]26BuildRequires:  docbook-style-xsl
[2089]27
28%description
29dconf is a low-level configuration system. Its main purpose is to provide
30a backend to GSettings on platforms that don't already have configuration
31storage systems.
32
33%description -l ja
34dconfは、低レベル設定システムです。その主要な目的は、まだ設定保存システムを
35有していないプラットフォーム上にGSettingsのバックエンドを提供することです。
36
37%package devel
38Summary:        Headers for developing programs that will use %{name}
39Summary(ja):    %{name} の開発用ファイル
40Group:          Development/Libraries
41Requires:       %{name} = %{version}-%{release}
42Requires:       glib2-devel
43Requires:       libxml2-devel
[4616]44Requires:       dbus-devel
[2089]45
46%description devel
47This package contains the headers that programmers will need to develop
48applications which will use %{name}.
49
[8562]50%package editor
51Summary:        Editor/admin tool for dconf
52Summary(ja):    dconf の編集/管理ツール
53Group:          Applications/System
54Requires:       %{name} = %{version}-%{release}
55
56%description editor
57dconf-editor allows you to browse and modify dconf configuration.
58
59%description -l ja editor
60dconf-editor により dconf の設定を参照したり変更したりすることができます。
61
[2089]62%prep
63%setup -q
64
65%build
66%configure
[6890]67#%{__make} %{?_smp_mflags} INTROSPECTION_SCANNER='/usr/bin/g-ir-scanner --identifier-prefix=DConf'
68%{__make} %{?_smp_mflags}
[2089]69
70%install
71%{__rm} -rf ${RPM_BUILD_ROOT}
72%{__make} install DESTDIR=${RPM_BUILD_ROOT}
73
[6890]74%find_lang %{name}
[2089]75
76%clean
77%{__rm} -rf ${RPM_BUILD_ROOT}
78
79
[6011]80%post
[8584]81gio-querymodules %{_libdir}/gio/modules
82
83%post editor
[6011]84touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
85gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
86update-desktop-database -q &> /dev/null || :
87
[4616]88%postun
[6011]89if [ $1 -eq 0 ] ; then
[8584]90    gio-querymodules %{_libdir}/gio/modules
91fi
92
93%postun editor
94if [ $1 -eq 0 ] ; then
[6011]95    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
96    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
97    update-desktop-database -q &> /dev/null || :
[6890]98    glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
[6011]99fi
[4616]100
[8584]101%posttrans  editor
[4616]102glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
103
104
[6890]105%files -f %{name}.lang
[2089]106%defattr(-,root,root)
107%doc COPYING NEWS
108%{_bindir}/dconf
109%{_libdir}/gio/modules/libdconfsettings.so
[4616]110%{_libdir}/libdconf*.so.*
[2089]111%{_libexecdir}/dconf-service
[6890]112%{_datadir}/bash-completion/completions/dconf
[2089]113%{_datadir}/dbus-1/services/ca.desrt.dconf.service
[8562]114%{_mandir}/man1/dconf.1.gz
115%{_mandir}/man1/dconf-service.1.gz
[6890]116%{_mandir}/man7/dconf.7.gz
[2089]117
118%files devel
119%defattr(-, root, root, -)
120%{_includedir}/dconf/
[4616]121%{_includedir}/dconf-dbus-1/
122%{_libdir}/libdconf*.so
123%{_libdir}/pkgconfig/*.pc
[2089]124%{_datadir}/gtk-doc/html/dconf/
125%{_datadir}/vala/vapi/dconf.deps
126%{_datadir}/vala/vapi/dconf.vapi
127
[8562]128%files editor
129%defattr(-, root, root, -)
130%{_bindir}/dconf-editor
[9073]131%{_datadir}/appdata/ca.desrt.dconf-editor.appdata.xml
132%{_datadir}/applications/ca.desrt.dconf-editor.desktop
133%{_datadir}/dbus-1/services/ca.desrt.dconf-editor.service
[8562]134%{_datadir}/glib-2.0/schemas/*.xml
135%{_datadir}/icons/hicolor/*/apps/*
136%{_datadir}/icons/HighContrast/*/apps/*
137%{_mandir}/man1/dconf-editor.1.gz
138
139
[2089]140%changelog
[9073]141* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.22.0-1
142- new upstream release
143
[8584]144* Wed Jun 18 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 0.20.0-3
145- move some post/postun scripts to dconf-editor:
146  - glib-compile-schemas, gtk-update-icon-cache, update-desktop-database
147
[8562]148* Mon Jun 16 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 0.20.0-2
149- split dconf-editor to subpackage.
150- drop libgee dependency(R,BR)
151- remove unneeded dependency(Requires)
152
[8353]153* Sat Mar 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.20.0-1
154- new upstream release
155
[8119]156* Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.0-2
157- rebuild with VineSeed environment
158
[7938]159* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.18.0-1
160- new upstream release
161
[7756]162* Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.1-1
163- new upstream release
164
[7633]165* Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.16.0-1
166- new upstream release
167- add BuildRequires: vala
168
[7062]169* Fri Nov 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.1-1
170- new upstream release
171
[6890]172* Sat Sep 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14.0-1
173- new upstream release
174- add BuildRequires: libxslt-devel, docbook-style-xsl
175
[6141]176* Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.12.1-1
177- new upstream release
178
[6011]179* Sun Apr 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.12.0-1
180- new upstream release
181
[4850]182* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.0-1
183- new upstream release
184
[4812]185* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.9.1-1
186- new upstream release
187
[4616]188* Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.8.0-1
189- new upstream release
190- add BuildRequires: dbus-devel
191- change BuildRequires: gtk3-devel instead of gtk2-devel
192
[2090]193* Sun Oct 17 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.5.1-1
[2089]194- new package.
195
Note: See TracBrowser for help on using the repository browser.