1 # 2 # spec file for package gnome-panel 3 # 4 # Copyright (c) 2005 Sun Microsystems, Inc. 5 # This file and all modifications and additions to the pristine 6 # package are under the same license as the package itself. 7 # 8 # Owner: mattman 9 # 10 Name: gnome-panel 11 License: GPL 12 Group: System/GUI/GNOME 13 Version: 2.16.1 14 Release: 2 15 Distribution: Java Desktop System 16 Vendor: Sun Microsystems, Inc. 17 Summary: The GNOME Panel 18 Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-panel/2.16/gnome-panel-%{version}.tar.bz2 19 Source1: gnome-main-menu.png 20 Source2: gnome-time-settings.apps 21 Source3: gnome-desktop-item-edit.1.gz 22 Source4: gnome-panel-preferences.1.gz 23 Source5: gnome-panel.1.gz 24 Source6: libpanel-applet-2.3.gz 25 Source7: world_map-960.png 26 Patch1: gnome-panel-01-default-setup.diff 27 Patch2: gnome-panel-02-fish-applet.diff 28 Patch3: gnome-panel-03-concurrent-login.diff 29 Patch4: gnome-panel-04-panel-applet-session-never-restart.diff 30 Patch5: gnome-panel-05-notificationarea-tooltip.diff 31 Patch6: gnome-panel-06-input-method-filter-keypress.diff 32 Patch7: gnome-panel-07-restrict-app-launching.diff 33 Patch8: gnome-panel-08-launch-menu.diff 34 Patch9: gnome-panel-09-solaris-branding.diff 35 Patch10: gnome-panel-10-clock-timezone.diff 36 Patch11: gnome-panel-11-trusted-extensions.diff 37 Patch12: gnome-panel-12-noswitchuser.diff 38 Patch13: gnome-panel-13-lockdown-applets.diff 39 # date:2006-08-16 bugster:6460249 owner:harrylu type:feature 40 Patch14: gnome-panel-14-support-alacarte.diff 41 Patch15: gnome-panel-15-lXau.diff 42 # date:2006-10-02 bugster:6439133 type:branding 43 Patch16: gnome-panel-16-preferences-menu.diff 44 # date:2006-11-16 bugster:6434323 bugzilla:361363 owner:padraig type:bug 45 Patch17: gnome-panel-17-gok-grab-menu.diff 46 # date:2007-04-04 bugster:6540938 owner:mattman type:feature 47 Patch18: gnome-panel-18-gnome-sys-suspend.diff 48 49 URL: http://www.gnome.org 50 BuildRoot: %{_tmppath}/%{name}-%{version}-build 51 Docdir: %{_defaultdocdir}/gnome-panel 52 Autoreqprov: on 53 Prereq: /sbin/ldconfig 54 Prereq: GConf 55 56 %define libgnomeui_version 2.2.0 57 %define gnome_desktop_version 2.2.1 58 %define scrollkeeper_version 0.3.11 59 %define popt_version 1.6.4 60 %define gtk_doc_version 1.0 61 %define libwnck_version 2.2.1-2 62 %define libbonoboui_version 2.2.0 63 %define GConf_version 2.6.1 64 %define gnome_menus_version 2.10.0 65 66 BuildRequires: libgnomeui-devel >= %{libgnomeui_version} 67 BuildRequires: gnome-desktop-devel >= %{gnome_desktop_version} 68 BuildRequires: popt-devel >= %{popt_version} 69 BuildRequires: gtk-doc >= %{gtk_doc_version} 70 BuildRequires: libwnck-devel >= %{libwnck_version} 71 BuildRequires: GConf >= %{GConf_version} 72 BuildRequires: scrollkeeper >= %{scrollkeeper_version} 73 BuildRequires: intltool 74 BuildRequires: gnome-menus-devel >= %{gnome_menus_version} 75 Requires: libgnomeui >= %{libgnomeui_version} 76 Requires: gnome-desktop >= %{gnome_desktop_version} 77 Requires: libwnck >= %{libwnck_version} 78 Requires: gnome-menus >= %{gnome_menus_version} 79 80 %description 81 This package contains the GNOME 2.0 Panel. The Panel is an easy to use and 82 functional interface to manage your desktop, start programs and organize 83 access to your data. 84 85 %package devel 86 Summary: The GNOME Panel 87 Group: System/GUI/GNOME 88 Autoreqprov: on 89 Requires: %{name} = %{version} 90 Requires: GConf-devel >= %{GConf_version} 91 Requires: libbonoboui-devel >= %{libbonoboui_version} 92 93 %description devel 94 This package contains the GNOME 2.0 Panel. The Panel is an easy to use and functional interface to manage your desktop, start programs and organize access to your data. 95 96 97 %prep 98 %setup -q 99 100 %patch1 -p1 101 %patch2 -p1 102 %patch3 -p1 103 %patch4 -p1 104 %patch5 -p1 105 %patch6 -p1 106 %patch7 -p1 107 %patch13 -p1 108 %patch8 -p1 109 %patch9 -p1 110 %patch10 -p1 111 %patch11 -p1 112 %patch12 -p1 113 %patch14 -p1 114 %patch15 -p1 115 %patch16 -p1 116 %patch17 -p1 117 %patch18 -p1 118 cp %SOURCE7 icons 119 120 121 cp %SOURCE1 icons/gnome-main-menu.png 122 123 %build 124 %ifos linux 125 if [ -x /usr/bin/getconf ]; then 126 CPUS=`getconf _NPROCESSORS_ONLN` 127 fi 128 %else 129 CPUS=`/usr/sbin/psrinfo | grep on-line | wc -l | tr -d ' '` 130 %endif 131 if test "x$CPUS" = "x" -o $CPUS = 0; then 132 CPUS=1 133 fi 134 135 libtoolize --force 136 glib-gettextize -f 137 intltoolize --force --copy 138 aclocal $ACLOCAL_FLAGS 139 automake -a -c -f 140 autoconf 141 142 CFLAGS="$RPM_OPT_FLAGS" \ 143 ./configure \ 144 --prefix=%{_prefix} \ 145 --libexecdir=%{_libexecdir} \ 146 --mandir=%{_mandir} \ 147 --sysconfdir=%{_sysconfdir} \ 148 --disable-scrollkeeper \ 149 %{gtk_doc_option} 150 151 make 152 153 %install 154 export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 155 make -i install DESTDIR=$RPM_BUILD_ROOT 156 unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL 157 %ifos linux 158 install -d $RPM_BUILD_ROOT%{_sbindir} 159 install -m 644 -D %SOURCE2 $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/gnome-time-settings 160 mv $RPM_BUILD_ROOT%{_bindir}/gnome-time-settings $RPM_BUILD_ROOT%{_sbindir}/ 161 (cd $RPM_BUILD_ROOT%{_bindir}; ln -sf consolehelper gnome-time-settings) 162 %endif 163 rm -rf $RPM_BUILD_ROOT%{_mandir}/man1 164 rm -rf $RPM_BUILD_ROOT%{_mandir}/man3 165 install -d $RPM_BUILD_ROOT%{_mandir}/man1 166 install -d $RPM_BUILD_ROOT%{_mandir}/man3 167 install --mode=0644 %SOURCE3 $RPM_BUILD_ROOT%{_mandir}/man1 168 install --mode=0644 %SOURCE4 $RPM_BUILD_ROOT%{_mandir}/man1 169 install --mode=0644 %SOURCE5 $RPM_BUILD_ROOT%{_mandir}/man1 170 install --mode=0644 %SOURCE6 $RPM_BUILD_ROOT%{_mandir}/man3 171 172 173 rm $RPM_BUILD_ROOT%{_libdir}/*.a 174 rm $RPM_BUILD_ROOT%{_libdir}/*.la 175 176 rm -rf $RPM_BUILD_ROOT/usr/var/scrollkeeper 177 178 %clean 179 rm -rf $RPM_BUILD_ROOT 180 181 %post 182 /sbin/ldconfig 183 export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` 184 SCHEMAS="panel-toplevel.schemas panel-object.schemas panel-global.schemas panel-general.schemas panel-compatibility.schemas clock.schemas workspace-switcher.schemas window-list.schemas" 185 for S in $SCHEMAS; do 186 gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/$S >/dev/null 187 done 188 gconftool-2 --direct --config-source=$GCONF_CONFIG_SOURCE --load %{_sysconfdir}/gconf/schemas/panel-default-setup.entries 189 gconftool-2 --direct --config-source=$GCONF_CONFIG_SOURCE --load %{_sysconfdir}/gconf/schemas/panel-default-setup.entries /apps/panel/profiles/default 190 191 %postun 192 /sbin/ldconfig 193 194 %files 195 %defattr (-, root, root) 196 %doc AUTHORS COPYING ChangeLog NEWS README 197 %{_bindir}/gnome-desktop-item-edit 198 %{_bindir}/gnome-panel 199 %{_bindir}/gnome-time-settings 200 %{_sbindir}/gnome-time-settings 201 %{_libexecdir}/* 202 %{_libdir}/libpanel-applet*.so.* 203 %{_libdir}/bonobo/servers 204 %{_datadir}/gnome-panelrc 205 %{_datadir}/gnome/help 206 %{_datadir}/gnome/panel 207 %{_datadir}/gnome/panel/glade 208 %{_datadir}/gnome-2.0/ui 209 %{_datadir}/gnome-time-settings/* 210 %{_datadir}/icons/hicolor/* 211 %{_datadir}/idl/* 212 %{_datadir}/omf/* 213 %{_datadir}/locale/*/LC_MESSAGES/*.mo 214 %{_mandir}/man1/* 215 %{_sysconfdir}/security/console.apps/* 216 %{_sysconfdir}/gconf/schemas/* 217 218 %files devel 219 %defattr (-, root, root) 220 %{_bindir}/panel-test-applets 221 %{_includedir}/panel-2.0 222 %{_libdir}/libpanel-applet*.so 223 %{_libdir}/pkgconfig/*.pc 224 %{_datadir}/gtk-doc/html/panel-applet 225 %{_mandir}/man3/* 226 227 %changelog 228 * Fri Nov 17 2006 - harry.lu@sun.com 229 - rework gnome-panel-14-support-alacarte.diff and enable it. 230 * Fri Nov 3 2006 - laca@sun.com 231 - use %gtk_doc_option in configure so that it can be disabled using 232 --without-gtk-doc 233 * Tue Oct 03 2006 - damien.carbery@sun.com 234 - Bump to 2.16.1. 235 * Mon Oct 02 2006 - padraig.obriain@sun.com 236 - add patch 17-preferences-menu.diff for bug 6439133 237 * Mon Sep 04 2006 - damien.carbery@sun.com 238 - Bump to 2.16.0. 239 * Thu Aug 30 2006 - damien.carbery@sun.com 240 - Remove reference to gnome-menu-stripe.png as it has been removed. Renumber 241 the remaining 'Source?' items. 242 * Wed Aug 16 2006 - harry.lu@sun.com 243 - Add patch gnome-panel-15-support-alacarte.diff to fix 6460249. 244 * Thu Aug 10 2006 - matt.keenan@sun.com 245 - Reworking of lockdown patch 08, generating two patches 246 08-restrict-app-launching.diff - specifically for restricting applications 247 14-lockdown-applets.diff - Applet lockdown specifics that can be pushed 248 upstream 249 * Tue Aug 08 2006 - damien.carbery@sun.com 250 - Bump to 2.15.91. 251 * Tue Jul 25 2006 - damien.carbery@sun.com 252 - Bump to 2.15.90. 253 * Thu Jul 13 2006 - laca@sun.com 254 - remove patch ALL_LINGUAS.diff: fixed farther down the stack 255 * Thu Jul 13 2006 - brian.cameron@sun.com 256 - Add gnome-panel-14-noswitchuser.diff so that "Switch User" is not 257 an option on the Log Out menu, since this feature requires VT's to 258 be supported and they aren't yet supported on Solaris. 259 * Thu Jul 13 2006 - laca@sun.com 260 - add patch ALL_LINGUAS.diff 261 * Wed May 03 2006 - glynn.foster@Sun.COM 262 - Add launch menu branding patch. 263 * Tue Apr 11 2006 - Cyrille.Moureaux@Sun.COM 264 - Added patch for application launching restriction. 265 * Mon Apr 10 2006 - damien.carbery@sun.com 266 - Bump to 2.14.1. 267 * Mon Mar 13 2006 - damien.carbery@sun.com 268 - Bump to 2.14.0. 269 * Tue Feb 14 2006 - damien.carbery@sun.com 270 - Bump to 2.13.91. 271 * Sun Jan 29 2006 - damien.carbery@sun.com 272 - Bump to 2.13.90 273 * Wed Jan 18 2006 - brian.cameron@sun.com 274 - Running glib-gettextize is a better fix than patching the Makefile to 275 not go into the po directory. This fixes infinite loop also. 276 * Wed Jan 18 2006 - damien.carbery@sun.com 277 - Add intltoolize call. Add patch to fix infinite loop in configure. 278 * Tue Jan 17 2006 - damien.carbery@sun.com 279 - Bump to 2.13.5 280 * Sun Jan 15 2006 - damien.carbery@sun.com 281 - Bump to 2.13.4. 282 * Wed Jan 04 2006 - damien.carbery@sun.com 283 - Remove obsolete patch 03-egg-recent-poll. Renumber 12-launch-button to 03. 284 - Reenable patches 10 and 11 after rework. 285 * Wed Dec 21 2005 - damien.carbery@sun.com 286 - Bump to 2.13.3. 287 * Tue Nov 29 2005 - laca.com 288 - remove javahelp stuff 289 * Tue Nov 29 2005 - damien.carbery@sun.com 290 - Bump to 2.12.2. 291 * Tue Oct 11 2005 - damien.carbery@sun.com 292 - Bump to 2.12.1 293 * Sat Sep 17 2005 - glynn.foster@sun.com 294 - Bump to 2.12.0 295 * Mon Aug 15 2005 - damien.carbery@sun.com 296 - Bump to 2.11.91. 297 * Thu Jul 28 2005 - srirama.sharma@wipro.com 298 - Added gnome-panel-17-fix-logout-crash.diff to fix the panel crash 299 when recent items change. Don't unref menu in EggRecentViewGtk. 300 Also reuse the view till menu exists. 301 * Fri Jul 15 2005 - arvind.samptur (at] wipro.com 302 - Get Launch button to get rendered right 303 * Thu Jun 30 2005 - balamurali.viswanathan (at] wipro.com 304 - Interchange patch 12 and 15 so that pkgconfig patch applies on both 305 Linux and Solaris properly. 306 * Wed Jun 29 2005 - balamurali.viswanathan (at] wipro.com 307 - Add more libs to LDADD so that it builds with the new pkgconfig 308 * Wed May 25 2005 - brian.cameron (at] sun.com 309 - No longer create lib/conf.d since it is empty. 310 * Tue May 24 2005 - brian.cameron (at] sun.com 311 - Make patch 12 linux only since it requires patch 3 which is 312 linux only. 313 * Mon May 23 2005 - glynn.foster (at] sun.com 314 - Fix up a whole bunch, and reinstate the menu stripe patch. 315 * Fri May 13 2005 - brian.cameron (at] sun.com 316 - Bump to 2.10. 317 * Fri May 05 2005 - kieran.colfer (at] sun.com 318 - updating l10n po tarball to 1.15 (linux) 319 * Thu May 05 2005 - srirama.sharma (at] wipro.com 320 - Revised gnome-panel-06-time-settings.diff to show correct time 321 in "Adjust System Date and Time" dialog. Fixes bug #6263488 322 * Thu May 05 2005 - arvind.samptur (at] wipro.com 323 - Revised gnome-panel-07-multi-timezones.diff to fix 324 timezone button getting broked for second instance. 325 Fixes #6236886 326 * Tue Apr 26 2005 - takao.fujiwara (at] sun.com 327 - Revised gnome-panel-38-g11n-i18n-filename.diff from community's reply 328 * Fri Apr 08 2005 - glynn.foster@sun.com 329 - Add some hicolor icons 330 * Mon Mar 14 2005 - takao.fujiwara@sun.com 331 - Removed gnome-panel-16-g11n-potfiles.diff to use l10n-configure.sh 332 - Removed gnome-panel-26-g11n-alllinguas.diff to use l10n-configure.sh 333 - Removed gnome-panel-27-g11n-potfiles.diff 334 - Added gnome-panel-38-g11n-i18n-filename.diff to fix 6239962 and 6239963 335 * Fri Mar 11 2005 - dermot.mccluskey@sun.com 336 - remove concurrent build from gnome-panel and this may have been 337 causing intermittent intltool timestamp problems (6228015) 338 * Mon Feb 28 2005 - alvaro.lopez@sun.com 339 - Added patch gnome-panel-40-public_html.diff to bug bug #5032218: 340 gnome-panel-screenshot has the uncorrect shortcut menu. 341 * Mon Feb 28 2005 - dinoop.thomas@wipro.com 342 - Added gnome-panel-39-notificationareatooltip.diff to add tooltip 343 for panel notification area applet. Fixes bug #4912432. 344 * Sat Feb 26 2005 - dinoop.thomas@wipro.com 345 - Added gnome-panel-38-workspaceswitchertooltip.diff to add tooltip 346 for workspace switcher applet. Fixes bug #6227329. 347 * Fri Feb 11 2005 - srirama.sharma@wipro.com 348 - Added gnome-panel-37-resolve-vfb-magnification.diff to fix problem with 349 panel properties when using VFB magnification. Fixes bug #6225051. 350 * Fri Feb 11 2005 - srirama.sharma@wipro.com 351 - Added gnome-panel-36-multihead-keyboard-shortcut.diff to see that 352 keyboard shortcuts are serviced on the proper screen on a multihead 353 machine. Fixes bug #4983400. 354 * Fri Feb 11 2005 - kieran.colfer@sun.com 355 - added gnome-panel-35-install-warning.diff to fix CR 6222796 (rpm 356 gives warnings on install) 357 * Fri Feb 11 2005 - muktha.narayan@wipro.com 358 - Added gnome-panel-34-run-dialog-atk-name.diff to set accessible name 359 for the list of known applications. Fixes bug #6223576. 360 * Thu Feb 10 2005 - muktha.narayan@wipro.com 361 - Updated gnome-panel-31-theme.diff to fix the display problem 362 of launch button. 363 * Fri Feb 04 2005 - glynn.foster@sun.com 364 - Fixed the run dialog to not default to trying an url if it 365 doesn't have the correct prefix. Fixes #4897845. 366 * Tue Feb 01 2005 - dinoop.thomas (at] wipro.com 367 - Added gnome-panel-32-clock-applet-crash.diff patch to fix 368 clock applet crash on clicking Edit Timezones after the applet 369 is removed. Fixes bug #6222326. 370 * Mon Jan 31 2005 - matt.keenan (at] wipro.com 371 - #6222810 - Only install sun man pages 372 * Fri Jan 28 2005 - muktha.narayan (at] wipro.com 373 - Added gnome-panel-31-theme.diff to theme the panel icons. 374 Fixes bug #5088581. 375 * Fri Jan 28 2005 - Matt.keenan (at] sun.com 376 - #6222302 - Remove fish from yelp 377 * Thu Jan 27 2005 - muktha.narayan (at] wipro.com 378 - Added gnome-panel-30-showdesktop-theme.diff to theme the show 379 desktop icon. Fixes bug #6218867. 380 * Mon Jan 25 2005 - leena.gunda (at] wipro.com 381 - Modified gnome-panel-07-multi-timezones.diff to show correct time 382 in the timezone selection dialog. Fixes bug #6218072 383 * Mon Jan 17 2005 - ghee.teo (at] sun.com 384 - Added gnome-panel-29-panel-applet-session-never-restart.diff to make sure 385 that popup dialog from panel applets are not session aware, fixes bug 386 6205402. 387 * Fri Jan 14 2005 - kazuhiko.maekawa (at] sun.com 388 - Updated l10n help tarball for cinnabar-linux 389 * Mon Jan 03 2005 - srirama.sharma (at] wipro.com 390 - Added gnome-panel-28-delete-attached-panel.diff to allow user to delete an 391 attached panel. Fixes Bug 6211650. 392 * Wed Dec 22 2004 - takao.fujiwara (at] sun.com 393 - Update gnome-panel-06-time-settings.diff and 394 gnome-panel-07-multi-timezones.diff to localize multi timezone. Fix bug 6210443 395 * Fri Nov 26 2004 - muktha.narayan (at] wipro.com 396 - Remove patch gnome-panel-28-icon-theming.diff. 397 * Fri Nov 12 2004 - hidetoshi.tajima (at] sun.com 398 - Created two panel-default-setup, one for linux the other for solaris 399 as gnome-im-switcher is only on Linux (6193817) 400 - Rename patch-[03-27] to patch-[04-28] 401 * Tue Nov 09 2004 - muktha.narayan (at] wipro.com 402 - Added gnome-panel-27-icon-theming.diff to update panel menu icons 403 with the icon theme change. 404 * Fri Nov 05 2004 - ciaran.mcdermott (at] sun.com 405 - Added gnome-panel-26-g11n-potfiles.diff to update POTFILES.in 406 * Thu Nov 03 2004 - kieran.colfer (at] sun.com 407 - added gnome-panel-25-g11n-alllinguas.diff to fix missing zh_HK 408 messages 409 * Fri Oct 29 2004 - leena.gunda (at] wipro.com 410 - added gnome-panel-24-applet-locked-key.diff to notify"locked" 411 key changes. Fixes bug #6181184. 412 * Fri Oct 29 2004 - arvind.samptur (at] wipro.com 413 - add patch in panel to get Launch menu items 414 (help,this computer and find files) to have 415 feedback when launched. 416 * Mon Oct 18 2004 - arvind.samptur (at] wipro.com 417 - add patch in panel to fix the conncurent login 418 breakage between GNOME 2.0 and JDS for the panel 419 configuration. Fixes #4984097 420 * Wed Oct 06 2004 - matt.keenan (at] sun.com 421 - re-do patch 20-l10n-online-help.diff and apply it #5108690 422 * Thu Sep 30 2004 - johan.steyn (at] sun.com 423 - Added patch to remove the fish applet. 424 Also removed all other references to the fish applet. 425 * Fri Sep 10 2004 - vijaykumar.patwari (at] wipro.com 426 - Fixes the problem of panel hang, while setting gconf key value. 427 Fixes bug #5083692. 428 * Thu Aug 26 2004 - damien.carbery (at] sun.com 429 - Integrated docs 0.6 tarball from breda.mccoglan (at] sun.com 430 - Use %ifos to apply different tarball for Linux and Solaris. 431 * Wed Aug 25 2004 - arvind.samptur (at] wipro.com 432 - Add gnome-panel-21-button-press.diff. Propogate 433 button press event to PanelWidget 434 * Wed Aug 25 2004 - Kazuhiko.Maekawa (at] sun.com 435 - Added l10n help contents 436 * Wed Aug 18 2004 - brian.cameron (at] sun.com 437 - added --enable-gtk-doc. 438 * Thu Aug 05 2004 - damien.carbery (at] sun.com 439 - Integrated docs 0.5 tarball from breda.mccoglan (at] sun.com 440 * Thu Jul 22 2004 - padraig.obriain (at] sun.comn 441 - Added gnome-panel-19-create-menu.diff for bugzilla #138535. 442 * Thu Jul 08 2004 - damien.donlon (at] sun.com 443 - Updated l10n content to gnome-panel-l10n-po-1.2.tar.bz2 444 * Wed Jul 07 2004 - niall.power (at] sun.com 445 - ported to rpm4 446 * Wed Jul 07 2004 - dermot.mccluskey (at] sun.com 447 - added "-j $CPUS" to make to speed up builds 448 * Fri Jun 11 2004 - damien.carbery (at] sun.com 449 - Integrated docs 0.4 tarball from breda.mccoglan (at] sun.com 450 Thu Jun 10 2004 - kaushal.kumar (at] wipro.com 451 - Added gnome-panel-18-drawer-pref-help.diff to fix the drawer properties 452 help. 453 * Thu Jun 10 2004 - vijaykumar.patwari (at] wipro.com 454 - Fixes workspace switcher shows only one workspace. 455 * Tue Jun 09 2004 - glynn.foster (at] sun.com 456 - De-screwup the g11n-potfiles patches, so that now the linux only patches 457 modify POTFILES.in as well. Need to be more careful with potfile hacking 458 in the future. 459 * Sat Jun 05 2004 - damien.carbery (at] sun.com 460 - Temp comment out patch 18 as it fails and blocks building of other modules. 461 * Thu Jun 03 2004 - yuriy.kuznetsov (at] sun.com 462 - Added gnome-panel-18-g11n-potfiles.diff 463 * Tue Jun 01 2004 - yuriy.kuznetsov (at] sun.com 464 - Added gnome-panel-17-g11n-potfiles.diff 465 * Tue Jun 01 2004 - padraig.obriain (at] sun.com 466 - Added gnome-panel-16-accessible-name-sleep.diff for #5023382 467 * Fri May 28 2004 - damien.carbery (at] sun.com 468 - Incorporate new docs tarball from breda.mccolgan (at] sun.com. 469 * Mon May 24 2004 - balamurali.viswanathan (at] wipro.com 470 - Added gnome-panel-15-screenshot-remove-sleep.diff, solves #5032203 471 * Wed May 12 2004 - damien.donlon (at] sun.com 472 - Updated l10n content to gnome-panel-l10n-po-1.1.tar.bz2 473 * Wed May 12 2004 - laszlo.kovacs (at] sun.com 474 - change jds-help.sh to jdshelp 475 * Fri May 07 2004 - matt.keenan (at] sun.com 476 - Bump to 2.6.1, remerge patch-02-default-setup & patch-09-lockdown 477 * Thu May 06 2004 - laszlo.kovacs (at] sun.com 478 - replace yelp with jds-help.sh in gnome-panel-03-menu-changes.diff and gnome-panel-09-lockdown.diff 479 * Thu Apr 29 2004 - glynn.foster (at] wipro.com 480 - Fix up panel menu changes, and merge the the search replace patch. 481 * Wed Apr 28 2004 - leena.gunda (at] wipro.com 482 - Added gnome-panel-14-check-fam-support.diff to check for FAM 483 support while updating the recent documents menu. Fixes bug 5027221. 484 * Tue Apr 27 2004 - kaushal.kumar (at] wipro.com 485 - Added gnome-panel-13-window-selector-tooltip.diff to provide a tooltip 486 for the Window Selector applet. Fixes bug 4912431. 487 * Tue Apr 27 2004 - kaushal.kumar (at] wipro.com 488 - Added gnome-panel-12-replace-search-menu-item.diff to replace 'Search' with 489 'Find Files' as per the Cinnabar specifications. Fixes bug 5035039. 490 * Tue Apr 27 2004 - kaushal.kumar (at] wipro.com 491 - Added gnome-panel-11-panel-menu-help.diff to fix panel context menu 492 help link. 493 * Tue Apr 27 2004 - arvind.samptur (at] wipro.com 494 - Added gnome-panel-10-drawer-multidepth.diff to fix problems when multi-depth 495 drawers are opened 496 * Sun Apr 18 2004 - laca (at] sun.com 497 - enable javahelp conversion on Solaris 498 * Tue Apr 13 2004 - matt.keenan (at] sun.com 499 - Amend patch -03-menu-changes, remove the username from logout 500 * Thu Apr 01 2004 - matt.keenan (at] sun.com 501 - javahelp conversion 502 * Mon Mar 29 2004 - damien.donlon (at] sun.com 503 - Updated l10n content to gnome-panel-l10n-po-1.0.tar.bz2 504 * Fri Mar 26 2004 - takao.fujiwara (at] sun.com 505 - Updated gnome-panel-04-i18n-launch-button.diff to fix 5017372 506 * Fri Mar 26 2004 - laca (at] sun.com 507 - add --libexecdir to configure args 508 * Tue Mar 23 2004 - glynn.foster (at] sun.com 509 - Bump to 2.6.0, remove clock icon, add gnome-time-settings.app 510 which seems to have disappeared :/ 511 * Thu Mar 18 2004 - hidetoshi.tajima (at] sun.com 512 - Updated gnome-panel-02-default-setup.diff to add GIMLET 513 * Thu Mar 18 2004 - matt.keenan (at] sun.com 514 - Bump to 2.5.93, remove patch 09-remove-man 515 - Rename patch-14 to patch-09 516 * Fri Mar 05 2004 - takao.fujiwara (at] sun.com 517 - Added gnome-panel-13-g11n-i18n-ui.diff to fix 5004633 518 - Added gnome-panel-14-g11n-potfiles.diff 519 - Updated gnome-panel-02-default-setup.diff to fix 4991948 520 * Fri Mar 05 2004 - matt.keenan (at] sun.com 521 - Fix to lockdown patch for Menu Bars 522 * Wed Mar 03 2004 - matt.keenan (at] sun.com 523 - Added lockdown Patch ported from QS 524 * Tue Mar 02 2004 - matt.keenan (at] sun.com 525 - Bump to 2.5.91 526 - Re-apply patches 03 and 10 527 - Renabled patches 10 & 11 inside ifos check 528 * Sun Feb 29 2004 - laca (at] sun.com 529 - Disabled patches 10 & 11 because they break the build on Solaris 530 * Fri Feb 20 2004 - hidetoshi.tajima (at] sun.com 531 - Updated gnome-panel-02-default-setup.diff to add GIMLET 532 * Tue Feb 17 2004 - <matt.keenan (at] sun.com> 533 - Forwared ported patch 10 from QS 534 * Mon Feb 16 2004 - <matt.keenan (at] sun.com> 535 - Bumped to 2.5.4, re-applied all patches .... 536 * Fri Feb 06 2004 - <matt.keenan (at] sun.com> 537 - Updated l10n doc, and added OrigTree.pm fix 538 * Thu Jan 29 2004 - <dermot.mccluskey (at] sun.com> 539 - add patch 08 for intltool-merge and dep. on intltool 540 * Tue Dec 16 2003 - <glynn.foster (at] sun.com> 2.5.2-2 541 - Merge in the i18n launch button patch. 542 * Tue Dec 16 2003 - <glynn.foster (at] sun.com> 2.5.2-1 543 - Merge patches and update to 2.5.2 544 * Thu Nov 19 2003 - <glynn.foster (at] sun.com> 2.4.0-27 545 - Add patch for Browse Application on launch button 546 context menu. 547 * Fri Nov 07 2003 - <markmc (at] sun.com> 2.4.0-24 548 - Fixed up help link in gnome-panel-preferences. 549 * Wed Nov 05 2003 - <glynn.foster (at] sun.com> 2.4.0-23 550 - Update default panel setup. 551 * Wed Nov 05 2003 - <glynn.foster (at] sun.com> 2.4.0-22 552 - Add 'Minimize' action button, and remove the Show 553 Desktop stuff. 554 * Fri Oct 31 2003 - <glynn.foster (at] sun.com> 2.4.0-18 555 - Add 'Open Documents' to the top of the Open Recent 556 menu. 557 * Fri Oct 31 2003 - <glynn.foster (at] sun.com> 2.4.0-17 558 - Remove the Extras menu. 559 * Wed Oct 08 2003 - <markmc (at] sun.com> 2.4.0-12 560 - Change the clock applet patch to unref the tree store 561 and not destroy the tree view. I thought I'd done this 562 as part of the changes in 2.4.0-3. Pointed out by 563 Leena. 564 * Wed Oct 08 2003 - <markmc@sun.com> 2.4.0-11 565 - Add patch from George to make launchers on drawers work. 566 * Fri Sep 26 2003 - <laca@sun.com> 567 - Integrate Sun docs 568 * Thu Sep 18 2003 - <markmc@sun.com> 2.4.0-5 569 - Add patch based on a patch from Bala to fix 570 icon loading. 571 * Thu Sep 18 2003 - <markmc@sun.com> 2.4.0-4 572 - Add patch from Arvind to fix bogus launchers 573 getting added to drawers. 574 * Thu Sep 18 2003 - <markmc@sun.com> 2.4.0-3 575 - Integrated three patches from Vijaykumar Patwari 576 fixing various bugs with the clock applet timezone 577 patch 578 * Thu Sep 18 2003 - <markmc@sun.com> 2.4.0-2 579 - Install panel-compatibility.schemas 580 * Thu Sep 18 2003 - <markmc@sun.com> 2.4.0-1 581 - Update to 2.4.0. 582 * Thu Aug 14 2003 - <laca@sun.com> 583 - use correct %{blahdir} tags instead of %{_prefix}/blah 584 - move lib*.so to -devel, remove *.a, *.la 585 * Fri Aug 08 2003 - <markmc@sun.com> 2.3.6.1-1 586 - Upgrade to 2.3.6.1. 587 * Fri Aug 08 2003 - <markmc@sun.com> 2.3.6-1 588 - Upgrade to 2.3.6. 589 * Thu Aug 07 2003 - <niall.power@sun.com> 2.3.4.1-10 590 - Make scrollkeeper a standard requirement 591 instead of just being a build requirement. 592 * Wed Aug 06 2003 - <markmc@sun.com> 2.3.4.1-9 593 - Fix some serious memory stomping crackrock in 594 the clock applet patch. 595 * Tue Aug 05 2003 - <glynn.foster@sun.com> 596 - Add missing .desktop file. 597 * Wed Jul 30 2003 - <markmc@sun.com> 598 - Fix crashing when adding clock applet. 599 * Mon Jul 28 2003 - <glynn.foster@sun.com> 600 - Merge together clock applet patches and fix crashing 601 * Thu Jul 24 2003 - <glynn.foster@sun.com> 602 - New default panel setup. 603 * Thu Jul 24 2003 - <markmc@sun.com> 604 - update to 2.3.4.1 605 * Tue Jul 22 2003 - <glynn.foster@sun.com> 606 - Update title to reflect menu entry. 607 * Tue Jul 22 2003 - <glynn.foster@sun.com> 608 - New Action icon for context menu. 609 * Tue Jul 22 2003 - <glynn.foster@sun.com> 610 - Add a new clock icon for the applet. 611 * Mon Jul 21 2003 - <glynn.foster@sun.com> 612 - Update menu changes to include quick-start:/// 613 uri thing. Mostly on crack. 614 * Mon Jul 21 2003 - <matt.keenan@sun.com> 615 - clock applet show city preference patch 616 * Fri Jul 18 2003 - <glynn.foster@sun.com> 617 - Install the png, instead of copying it. 618 * Fri Jul 18 2003 - <glynn.foster@sun.com> 619 - Update menu layout, and revise fix icons patch. 620 * Fri Jul 18 2003 - <glynn.foster@sun.com> 621 - Update default setup to move workspace switcher 622 to the far right. 623 * Fri Jul 18 2003 - <glynn.foster@sun.com> 624 - Change Applications and Help icon in the menu 625 * Thu Jul 17 2003 - <markmc@sun.com> 626 - Add back the launch button. 627 * Thu Jul 17 2003 - <glynn.foster@sun.com> 628 - Add patch to change pixmap installation location 629 * Tue Jul 16 2003 - <markmc@sun.com> 630 - Add patch to fix icon warnings. 631 * Tue Jul 15 2003 - <markmc@sun.com> 632 - Move to 2.3.4. 633 * Mon Jul 14 2003 - <markmc@sun.com> 634 - Add patch to normalise the applet size to the 635 values defined in the IDL. 636 * Mon Jul 14 2003 - <markmc@sun.com> 637 - Make gnome-panel-screenshot save screenshots to 638 ~/.gnome-desktop instead of ~/Desktop. 639 * Thu Jul 10 2003 - <glynn.foster@sun.com> 640 - Remove the notification area from the default 641 panel setup. 642 * Thu Jul 10 2003 - <glynn.foster@sun.com> 643 - Clock applet only shows time by default. 644 * Wed Jul 09 2003 - <michael.twomey@sun.com> 645 - add in sun po files 646 * Fri Jul 09 2003 - <markmc@sun.com> 647 - fix theming in menu stripe patch. 648 * Fri Jul 08 2003 - <markmc@sun.com> 649 - removed "Adjust Date and Time" from the clock applets 650 popup menu. There is no nice time adjustment tool 651 on SuSE. 652 * Fri Jul 04 2003 - <markmc@sun.com> 653 - Fixed stripe patch so events over the sripe go 654 to the menu item. 655 * Thu Jul 03 2003 - <markmc@sun.com> 656 - Changed the main menu icon to the launch button 657 * Thu Jul 03 2003 - <markmc@sun.com> 658 - Remove quicklounge from the default setup patch rather 659 than patching the patch 660 * Thu Jul 03 2003 - <markmc@sun.com> 661 - Bump release - new version of menu stripe patch 662 and merged changes into the menu layout patch. 663 * Thu Jul 03 2003 - <ghee.teo@sun.com> 664 - Remove quick lounge from panel with patch 665 gnome-panel-08-remove-quick-lounge.diff 666 * Wed Jul 02 2003 - <markmc@sun.com> 667 - use the correct menu stripe image filename 668 * Wed Jul 02 2003 - <markmc@sun.com> 669 - Make the main menu icon seperate from the GNOME 670 logo so we can theme them seperately 671 - Fixed icons in share/icons not getting installed 672 * Wed Jul 02 2003 - <markmc@sun.com> 673 - Update to gnome-panel-2.3.3.3 674 * Tue Jul 01 2003 - <markmc@sun.com> 675 - Update to gnome-panel-2.3.3.2 676 - Remove gnome-panel-06-fix-lock-logout-button-crashing.diff 677 - Remove gnome-panel-07-install-defaults.diff 678 - Update gnome-panel-03-menu-changes.diff, gnome-panel-02-default-setup.diff 679 and gnome-panel-04-change-required-versions.diff. 680 - Fix gnome-panel-08-clock-applet.diff 681 * Thu Jun 12 2003 - <markmc@sun.com> 682 - add patch to install panel-default-setup.entries 683 - fix post-install of default entries 684 * Fri May 30 2003 - <markmc@sun.com> 685 - Move to gnome-panel-2.3.x 686 * Tue May 13 2003 - <ghee.teo@sun.com> 687 - initial release for gnome-panel 688