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

Revision 5038, 9.2 KB checked in by Takemikaduchi, 13 years ago (diff)

GNOME-3.2.1

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