source: projects/specs/trunk/g/gnome-settings-daemon/gnome-settings-daemon-vl.spec @ 7756

Revision 7756, 10.4 KB checked in by Takemikaduchi, 11 years ago (diff)

new upstream release

RevLine 
[521]1Summary:        The daemon sharing settings from GNOME to GTK+/KDE applications
2Summary(ja):    GNOME から GTK+/KDE のアプリケーションで設定を共有するためのデーモン
3
4Name:           gnome-settings-daemon
[7756]5Version:        3.8.4
[7089]6Release:        1%{?_dist_release}
[521]7
8Group:          System Environment/Daemons
9License:        GPLv2+
10URL:            http://ftp.gnome.org/pub/gnome/sources/%{name}
[7633]11Source0:        http://ftp.gnome.org/pub/gnome/sources/%{name}/3.8/%{name}-%{version}.tar.xz
[521]12
[7633]13# patch for Vine
14Patch1000:              gnome-settings-daemon-3.6.0-disable-packagekit.patch
[6890]15
[521]16BuildRoot:      %{_tmppath}/%{name}-%{version}-root
17
18BuildRequires:  dbus-glib-devel
[4616]19BuildRequires:  gtk3-devel
20BuildRequires:  gnome-desktop3-devel >= 3.0.0
[521]21BuildRequires:  libgnome-devel
22BuildRequires:  xorg-x11-proto-devel
23BuildRequires:  libXrandr-devel
24BuildRequires:  fontconfig-devel
25BuildRequires:  gstreamer-devel
26BuildRequires:  gstreamer-plugins-base-devel
27BuildRequires:  pulseaudio-libs-devel
[2041]28BuildRequires:  libgnomekbd-devel >= 2.32.0
[805]29BuildRequires:  libxklavier-devel >= 5.0
[521]30BuildRequires:  libnotify-devel >= 0.4.3
31BuildRequires:  gettext
32BuildRequires:  perl-XML-Parser
[805]33BuildRequires:  libSM-devel
[4616]34BuildRequires:  libgudev1-devel
35BuildRequires:  nss-devel
36BuildRequires:  polkit-devel
37BuildRequires:  cups-devel
38BuildRequires:  upower-devel >= 0.9.12
39BuildRequires:  libcanberra-gtk3-devel
40BuildRequires:  colord-devel
41BuildRequires:  lcms2-devel
[6011]42BuildRequires:  libwacom-devel
43BuildRequires:  xorg-x11-drv-wacom-devel
[7633]44BuildRequires:  librsvg2-devel
[6011]45BuildRequires:  libXtst-devel
[6890]46BuildRequires:  ibus-devel
[521]47
[4616]48Vendor: Project Vine
49Distribution: Vine Linux
50Packager: Takemikaduchi
51
[521]52%description
53A daemon to share settings from GNOME to other applications. It also
54handles global keybindings, as well as a number of desktop-wide settings.
55
56%package        devel
57Summary:        Development files for %{name}
58Group:          Development/Libraries
59Requires:       %{name} = %{version}-%{release}
60Requires:       pkgconfig
61Requires:       dbus-glib-devel
62
63%description    devel
64The %{name}-devel package contains libraries and header files for
65developing applications that use %{name}.
66
67%prep
68%setup -q
[7633]69%patch1000 -p1 -b .packagekit
[521]70
71%build
[6890]72autoreconf -if
[4616]73%configure \
74        --disable-static \
75        --disable-profiling \
[6890]76        --disable-packagekit \
77        --enable-ibus
[4616]78       
[521]79make %{?_smp_mflags}
80
81%install
82rm -rf $RPM_BUILD_ROOT
83make install DESTDIR=$RPM_BUILD_ROOT
84find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
85
86%find_lang %{name} --with-gnome
87
88%clean
89rm -rf $RPM_BUILD_ROOT
90
91%post
92touch %{_datadir}/icons/hicolor
93if [ -x /usr/bin/gtk-update-icon-cache ]; then
94  /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
95fi
96 
97%postun
98touch %{_datadir}/icons/hicolor
99if [ -x /usr/bin/gtk-update-icon-cache ]; then
100  /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor
101fi
[4616]102glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
103
104%posttrans
105glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
[521]106 
107%files -f %{name}.lang
108%defattr(-,root,root,-)
109%doc AUTHORS COPYING NEWS
110%{_sysconfdir}/xdg/autostart/gnome-settings-daemon.desktop
[4616]111%{_libdir}/gnome-settings-daemon-3.0
112%{_libexecdir}/*
113%{_datadir}/GConf/gsettings/gnome-settings-daemon.convert
[6890]114%{_datadir}/dbus-1/services/org.freedesktop.IBus.service
[4616]115%{_datadir}/glib-2.0/schemas/*.xml
116%{_datadir}/gnome-settings-daemon/
117%{_datadir}/gnome-settings-daemon-3.0/
[521]118%{_datadir}/icons/hicolor/*/apps/gsd-xrandr.*
[4616]119%{_mandir}/man1/gnome-settings-daemon.1.gz
[4650]120%{_datadir}/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy
[6011]121%{_datadir}/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy
[521]122
123%files devel
124%defattr(-,root,root,-)
[4616]125%{_includedir}/gnome-settings-daemon-3.0
[521]126%{_libdir}/pkgconfig/gnome-settings-daemon.pc
127
128%changelog
[7756]129* Sun Aug 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.4-1
130- new upstream release
131
[7712]132* Sun Jun 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.3-1
133- new upstream release
134- remove Patch1001 (gnome-settings-daemon-3.6.3-input-source-switch-zenkaku-hankaku.patch)
135
[7681]136* Sun May 19 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.2-1
137- new upstream release
138
[7633]139* Wed Apr 24 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
140- new upstream release
141- add BuildRequires: librsvg2-devel
142
[7313]143* Fri Jan 11 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.4-1
144- new upstream release
145
[7119]146* Wed Nov 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.3-1
147- new upstream release
148- update Patch1 (gnome-settings-daemon-3.6.3-input-source-switch-zenkaku-hankaku.patch)
149
[7089]150* Thu Nov 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.2-1
151- new upstream release
152
[7018]153* Fri Oct 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-2
154- add Patch1 (gnome-settings-daemon-3.6.1-input-source-switch-zenkaku-hankaku.patch)
155
[6924]156* Fri Oct 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
157- new upstream release
158
[6890]159* Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
160- new upstream release
161- add BuildRequires: ibus-devel
162- add Patch0 (gnome-settings-daemon-3.6.0-disable-packagekit.patch)
163
[6201]164* Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-1
165- new upstream release
166
[6078]167* Sun Apr 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
[6011]168- new upstream release
169- add BuildRequires: libwacom-devel, xorg-x11-drv-wacom-devel, libXtst-devel
170
[5168]171* Sun Nov 20 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
172- new upstream release
173
[5038]174* Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
175- new upstream release
176
[4850]177* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
178- new upstream release
179
[4812]180* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
181- new upstream release
182
[4704]183* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
184- new upstream release
185
[4650]186* Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
187- new upstream release
188
[4616]189* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
190- new upstream release
191- add BuildRequires: libgudev1-devel, nss-devel, polkit-devel, cups-devel, upower-devel
192                     libcanberra-gtk3-devel, colord-devel, lcms2-devel
193- change BuildRequires: gtk3-devel instead of gtk2-devel
194- change BuildRequires: gnome-desktop3-devel instead of gnome-desktop-devel
195- drop all Patches
196- fix configure option
197
[2219]198* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
199- new upstream release
200
[2041]201* Tue Oct 05 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
202- new upstream release
203
[1897]204* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-2
205- rebuild with rpm-4.8.1 for pkg-config file
206
[1251]207* Sat Jun 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-1
208- new upstream release
209
[926]210* Thu Apr 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
211- new upstream release
212
[805]213* Sun Apr 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
214- new upstream release
215- add BuildRequires: libSM-devel
216- drop Patch0, Patch1
217
[623]218* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
219- new upstream release
220- drop Patch2, Patch4
221
[521]222* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
223- new upstream release
224- updated Patch100
225
226* Sat Jun 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-2
227- import patches from fedora
228  - Patch10: listen for DeviceAdded
229  - Patch11,12: add support touchpads
230  - Patch13: Make custom keybindings work better
231  - Patch14: Don't rely on _BACKUP property for xkb initialization
232
233* Wed Apr 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.26.1-1
234- new upstream release
235
236* Sun Mar 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-3
237- update Patch10
238  - change hinting type to "none" instead of "medium"
239
240* Wed Mar 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-2
241- add Patch10 to set default dpi
242
243* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
244- new upstream release
245
246* Mon Jan 19 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.1-1
247- new upstream release
248
249* Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
250- new upstream release
251
252* Mon Sep 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2.1-2
253- build with pulseaudio
254- add patch6 to ignore the legacy ESD GConf preference if compiled
255  to use Pulseaudio
256
257* Sat May 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.22.2.1-1
258- new upstream release
259
260* Wed Apr  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.22.1-1vl5
261- new upstream release
262
263* Mon Mar 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.22.0-1vl5
264- Initial build for Vine Linux
265
266* Wed Mar 26 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.1-0.2008.03.26.3
267- Add patch for the mouse plugin not to eat multimedia key events (#438942)
268
269* Wed Mar 26 2008 Jon McCann <jmccann@redhat.com> - 2.22.1-0.2008.03.26.2
270- Rebuild
271
272* Wed Mar 26 2008 Jon McCann <jmccann@redhat.com> - 2.22.1-0.2008.03.26.1
273- Update to snapshot
274- Enable profiling
275
276* Wed Mar 26 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.0-3
277- apps_gnome_settings_daemon_default_editor.schemas is obsolete (#438937)
278
279* Thu Mar 20 2008 Matthias Clasen <mclasen@redhat.com> 2.22.0-2
280- Fix interaction between "Locate Pointer" and volume keys
281
282* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> 2.22.0-1
283- Update to 2.22.0
284
285* Sun Mar  9 2008 Ray Strode <rstrode@redhat.com> - 2.21.92-3
286- Don't set keyboard model on startup from gconf if evdev is being used.
287  Evdev needs to use its own keyboard model to work right.
288
289* Sun Mar  2 2008 Soren Sandmann <sandmann@redhat.com> - 2.21.92-2
290- Update randr patch to handle video key
291
292* Fri Feb 29 2008 Jon McCann <jmccann@redhat.com> - 2.21.92-1
293- Update to 2.21.92
294
295* Tue Feb 12 2008 Soren Sandmann <sandmann@redhat.com> - 2.21.91-3
296- Add patch to make the xrandr plugin listen for client messages from
297  the control panel and reread the configuration file.
298
299* Mon Feb 11 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.91-2
300- Remove obsolete control-center translations
301
302* Mon Feb 11 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.91-1
303- Update to 2.21.91
304- Remove obsolete patches
305
306* Thu Feb  7 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90.1-3
307- Load xkb settings initially
308
309* Thu Jan 31 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90.1-2
310- Fix the path for g-s-d, from upstream patch
311
312* Tue Jan 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90.1-1
313- Update to 2.21.90.1
314
315* Tue Jan 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90-1
316- Update to 2.21.90
317
318* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5.2-2
319- Incorporate review feedback (#428833)
320
321* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5.2-1
322- Update to 2.21.5.2
323
324* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5.1-1
325- Update to 2.21.5.1
326- Fix up BuildRequires
327
328* Thu Dec 06 2007 - Bastien Nocera <bnocera@redhat.com> - 2.21.5-1
329- First package
330
Note: See TracBrowser for help on using the repository browser.