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

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

GNOME-3.2.0

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.0
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* Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
140- new upstream release
141
142* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
143- new upstream release
144
145* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
146- new upstream release
147
148* Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
149- new upstream release
150
151* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
152- new upstream release
153- add BuildRequires: libgudev1-devel, nss-devel, polkit-devel, cups-devel, upower-devel
154                     libcanberra-gtk3-devel, colord-devel, lcms2-devel
155- change BuildRequires: gtk3-devel instead of gtk2-devel
156- change BuildRequires: gnome-desktop3-devel instead of gnome-desktop-devel
157- drop all Patches
158- fix configure option
159
160* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
161- new upstream release
162
163* Tue Oct 05 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
164- new upstream release
165
166* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-2
167- rebuild with rpm-4.8.1 for pkg-config file
168
169* Sat Jun 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-1
170- new upstream release
171
172* Thu Apr 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
173- new upstream release
174
175* Sun Apr 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
176- new upstream release
177- add BuildRequires: libSM-devel
178- drop Patch0, Patch1
179
180* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
181- new upstream release
182- drop Patch2, Patch4
183
184* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
185- new upstream release
186- updated Patch100
187
188* Sat Jun 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1-2
189- import patches from fedora
190  - Patch10: listen for DeviceAdded
191  - Patch11,12: add support touchpads
192  - Patch13: Make custom keybindings work better
193  - Patch14: Don't rely on _BACKUP property for xkb initialization
194
195* Wed Apr 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.26.1-1
196- new upstream release
197
198* Sun Mar 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-3
199- update Patch10
200  - change hinting type to "none" instead of "medium"
201
202* Wed Mar 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-2
203- add Patch10 to set default dpi
204
205* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
206- new upstream release
207
208* Mon Jan 19 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.1-1
209- new upstream release
210
211* Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
212- new upstream release
213
214* Mon Sep 01 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2.1-2
215- build with pulseaudio
216- add patch6 to ignore the legacy ESD GConf preference if compiled
217  to use Pulseaudio
218
219* Sat May 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.22.2.1-1
220- new upstream release
221
222* Wed Apr  9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.22.1-1vl5
223- new upstream release
224
225* Mon Mar 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.22.0-1vl5
226- Initial build for Vine Linux
227
228* Wed Mar 26 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.1-0.2008.03.26.3
229- Add patch for the mouse plugin not to eat multimedia key events (#438942)
230
231* Wed Mar 26 2008 Jon McCann <jmccann@redhat.com> - 2.22.1-0.2008.03.26.2
232- Rebuild
233
234* Wed Mar 26 2008 Jon McCann <jmccann@redhat.com> - 2.22.1-0.2008.03.26.1
235- Update to snapshot
236- Enable profiling
237
238* Wed Mar 26 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.0-3
239- apps_gnome_settings_daemon_default_editor.schemas is obsolete (#438937)
240
241* Thu Mar 20 2008 Matthias Clasen <mclasen@redhat.com> 2.22.0-2
242- Fix interaction between "Locate Pointer" and volume keys
243
244* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> 2.22.0-1
245- Update to 2.22.0
246
247* Sun Mar  9 2008 Ray Strode <rstrode@redhat.com> - 2.21.92-3
248- Don't set keyboard model on startup from gconf if evdev is being used.
249  Evdev needs to use its own keyboard model to work right.
250
251* Sun Mar  2 2008 Soren Sandmann <sandmann@redhat.com> - 2.21.92-2
252- Update randr patch to handle video key
253
254* Fri Feb 29 2008 Jon McCann <jmccann@redhat.com> - 2.21.92-1
255- Update to 2.21.92
256
257* Tue Feb 12 2008 Soren Sandmann <sandmann@redhat.com> - 2.21.91-3
258- Add patch to make the xrandr plugin listen for client messages from
259  the control panel and reread the configuration file.
260
261* Mon Feb 11 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.91-2
262- Remove obsolete control-center translations
263
264* Mon Feb 11 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.91-1
265- Update to 2.21.91
266- Remove obsolete patches
267
268* Thu Feb  7 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90.1-3
269- Load xkb settings initially
270
271* Thu Jan 31 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90.1-2
272- Fix the path for g-s-d, from upstream patch
273
274* Tue Jan 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90.1-1
275- Update to 2.21.90.1
276
277* Tue Jan 29 2008 - Bastien Nocera <bnocera@redhat.com> - 2.21.90-1
278- Update to 2.21.90
279
280* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5.2-2
281- Incorporate review feedback (#428833)
282
283* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5.2-1
284- Update to 2.21.5.2
285
286* Tue Jan 15 2008  Matthias Clasen <mclasen@redhat.com> - 2.21.5.1-1
287- Update to 2.21.5.1
288- Fix up BuildRequires
289
290* Thu Dec 06 2007 - Bastien Nocera <bnocera@redhat.com> - 2.21.5-1
291- First package
292
Note: See TracBrowser for help on using the repository browser.