source: projects/specs/trunk/c/control-center/control-center-vl.spec @ 4704

Revision 4704, 29.8 KB checked in by Takemikaduchi, 13 years ago (diff)

GNOME-3.2 beta 1 (3.1.90)

Line 
1%define pango_version 1.28.4
2%define gtk3_version 3.0.0
3%define gconf2_version 2.32.2
4%define gnome_desktop3_version 3.0.0
5%define libbonobo_version 2.32.0
6%define libgnomekbd_version 2.32.0
7%define gnome_vfs2_version 2.24.4
8%define desktop_file_utils_version 0.3
9%define startup_notification_version 0.7
10%define libxklavier_version 5.0
11%define gnome_doc_utils_version 0.20
12%define gnome_menus_version 2.30.0
13%define vine_menus_version 3.0
14%define metacity_version 2.30.3
15%define evolution_data_server_version 2.32.0
16%define libcanberra_version 0.9
17%define usermode_version 1.83
18%define libnotify_version 0.7.3
19
20Summary: GNOME Control Center.
21Summary(ja): GNOME コントロールセンター
22Name: control-center
23Version: 3.1.90
24Release: 1%{?_dist_release}
25License: GPLv2+ and GFDL+
26Group: User Interface/Desktops
27URL: http://www.gnome.org
28
29Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-control-center/3.1/gnome-control-center-%{version}.tar.xz
30
31Vendor: Project Vine
32Distribution: Vine Linux
33Packager: inagaki, daisuke, Takemikaduchi
34
35BuildRoot: %{_tmppath}/%{name}-%{version}-root
36
37Obsoletes: gnome, control-center-devel < 2.0
38Obsoletes: fontilus, themus
39
40Provides: gnome-volume-manager < 2.25
41Obsoletes: gnome-volume-manager < 2.25
42
43Requires: metacity >= %{metacity_version}
44Requires: usermode >= %{usermode_version}
45Requires: gnome-settings-daemon
46Requires: gnome-icon-theme
47Requires: gnome-desktop3 >= %{gnome_desktop_version}
48Requires: dbus-x11
49Requires: apg
50Requires(post,pre,preun): GConf2
51Requires(post,postun): desktop-file-utils shared-mime-info gtk3
52
53BuildRequires: gnome-common
54BuildRequires: pango-devel >= %{pango_version}
55BuildRequires: gtk3-devel >= %{gtk3_version}
56BuildRequires: GConf2-devel >= %{gconf2_version}
57BuildRequires: gnome-desktop3-devel >= %{gnome_desktop3_version}
58BuildRequires: libbonobo-devel >= %{libbonobo_version}
59BuildRequires: libgnomekbd-devel >= %{libgnomekbd_version}
60BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
61BuildRequires: startup-notification-devel >= %{startup_notification_version}
62BuildRequires: libxklavier-devel >= %{libxklavier_version}
63BuildRequires: gnome-menus-devel >= %{gnome_menus_version}
64BuildRequires: gnome-panel-devel
65BuildRequires: metacity-devel >= %{metacity_version}
66BuildRequires: gnome-doc-utils >= %{gnome_doc_utils_version}
67BuildRequires: evolution-data-server-devel >= %{evolution_data_server_version}
68BuildRequires: gnome-settings-daemon-devel
69BuildRequires: libcanberra-gtk3-devel >= %{libcanberra_version}
70BuildRequires: nautilus-devel
71BuildRequires: alsa-lib-devel
72BuildRequires: autoconf
73BuildRequires: gettext-devel
74BuildRequires: librsvg2-devel
75BuildRequires: libXScrnSaver-devel
76BuildRequires: libXxf86misc-devel
77BuildRequires: libSM-devel
78BuildRequires: unique3-devel
79BuildRequires: polkit-devel
80BuildRequires: libgtop2-devel
81BuildRequires: upower-devel
82BuildRequires: pulseaudio-libs-devel
83BuildRequires: cups-devel
84BuildRequires: cheese-devel
85BuildRequires: gstreamer-plugins-base-devel
86BuildRequires: gnome-online-accounts-devel
87BuildRequires: colord-devel
88BuildRequires: NetworkManager-glib-devel
89BuildRequires: libnotify-devel >= %{libnotify_version}
90
91%description
92GNOME (the GNU Network Object Model Environment) is an attractive and
93easy-to-use GUI desktop environment. The control-center package
94provides the GNOME Control Center utilities that allow you to setup
95and configure your system's GNOME environment (things like the desktop
96background and theme, the screensaver, the window manager, system
97sounds, and mouse behavior).
98
99If you install GNOME, you need to install control-center.
100
101%description -l ja
102GNOME (the GNU Network Object Model Environment) は、魅力的で使いやすい
103GUI デスクトップ環境です。 control-center パッケージには、あなたの GNOME
104環境の設定に使う GNOME コントロールセンター・ユーティリティが含まれていま
105す。(これを使うと、デスクトップの壁紙や、テーマ、スクリーンセーバ、ウィン
106ドウマネージャ、サウンド、マウス、その他いろいろな設定を行えます。)
107
108%package devel
109Summary: Development files for GNOME Control Center
110Summary(ja): GNOME コントロールセンターの開発用ファイル
111Group: Development/Libraries
112Requires: %{name} = %{version}-%{release}
113
114%description devel
115Development tool for GNOME Control Center
116
117%descriotion -l ja devel
118GNOME コントロールセンターの開発用ファイルが含まれています。
119
120%prep
121%setup -q -n gnome-control-center-%{version}
122
123%build
124%configure --disable-static  \
125    --disable-scrollkeeper \
126    --disable-update-mimedb \
127    CFLAGS="$RPM_OPT_FLAGS -Wno-error"
128
129# drop unneeded direct library deps with --as-needed
130# libtool doesn't make this easy, so we do it the hard way
131sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
132
133make %{?_smp_mflags}
134
135%install
136rm -rf $RPM_BUILD_ROOT
137
138export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
139make install DESTDIR=$RPM_BUILD_ROOT
140unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
141
142for i in apps_gnome_settings_daemon_default_editor.schemas              \
143            apps_gnome_settings_daemon_keybindings.schemas              \
144            apps_gnome_settings_daemon_screensaver.schemas              \
145            desktop_gnome_font_rendering.schemas ; do                   \
146            rm -f $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas/$i ;      \
147done
148
149#desktop-file-install --vendor gnome --delete-original                   \
150#  --dir $RPM_BUILD_ROOT%{_datadir}/applications                                \
151#  --add-only-show-in GNOME                                              \
152#  $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
153
154# install visual effect icons
155# install -m644 visual-effects/*.svg $RPM_BUILD_ROOT%{_datadir}/gnome-control-center/pixmaps/
156
157# we do want this
158mkdir -p $RPM_BUILD_ROOT%{_datadir}/gnome/wm-properties
159
160# We don't want these
161rm -rf $RPM_BUILD_ROOT%{_datadir}/gnome/autostart
162rm -rf $RPM_BUILD_ROOT%{_datadir}/gnome/cursor-fonts
163
164# remove useless libtool archive files
165find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
166
167# don't package mime caches
168rm -f $RPM_BUILD_ROOT%{_datadir}/mime/XMLnamespaces
169rm -f $RPM_BUILD_ROOT%{_datadir}/mime/aliases
170rm -f $RPM_BUILD_ROOT%{_datadir}/mime/application/x-gnome-theme-package.xml
171rm -f $RPM_BUILD_ROOT%{_datadir}/mime/globs
172rm -f $RPM_BUILD_ROOT%{_datadir}/mime/magic
173rm -f $RPM_BUILD_ROOT%{_datadir}/mime/subclasses
174rm -f $RPM_BUILD_ROOT%{_datadir}/mime/mime.cache
175rm -f $RPM_BUILD_ROOT%{_datadir}/applications/mimeinfo.cache
176
177rm -f $RPM_BUILD_ROOT%{_datadir}/gnome/fdl
178rm -f $RPM_BUILD_ROOT%{_datadir}/gnome/lgpl
179
180%find_lang gnome-control-center-2.0
181%find_lang gnome-control-center-2.0-timezones
182
183%clean
184rm -rf $RPM_BUILD_ROOT
185
186%post
187/sbin/ldconfig
188
189update-desktop-database %{_datadir}/applications >& /dev/null ||:
190update-mime-database %{_datadir}/mime > /dev/null
191touch --no-create %{_datadir}/icons/hicolor
192if [ -x /usr/bin/gtk-update-icon-cache ]; then
193  /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
194fi
195
196%postun
197/sbin/ldconfig
198update-desktop-database %{_datadir}/applications >& /dev/null ||:
199update-mime-database %{_datadir}/mime > /dev/null
200touch --no-create %{_datadir}/icons/hicolor
201if [ -x /usr/bin/gtk-update-icon-cache ]; then
202  /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
203fi
204
205%files -f gnome-control-center-2.0.lang -f gnome-control-center-2.0-timezones.lang
206%defattr(-, root, root)
207%doc AUTHORS COPYING ChangeLog NEWS README
208%dir %{_datadir}/gnome/wm-properties
209%dir %{_datadir}/gnome-control-center
210%{_datadir}/applications/*
211%{_datadir}/desktop-directories/*
212%{_datadir}/gnome/help/*
213%{_datadir}/gnome-control-center/datetime
214%{_datadir}/gnome-control-center/icons
215%{_datadir}/gnome-control-center/keybindings
216%{_datadir}/gnome-control-center/pixmaps
217%{_datadir}/gnome-control-center/sounds
218%{_datadir}/gnome-control-center/ui
219%{_datadir}/icons/*
220%{_datadir}/omf/control-center
221%{_datadir}/pixmaps/*
222%{_datadir}/sounds/*
223# list all binaries explicitly, so we notice if one goes missing
224%{_bindir}/gnome-control-center
225%{_bindir}/gnome-sound-applet
226%{_libdir}/*.so.*
227%{_libdir}/control-center-1/panels/*.so
228#{_libexecdir}/*
229%{_sysconfdir}/xdg/menus/gnomecc.menu
230%{_sysconfdir}/xdg/autostart/gnome-sound-applet.desktop
231
232%files devel
233%defattr(-, root, root)
234%{_datadir}/pkgconfig/*
235%{_libdir}/*.so
236
237
238%changelog
239* Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
240- new upstream release
241- remove Patch0
242
243* Mon Aug 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
244- new upstream release
245- add BuildRequires: libnotify-devel
246- add Patch0 (control-center-3.1.5-crash-layout.patch)
247
248* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
249- new upstream release
250- change BuildRequires: gtk3-devel instead of gtk2-devel
251- change BuildRequires: gnome-desktop3-devel instead of gnome-desktop-devel
252- change BuildRequires: libcanberra-gtk3-devel instead of libcanberra-devel
253- change BuildRequires: unique3-devel instead of unique-devel
254- add BuildRequires: libXxf86misc-devel, libSM-devel, polkit-devel, libgtop2-devel, upower-devel,
255                     pulseaudio-libs-devel, cups-devel, cheese-devel, gstreamer-plugins-base-devel,
256                     gnome-online-accounts-devel, colord-devel, NetworkManager-glib-devel
257- add Requires: apg
258- drop all Patches
259- add Provides: and Obsoletes: gnome-volume-manager
260
261* Sun Mar 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.32.1-2
262- update desktop-effect-integration patch
263  - fix freeze on changing metacity to compiz
264  - run compiz directly instead of compiz-gtk
265  - drop use of jockey-gtk
266- update ja.po
267
268* Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-1
269- new upstream release
270
271* Sat Nov 06 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.32.0-4
272- update translation.
273
274* Fri Nov 05 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.32.0-3
275- update translation.
276
277* Sat Oct 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-2
278- update Source21(gnome-control-center-2.32.0-vine.ja.po)
279
280* Mon Oct 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
281- new upstream release
282- drop Patch22, Patch30, Patch52
283- fix %files
284
285* Tue Sep 28 2010 Shu KONNO <owa@bg.wakwak.com> 2.30.1-4
286- rebuilt with rpm-4.8.1 for pkg-config (too)
287
288* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-3
289- rebuild with rpm-4.8.1 for pkg-config file
290- add Requires: %{name}=%{version}-%{release}
291
292* Tue Jun 22 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-2
293- rebuild with evolution-data-server-2.30.2
294
295* Thu Apr 29 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
296- new upstream release
297
298* Sun Apr 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
299- new upstream release
300- drop Patch3, Patch46, Patch50, Patch51, Patch53, Patch54, Patch112
301- add BuildRequires: gnome-common, unique-devel
302
303* Thu Dec 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.28.1-2
304- enable Patch101,110-112 and 500
305
306* Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
307- new upstream release
308- disabled Patch101, 110-112 and 500
309
310* Fri Jul 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-9
311- update notification-theme.patch
312  - use vine theme if NotificationTheme is not set in meta-theme.
313
314* Tue Jun 09 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-8
315- add Patch510: use Sans for font-properties sample font.
316- add BR: librsvg2-devel, libXScrnSaver-devel
317- remove BR: esound
318
319* Sat Jun 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-7
320- add Patch37: Don't rely on _BACKUP property for xkb initialization
321
322* Wed May 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-6
323- renumber patch10 to patch1010
324  - do not check gdm fprint plugin
325- add Patch101: show aspect in drop down menu
326- add Patch110: modify gnome-mouse-properties to fit smaller screen
327- add Patch111: modify gnome-about-me to fit smaller screen
328- add Patch112: modify gnome-display-properties to fit smaller screen
329
330* Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-5
331- update Patch100 to use compiz-gtk instead of compiz
332
333* Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-4
334- update ja.po
335
336* Thu Apr 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-3
337- import upstream patchs (10,22,3[0-6])
338
339* Mon Mar 23 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-2
340- add nautilus-devel to BR: not Requires:
341
342* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
343- new upstream release
344- update ja.po
345- add BR: nautilus-devel
346
347* Wed Oct 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0.1-3
348- drop Patch20 which need new XInput API
349- update Patch23
350
351* Sat Oct 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0.1-2
352- add Patch20,22.23 from ubuntu
353  - patch20 to add touchpad configuration
354  - patch22 to add aspect setting in randr capplet
355  - patch23 to integrate desktop setting into appearance-properties
356
357* Fri Sep 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0.1-1
358- new upstream release
359
360* Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
361- new upstream release
362
363* Thu Jul 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2.1-3
364- add gnome-typing-monitor to %%files
365
366* Wed Jul 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2.1-2
367- add Patch100 for new RandR capplet. (fc)
368
369* Sat Jun  7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2.1-1
370- new upstream release
371- dropped Patch8 (merged into upstream)
372
373* Sat Apr 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1-1vl5
374- new upstream release
375- added Patch7 and Patch8 from Fedora
376  * Mon Mar 31 2008 - Bastien Nocera <bnocera@redhat.com> - 2.22.0-3
377  - Fix warnings in the keybindings capplet when in non-UTF-8 locale
378  - Fix Esc/Backspace being bindable when CapsLock is on (#427123)
379  * Tue Apr  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.1-2
380  - Remove a nonfunctional button from the a11y preferences
381- added BuildRequires: gnome-settings-daemon, gnome-panel
382- added Requires: gnome-icon-theme, gnome-desktop, dbus-x11
383- removed Requires: xscreensaver
384
385* Mon Mar 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.0-1vl5
386- new upstream release based on Fedora
387- added BuildRequires: gnome-settings-daemon
388
389* Tue Jan  8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.1-0vl1
390- new upstream release based on Fedora
391  * Wed Oct 24 2007  Matthias Clasen <mclasen@redhat.com> - 2.20.1-5
392  - Fix the orca command in the default applications capplet (#351471)
393
394* Sat Jul 14 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.18.0-0vl4
395- add BuildReq: libgnomekbd-devel
396
397* Sat Jul 14 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.0-0vl3
398- rebuilt with evolution-data-server-devel-1.10.1
399
400* Fri May 11 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.18.0-0vl2
401- add BuildReq: evolution-data-server-devel
402
403* Fri Apr 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-0vl1
404- new upstream release
405- remove unneeded? patch10
406
407* Sun Oct 22 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.14.2-0vl2
408- added Patch10 to supress /dev/pmu warning messages on some ppc models
409
410* Sat Jun 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.2-0vl1
411- new upstream release
412
413* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl1
414- new upstream release
415
416* Sat Apr 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl2
417- run gtk-update-icon-cache in %%post script.
418
419* Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl1
420- new upstream release
421- drop Patch10,it is merged in upstream
422
423* Sat Mar 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.93-0vl2
424- add Patch10 for correct textdomain name in
425  default-applications-properties(Bug332833)
426- add Patch100 for change default-applications settings for vine
427
428* Tue Mar 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.93-0vl1
429- new upstream release
430
431* Sat Oct 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.1-0vl1
432- new upstream release
433
434* Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.0-0vl1
435- new upstream release
436
437* Wed Aug 03 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.90-0vl1
438- new upstream release
439- enable alsa support
440
441* Mon Apr 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-0vl1
442- new upstream release
443
444* Thu Mar 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl4
445- fixed type in %%post script
446
447* Wed Mar 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl3
448- clear the old defaults of xkb
449
450* Mon Mar 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl2
451- remove bonobo-activation dependency
452
453* Mon Mar 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
454- new upstream version
455
456* Sun Feb 27 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.2-0vl1
457- new upstream release
458- add Japanese summay to devel package
459
460* Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
461- new upstream release
462
463* Sat Mar 27 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl3
464- modify patch11 to use NeoVine theme instead of BeCool.
465
466* Wed Dec 24 2003 Tomoya TAKA <taka@vinelinux.org> 2.4.0-0vl2
467- rebuild with new toolchain
468
469* Thu Sep 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
470- new upstream release
471- remove obsolete ja.po
472
473* Sat Sep 06 2003 Tomoya TAKA <taka@vinelinux.org> 2.3.6-0vl2
474- change required version of metacity to 2.4.34 on alpha
475
476* Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.6-0vl1
477- new upstream release
478
479* Wed Sep 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.5-0vl1
480- new upstream release
481
482* Sun May 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.2-0vl3
483- add more missing files and schemas...
484
485* Sun May 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.2-0vl2
486- add missing file in %{_libdir}/gnome-vfs-2.0/
487
488* Sat May 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.2-0vl1
489- new upstream release
490- this is experimental version
491- remove sr@Latn locale from desktop files to build with desktop-file-utils-0.3
492
493* Sun Mar 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl1
494- new upstream release
495
496* Sat Mar  1 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.1-0vl3
497- import patch6 (upstream paches) from rawhide package.
498
499* Tue Feb 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.1-0vl2
500- import patch1-5 (upstream paches) from rawhide package.
501
502* Sun Feb 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.1-0vl1
503- new upstream release
504
505* Wed Jan 22 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl2
506- rebuild
507
508* Tue Jan 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
509- new upstream release
510
511* Tue Jan 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.7-0vl1
512- new upstream release
513
514* Sun Jan 12 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.6-0vl1
515- new upstream release
516
517* Wed Jan  8 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl7
518- change default gtk1 theme from Raleigh to BeCool.
519
520* Wed Jan  8 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl6
521- add BuildRequires/Requires.
522- fixed kanjicode of specfile
523
524* Sun Dec 29 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl5
525- remove bogus message in %%post scripts.
526
527* Sun Dec 29 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl4
528- add patch10 to modify some desktop files
529- update ja.po
530
531* Sun Dec 29 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl3
532- update ja.po
533
534* Sun Dec 29 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl2
535- update ja.po
536
537* Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl1
538- new upstream release
539
540* Sun Dec 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.3-0vl3
541- add devel package
542- add window-manager-settings files.
543
544* Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.3-0vl2
545- modify dependancies.
546
547* Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.3-0vl1
548- build for Vine Linux
549- new upstream release from gnome-2.1.4
550
551* Thu Sep  5 2002 Jonathan Blandford <jrb@redhat.com>
552- Allow setting custom mime handlers
553
554* Tue Aug 27 2002 Havoc Pennington <hp@redhat.com>
555- make desktop file symlinks absolute #71991
556- add po files from cvs.gnome.org
557
558* Fri Aug 23 2002 Jonathan Blandford <jrb@redhat.com>
559- Fix up keyboard handling
560
561* Wed Aug 21 2002 Jonathan Blandford <jrb@redhat.com>
562- Fixes for #68735
563
564* Wed Aug  7 2002 Jonathan Blandford <jrb@redhat.com>
565- New version.  Fix up metacity theme locations
566
567* Wed Jul 24 2002 Owen Taylor <otaylor@redhat.com>
568- Switch the gtk1 theme along with the gtk2 theme
569- Add the ability to switch the window manager theme through the theme capplet
570- Add two more font options to the font property dialog
571- Add a bunch of missing unrefs of the result of gconf_client_get_default()
572
573* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
574- fix desktop files more
575- copy icons to /usr/share/pixmaps
576
577* Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
578- munge the desktop files correctly
579- obsolete control-center-devel, #69168
580- replace gnomecc.desktop with a file from redhat-menus
581
582* Tue Jul 23 2002 Owen Taylor <otaylor@redhat.com>
583- Fix crasher bug in xftprefs patch
584
585* Tue Jul 16 2002 Owen Taylor <otaylor@redhat.com>
586- Change the default rendering style to be "Best Shapes", not "Best Contrast"
587
588* Tue Jul  9 2002 Owen Taylor <otaylor@redhat.com>
589- Add Xft / XSETTINGS support
590
591* Fri Jun 28 2002 Bill Nottingham <notting@redhat.com> 2.0.0-2
592- fix %%post so schemas get installed
593 
594* Mon Jun 24 2002 Havoc Pennington <hp@redhat.com>
595- 2.0.0
596- add new default editor schemas
597- fix find_lang
598
599* Mon Jun 17 2002 Havoc Pennington <hp@redhat.com>
600- rebuild for new libraries
601- remove a no-longer-existing schemas file from post
602- use desktop-file-install
603
604* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
605- rebuild in different environment
606
607* Wed Jun  5 2002 Havoc Pennington <hp@redhat.com>
608- rebuild with new dependent libs
609
610* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
611- rebuild in different environment
612
613* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
614- rebuild in different environment
615- build requires bonobo-activation
616
617* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
618- 1.99.10
619
620* Fri May  3 2002 Havoc Pennington <hp@redhat.com>
621- 1.99.9
622
623* Wed Apr 17 2002 Havoc Pennington <hp@redhat.com>
624- Move to GNOME 2 version
625
626* Mon Apr 15 2002 Havoc Pennington <hp@redhat.com>
627- merge in translations
628
629* Fri Apr 12 2002 Owen Taylor <otaylor@redhat.com>
630- Make the theme selector write fontsets, not fonts (#62413)
631
632* Mon Apr  1 2002 Havoc Pennington <hp@redhat.com>
633- really put screensaver capplet back (I think)
634
635* Wed Mar 27 2002 Bill Nottingham <notting@redhat.com>
636- revert xscreensaver change
637
638* Wed Mar 27 2002 Havoc Pennington <hp@redhat.com>
639- init "Scaled" radio button correctly #61913
640
641* Mon Mar 25 2002 Havoc Pennington <hp@redhat.com>
642- change path to windowmaker config tool again, #61824
643
644* Thu Mar 14 2002 Bill Nottingham <notting@redhat.com>
645- rather than keep patching and patching it, use xscreensaver's own
646  capplet
647
648* Wed Feb 27 2002 Havoc Pennington <hp@redhat.com>
649- rebuild in Hampton
650
651* Wed Jan 30 2002 Jonathan Blandford <jrb@redhat.com>
652- Rebuild package.
653
654* Thu Jan 24 2002 Tim Powers <timp@redhat.com>
655- rebuilt against new openssl
656
657* Fri Jan 18 2002 Havoc Pennington <hp@redhat.com>
658- automake14
659- don't run auto* again in ccsingle subdir, not sure why we did that
660
661* Sun Oct 28 2001 Havoc Pennington <hp@redhat.com>
662- rebuild with new gnome-libs so that libcapplet has right cflags/libs
663- pixbufflags patch to make the rebuild work
664- compileflags patch to make control-center-single work
665
666* Wed Aug 29 2001 Havoc Pennington <hp@redhat.com>
667- fix #52831 (UI properties in Programs menu)
668
669* Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
670- Add po files from sources.redhat.com
671
672* Thu Aug 23 2001 Havoc Pennington <hp@redhat.com>
673- set the _XROOTCOLOR_PIXEL property, should fix
674  bug #52141
675
676* Wed Aug 22 2001 Yukihiro Nakai <ynakai@redhat.com>
677- Update translation.
678- Add CJK fontset patch
679
680* Thu Aug 16 2001 Jonathan Blandford <jrb@redhat.com>
681- New control-center-single to handle exiting, #51665
682
683* Wed Aug 01 2001 Havoc Pennington <hp@redhat.com>
684- remove .desktop file for gnomecc, so it won't appear
685  in panel menu, #49653
686
687* Mon Jul 30 2001 Jonathan Blandford <jrb@redhat.com>
688- allow to build without depending on control-center-devel
689
690* Mon Jul 23 2001 Jonathan Blandford <jrb@redhat.com>
691- Add BuildRequires
692
693* Mon Jul 16 2001 Jonathan Blandford <jrb@redhat.com>
694- New version of control-center-single
695
696* Thu Jul 12 2001 Alexander Larsson <alexl@redhat.com>
697- Change default background to the same as the nautilus one
698
699* Mon Jul 09 2001 Havoc Pennington <hp@redhat.com>
700- add hack to default to standalone control panels
701
702* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
703- Bump release + rebuild.
704
705* Tue May 22 2001 Havoc Pennington <hp@redhat.com>
706- putting in tree for David
707
708* Tue May 22 2001 David Sainty <dsainty@redhat.com>
709- improve DPMS patch for the try case, and enable patch
710
711* Wed May  2 2001 Bill Nottingham <notting@redhat.com>
712- add patch to use xscreensaver's DPMS stuff, require that version
713
714* Fri Apr 20 2001  <jrb@redhat.com>
715- New Version (1.4.0.1)
716
717* Wed Apr  4 2001 Bill Nottingham <notting@redhat.com>
718- kick the mixer once on startup if we aren't running esd
719
720* Thu Mar 15 2001 Havoc Pennington <hp@redhat.com>
721- translations
722
723* Thu Mar 01 2001 Owen Taylor <otaylor@redhat.com>
724- Rebuild for GTK+-1.2.9 include paths
725
726* Fri Feb 23 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
727- langify
728- don't define and use "ver" at the top of the file
729- move changelog to sane location
730
731* Thu Feb 08 2001 Elliot Lee <sopwith@redhat.com> 1.2.2-4
732- Apply patch from bug #23782 to see how it works
733
734* Fri Feb 02 2001 Elliot Lee <sopwith@redhat.com> 1.2.2-3
735- Include fvwm2.desktop in WM's
736
737* Sat Jan 27 2001 Akira TAGOH <tagoh@redhat.com>
738- Added Japanese patch.
739
740* Mon Dec 04 2000 Jonathan Blandford <jrb@redhat.com>
741- Update release.
742
743* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
744- Again, fix problem with solid backgrounds in bg-properties capplet
745  (patch got lost somewhere)
746
747* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
748- Up Epoch and release
749
750* Thu Aug 10 2000 Owen Taylor <otaylor@redhat.com>
751- Handle unreadable desktop files without crashing
752
753* Mon Aug 07 2000 Owen Taylor <otaylor@redhat.com>
754- Fix problem with backgrounds bigger than screen.
755
756* Tue Aug 01 2000 Owen Taylor <otaylor@redhat.com>
757- Fix problem when ~/.gtkrc does not already exist.
758- Fix problem with solid backgrounds in bg-properties capplet
759
760* Tue Jul 18 2000 Owen Taylor <otaylor@redhat.com>
761- Sort of fix problem with people hitting OK while the
762  "Save Session" dialog is still up. (Session won't be saved,
763  but at least the selected entry will be correctly kept.)
764- Fix history list in background properties capplet
765- Fix problems with temporary files in theme-selector capplet
766
767* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
768- automatic rebuild
769
770* Mon Jun 19 2000 Owen Taylor <otaylor@redhat.com>
771- Require redhat-logos
772- Some spec file and FHS fixes
773- reposition embedded logo a bit
774
775* Mon Jun 19 2000 Owen Taylor <otaylor@redhat.com>
776- Add big change to use gdk-pixbuf for backgrounds and add
777  the ability to emboss the background with a logo
778
779* Mon Feb 28 2000 Preston Brown <pbrown@redhat.com>
780- revert .so strip
781
782* Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
783- strip .so lib
784- use configure macro
785
786* Mon Sep 20 1999 Jonathan Blandford <jrb@redhat.com>
787- changed to work with 1.0.40
788
789* Fri Sep 17 1999 Jonathan Blandford <jrb@redhat.com>
790- Added fixrevert bug to fix bug in theme selector.
791
792* Sun Jun 13 1999 Jonathan Blandford <jrb@redhat.com>
793- updated RPM to use new control-center.
794
795* Wed Apr 07 1999 Michael Fulbright <drmike@redhat.com>
796- fixed sound-properties to only disable sound when run with --init-settings-..
797- removed debugging output from several capplets, fixed try behaviour of sm and
798  gnome-edit capplets
799- fixed bug in screensaver and background props
800- added new icons
801
802* Mon Apr 05 1999 Jonathan Blandford <jrb@redhat.com>
803- added a patch to fix the close dialog
804- added a patch to limit the number of bg's in the history.
805
806* Fri Apr 02 1999 Jonathan Blandford <jrb@redhat.com>
807- vesion 1.0.5
808- removed all patches >10 other then dontstartesd.
809
810* Thu Apr 01 1999 Michael Fulbright <drmike@redhat.com>
811- removed UI props till it works better
812
813* Wed Mar 31 1999 Michael Fulbright <drmike@redhat.com>
814- make sure we DONT inadvertantly start esd by calling esd_open_...
815
816* Tue Mar 30 1999 Michael Fulbright <drmike@redhat.com>
817- changed default bg color to '#356390'
818
819* Thu Mar 25 1999 Michael Fulbright <drmike@redhat.com>
820- prime file selector path for browse in background-props if
821  "/usr/share/pixmaps/backgrounds/" exists.
822- fix behavior of file selector when you delete/cancel/ok it
823
824* Wed Mar 24 1999 Michael Fulbright <drmike@redhat.com>
825- added patch to fix trying in theme selector
826- disabled crystal screensaver, it does evil things to preview in capplet
827
828* Mon Mar 22 1999 Michael Fulbright <drmike@redhat.com>
829- version 1.0.4, fixes problems with sndprops and theme props among
830  other things.
831
832* Thu Mar 18 1999 Michael Fulbright <drmike@redhat.com>
833- fix sound-properties capplet so Try/Revert doesnt come on unless user
834  changes something
835- fixed theme-selector to not leave processes behind on Linux 2.2 kernels
836- strip binaries
837
838* Sun Mar 14 1999 Michael Fulbright <drmike@redhat.com>
839- version 1.0.3
840- added patch to make esd release after 30 sec of inactivity
841
842* Wed Mar 10 1999 Michael Fulbright <drmike@redhat.com>
843- version 1.0.2
844- turned off sound by default
845
846* Thu Mar 04 1999 Michael Fulbright <drmike@redhat.com>
847- version 1.0.1
848
849* Mon Feb 15 1999 Michael Fulbright <drmike@redhat.com>
850- version 0.99.8.1
851- added etc/CORBA/servers/* to file list
852
853* Fri Feb 12 1999 Michael Fulbright <drmike@redhat.com>
854- update to 0.99.8
855- added /usr/lib/cappletConf.sh
856
857* Mon Feb 08 1999 The Rasterman <raster@redhat.com>
858- update to 0.99.5.1
859
860* Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
861- update to 0.99.5
862
863* Mon Jan 20 1999 Michael Fulbright <drmike@redhat.com>
864- update to 0.99.3.1
865
866* Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
867- update to 0.99.3
868- seems like patch for non-standard xscreensaver placement was already in
869  prestine sources(?)
870
871* Wed Jan 06 1999 Jonathan Blandford <jrb@redhat.com>
872- updated to 0.99.1
873- temporary hack patch to get path to work to non-standard placement
874  of xscreensaver binaries in RH 5.2
875
876* Wed Dec 16 1998 Jonathan Blandford <jrb@redhat.com>
877- Created for the new control-center branch
878
Note: See TracBrowser for help on using the repository browser.