This commit is contained in:
parent
bb733687e8
commit
729e2790f3
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8356a87e093f208e8c0ae2269c4cbe1772bef9419c6bbdd150872ce52b053e85
|
|
||||||
size 779272
|
|
3
gnome-session-2.23.90.tar.bz2
Normal file
3
gnome-session-2.23.90.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:66199687271c892551e7ecbbd2318e69539d9b61664f2dd764e7fce72133e8d1
|
||||||
|
size 783944
|
70
gnome-session-launch-dbus.patch
Normal file
70
gnome-session-launch-dbus.patch
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
Index: gnome-session/main.c
|
||||||
|
===================================================================
|
||||||
|
--- gnome-session/main.c (révision 4982)
|
||||||
|
+++ gnome-session/main.c (copie de travail)
|
||||||
|
@@ -25,6 +25,8 @@
|
||||||
|
#include <signal.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
+#include <unistd.h>
|
||||||
|
+#include <errno.h>
|
||||||
|
|
||||||
|
#include <glib/gi18n.h>
|
||||||
|
#include <glib/goption.h>
|
||||||
|
@@ -390,6 +392,42 @@ signal_cb (int signo,
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
+static gboolean
|
||||||
|
+require_dbus_session (int argc, char **argv, GError **error)
|
||||||
|
+{
|
||||||
|
+ int i;
|
||||||
|
+ char **new_argv;
|
||||||
|
+
|
||||||
|
+ if (g_getenv ("DBUS_SESSION_BUS_ADDRESS"))
|
||||||
|
+ return TRUE;
|
||||||
|
+
|
||||||
|
+ /* Just a sanity check to prevent infinite recursion if
|
||||||
|
+ * dbus-launch fails to set DBUS_SESSION_BUS_ADDRESS
|
||||||
|
+ */
|
||||||
|
+ g_return_val_if_fail (!g_str_has_prefix (argv[0], "dbus-launch"), TRUE);
|
||||||
|
+
|
||||||
|
+ /* +2 for our new arguments, +1 for NULL */
|
||||||
|
+ new_argv = g_malloc (argc+3 * sizeof (*argv));
|
||||||
|
+
|
||||||
|
+ new_argv[0] = "dbus-launch";
|
||||||
|
+ new_argv[1] = "--exit-with-session";
|
||||||
|
+ new_argv[2] = argv[0];
|
||||||
|
+ for (i = 1; i < argc-1; i++)
|
||||||
|
+ new_argv[i+2] = argv[i];
|
||||||
|
+ new_argv[i+2] = NULL;
|
||||||
|
+
|
||||||
|
+ if (!execvp ("dbus-launch", new_argv)) {
|
||||||
|
+ g_set_error (error,
|
||||||
|
+ G_SPAWN_ERROR,
|
||||||
|
+ G_SPAWN_ERROR_FAILED,
|
||||||
|
+ "No session bus and could not exec dbus-launch: %s",
|
||||||
|
+ g_strerror (errno));
|
||||||
|
+ return FALSE;
|
||||||
|
+ }
|
||||||
|
+ /* Should not be reached */
|
||||||
|
+ return TRUE;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
int
|
||||||
|
main (int argc, char **argv)
|
||||||
|
{
|
||||||
|
@@ -401,6 +439,13 @@ main (int argc, char **argv)
|
||||||
|
GsmXsmpServer *xsmp_server;
|
||||||
|
GdmSignalHandler *signal_handler;
|
||||||
|
|
||||||
|
+ /* Ensure that we have a session bus:
|
||||||
|
+ * http://bugzilla.gnome.org/show_bug.cgi?id=546863
|
||||||
|
+ */
|
||||||
|
+ if (!require_dbus_session (argc, argv, &error)) {
|
||||||
|
+ gsm_util_init_error (TRUE, "%s", error->message);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR);
|
||||||
|
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
|
||||||
|
textdomain (GETTEXT_PACKAGE);
|
@ -1,3 +1,37 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 21 14:51:09 CEST 2008 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Update to version 2.23.90:
|
||||||
|
+ Remove inhibitors for the client when it disconnects
|
||||||
|
+ Add log/debugging framework
|
||||||
|
+ Add signal handling framework
|
||||||
|
+ Add support for stopping/killing apps
|
||||||
|
+ Add command line option to override autostart dirs (used by
|
||||||
|
GDM)
|
||||||
|
+ Improve QES,ES,CES error handling
|
||||||
|
+ Remove gnome-login-sound (replaced by libcanberra-login-sound)
|
||||||
|
+ Rework the capplet dialogs to use gobject.
|
||||||
|
+ Make gnome-session-save tool use D-Bus API
|
||||||
|
+ Fixed bgo#521413, Fixes for sparse warnings in gnome-session
|
||||||
|
+ Fixed bgo#546410, splash no longer disappear
|
||||||
|
+ Fixed bgo#546439, missing include for pid_t
|
||||||
|
+ Fixed bgo#546722, Need bump dbus-glib dependency to 0.76
|
||||||
|
+ Fixed bgo#546896, crash wen passing null strings to
|
||||||
|
key_file_set_locale_string()
|
||||||
|
+ Fixed bgo#547069, [patch] Logout by sending XSMP
|
||||||
|
SaveYourselfRequest is broken
|
||||||
|
+ Fixed bgo#547443, crashes on desktop parsing errors
|
||||||
|
+ Fixed bgo#547619, gnome-session 2.23.6 doesn't compile on
|
||||||
|
Solaris
|
||||||
|
+ Fixed bgo#547769, part of gnome-wm potentially can break
|
||||||
|
+ Fixed bgo#548129, gnome-session-properties doesn't create
|
||||||
|
~/.config/autostart
|
||||||
|
+ Fixed bgo#548259, g-s thinks that metacity is 'not responding'
|
||||||
|
if it was --replace'd
|
||||||
|
+ Updated translations.
|
||||||
|
- Add gnome-session-launch-dbus.patch to make sure that dbus is
|
||||||
|
running (bgo#546863).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 11 11:35:02 CDT 2008 - maw@suse.de
|
Mon Aug 11 11:35:02 CDT 2008 - maw@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnome-session (Version 2.23.6)
|
# spec file for package gnome-session (Version 2.23.90)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -22,7 +22,7 @@ Name: gnome-session
|
|||||||
BuildRequires: control-center2-devel fdupes gnome-common gnome-desktop-devel gnome-keyring-devel gnome-patch-translation gnome-settings-daemon-devel hicolor-icon-theme intltool libglade2-devel libgnomekbd libnotify-devel perl-XML-Parser tcpd-devel update-desktop-files
|
BuildRequires: control-center2-devel fdupes gnome-common gnome-desktop-devel gnome-keyring-devel gnome-patch-translation gnome-settings-daemon-devel hicolor-icon-theme intltool libglade2-devel libgnomekbd libnotify-devel perl-XML-Parser tcpd-devel update-desktop-files
|
||||||
License: GPL v2 or later; LGPL v2.1 or later
|
License: GPL v2 or later; LGPL v2.1 or later
|
||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
Version: 2.23.6
|
Version: 2.23.90
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Session Tools for the GNOME 2.x Desktop
|
Summary: Session Tools for the GNOME 2.x Desktop
|
||||||
Url: http://www.gnome.org
|
Url: http://www.gnome.org
|
||||||
@ -50,6 +50,8 @@ Patch3: gnome-session-tile-ui.patch
|
|||||||
Patch4: gnome-session-gnome-wm-compiz-manager.patch
|
Patch4: gnome-session-gnome-wm-compiz-manager.patch
|
||||||
#PATCH-FIX-OPENSUSE gnome-session-bnc389137-splash-layout.patch bnc389137 vuntz@novell.com -- Improve layout with our splash screen.
|
#PATCH-FIX-OPENSUSE gnome-session-bnc389137-splash-layout.patch bnc389137 vuntz@novell.com -- Improve layout with our splash screen.
|
||||||
Patch5: gnome-session-bnc389137-splash-layout.patch
|
Patch5: gnome-session-bnc389137-splash-layout.patch
|
||||||
|
#PATCH-FIX-UPSTREAM gnome-session-launch-dbus.patch bgo546863 vuntz@novell.com -- Launch dbus if it's not already running
|
||||||
|
Patch6: gnome-session-launch-dbus.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Recommends: control-center2
|
Recommends: control-center2
|
||||||
Obsoletes: gnome-core
|
Obsoletes: gnome-core
|
||||||
@ -112,6 +114,7 @@ Authors:
|
|||||||
# %patch3 -p1
|
# %patch3 -p1
|
||||||
%patch4 -p1
|
%patch4 -p1
|
||||||
%patch5 -p1
|
%patch5 -p1
|
||||||
|
%patch6
|
||||||
#gnome-patch-translation-update
|
#gnome-patch-translation-update
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -159,7 +162,6 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%dir %{_libdir}/gnome-session
|
%dir %{_libdir}/gnome-session
|
||||||
%dir %{_libdir}/gnome-session/helpers
|
%dir %{_libdir}/gnome-session/helpers
|
||||||
%dir %{_datadir}/gnome-session
|
%dir %{_datadir}/gnome-session
|
||||||
%dir %{_datadir}/gnome/shutdown
|
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_datadir}/applications/session-properties.desktop
|
%{_datadir}/applications/session-properties.desktop
|
||||||
%{_datadir}/xsessions/*.desktop
|
%{_datadir}/xsessions/*.desktop
|
||||||
@ -167,7 +169,6 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/gnome/autostart/*
|
%{_datadir}/gnome/autostart/*
|
||||||
%{_datadir}/gnome-session/*.glade
|
%{_datadir}/gnome-session/*.glade
|
||||||
%{_libdir}/gnome-session/helpers/*
|
%{_libdir}/gnome-session/helpers/*
|
||||||
%{_datadir}/gnome/shutdown/*
|
|
||||||
%dir %{_datadir}/pixmaps/splash
|
%dir %{_datadir}/pixmaps/splash
|
||||||
%if %suse_version <= 1020
|
%if %suse_version <= 1020
|
||||||
%dir %{_datadir}/xsessions
|
%dir %{_datadir}/xsessions
|
||||||
@ -182,6 +183,37 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files lang -f %{name}-2.0.lang
|
%files lang -f %{name}-2.0.lang
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 21 2008 vuntz@novell.com
|
||||||
|
- Update to version 2.23.90:
|
||||||
|
+ Remove inhibitors for the client when it disconnects
|
||||||
|
+ Add log/debugging framework
|
||||||
|
+ Add signal handling framework
|
||||||
|
+ Add support for stopping/killing apps
|
||||||
|
+ Add command line option to override autostart dirs (used by
|
||||||
|
GDM)
|
||||||
|
+ Improve QES,ES,CES error handling
|
||||||
|
+ Remove gnome-login-sound (replaced by libcanberra-login-sound)
|
||||||
|
+ Rework the capplet dialogs to use gobject.
|
||||||
|
+ Make gnome-session-save tool use D-Bus API
|
||||||
|
+ Fixed bgo#521413, Fixes for sparse warnings in gnome-session
|
||||||
|
+ Fixed bgo#546410, splash no longer disappear
|
||||||
|
+ Fixed bgo#546439, missing include for pid_t
|
||||||
|
+ Fixed bgo#546722, Need bump dbus-glib dependency to 0.76
|
||||||
|
+ Fixed bgo#546896, crash wen passing null strings to
|
||||||
|
key_file_set_locale_string()
|
||||||
|
+ Fixed bgo#547069, [patch] Logout by sending XSMP
|
||||||
|
SaveYourselfRequest is broken
|
||||||
|
+ Fixed bgo#547443, crashes on desktop parsing errors
|
||||||
|
+ Fixed bgo#547619, gnome-session 2.23.6 doesn't compile on
|
||||||
|
Solaris
|
||||||
|
+ Fixed bgo#547769, part of gnome-wm potentially can break
|
||||||
|
+ Fixed bgo#548129, gnome-session-properties doesn't create
|
||||||
|
~/.config/autostart
|
||||||
|
+ Fixed bgo#548259, g-s thinks that metacity is 'not responding'
|
||||||
|
if it was --replace'd
|
||||||
|
+ Updated translations.
|
||||||
|
- Add gnome-session-launch-dbus.patch to make sure that dbus is
|
||||||
|
running (bgo#546863).
|
||||||
* Mon Aug 11 2008 maw@suse.de
|
* Mon Aug 11 2008 maw@suse.de
|
||||||
- Update to version 2.23.6:
|
- Update to version 2.23.6:
|
||||||
+ This release merges the D-Bus based branch in GNOME SVN into
|
+ This release merges the D-Bus based branch in GNOME SVN into
|
||||||
@ -248,7 +280,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Tue Jun 03 2008 rodrigo@suse.de
|
* Tue Jun 03 2008 rodrigo@suse.de
|
||||||
- Export SDL_AUDIODRIVER=pulse in gnome startup script to have
|
- Export SDL_AUDIODRIVER=pulse in gnome startup script to have
|
||||||
SDL applications use PulseAudio when in GNOME (bnc#394721)
|
SDL applications use PulseAudio when in GNOME (bnc#394721)
|
||||||
* Fri May 23 2008 sreeves@suse.de
|
* Sat May 24 2008 sreeves@suse.de
|
||||||
- Update the "gnome" script to not start gpk-update-icon on live install
|
- Update the "gnome" script to not start gpk-update-icon on live install
|
||||||
BNC #390658
|
BNC #390658
|
||||||
* Mon May 19 2008 sbrabec@suse.cz
|
* Mon May 19 2008 sbrabec@suse.cz
|
||||||
@ -285,7 +317,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
performance issue when launching new apps in GNOME on a default
|
performance issue when launching new apps in GNOME on a default
|
||||||
beta1 install -- extreme slowness can happen depending on the
|
beta1 install -- extreme slowness can happen depending on the
|
||||||
network setup. Fix bnc#385150, patch by Michael Meeks.
|
network setup. Fix bnc#385150, patch by Michael Meeks.
|
||||||
* Tue Apr 29 2008 vuntz@suse.de
|
* Wed Apr 30 2008 vuntz@suse.de
|
||||||
- Actually copy the right live-installer.desktop (instead of a
|
- Actually copy the right live-installer.desktop (instead of a
|
||||||
non-existing file) in gnome script so the installer icon appears
|
non-existing file) in gnome script so the installer icon appears
|
||||||
on the desktop.
|
on the desktop.
|
||||||
@ -320,7 +352,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
+ Updated translations
|
+ Updated translations
|
||||||
* Mon Mar 10 2008 sbrabec@suse.cz
|
* Mon Mar 10 2008 sbrabec@suse.cz
|
||||||
- Require bug-buddy and its bi-arch counterpart (bnc#354164).
|
- Require bug-buddy and its bi-arch counterpart (bnc#354164).
|
||||||
* Tue Mar 04 2008 maw@suse.de
|
* Wed Mar 05 2008 maw@suse.de
|
||||||
- Update to version 2.21.92:
|
- Update to version 2.21.92:
|
||||||
+ Require recent versions of gnome-keyring
|
+ Require recent versions of gnome-keyring
|
||||||
+ Correctly handle the env. variables given by gnome-keyring to
|
+ Correctly handle the env. variables given by gnome-keyring to
|
||||||
@ -343,7 +375,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Remove gnome-session-splash-screen.diff its obsoleted by bgo116814
|
- Remove gnome-session-splash-screen.diff its obsoleted by bgo116814
|
||||||
(originally bnc5780)
|
(originally bnc5780)
|
||||||
- Remove handling of SUSE Linux 10.0 in the spec, its EOL
|
- Remove handling of SUSE Linux 10.0 in the spec, its EOL
|
||||||
* Wed Jan 30 2008 maw@suse.de
|
* Thu Jan 31 2008 maw@suse.de
|
||||||
- Update to version 2.21.90:
|
- Update to version 2.21.90:
|
||||||
+ Set orientation with randr too (Luca Cavalli)
|
+ Set orientation with randr too (Luca Cavalli)
|
||||||
+ Fix warnings and plug leaks
|
+ Fix warnings and plug leaks
|
||||||
@ -353,7 +385,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
+ Change capplet title
|
+ Change capplet title
|
||||||
+ HIG fixes in the capplet
|
+ HIG fixes in the capplet
|
||||||
+ Updated translations.
|
+ Updated translations.
|
||||||
* Thu Nov 08 2007 hpj@suse.de
|
* Fri Nov 09 2007 hpj@suse.de
|
||||||
- Rename gnome-session-main-init.patch to
|
- Rename gnome-session-main-init.patch to
|
||||||
gnome-session-2.20.0-safe-a11y-startup.patch, and change it so
|
gnome-session-2.20.0-safe-a11y-startup.patch, and change it so
|
||||||
a11y is started up before the user session, but still after
|
a11y is started up before the user session, but still after
|
||||||
@ -367,15 +399,15 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Updated gnome script to detect live install user and create
|
- Updated gnome script to detect live install user and create
|
||||||
desktop entires in the ~/.config/autostart directory to disable
|
desktop entires in the ~/.config/autostart directory to disable
|
||||||
beagle and opensuse-updater applets. Bug #326801
|
beagle and opensuse-updater applets. Bug #326801
|
||||||
* Wed Sep 19 2007 cgaisford@novell.com
|
* Thu Sep 20 2007 cgaisford@novell.com
|
||||||
- Updated gnome script to create live install desktop file if the
|
- Updated gnome script to create live install desktop file if the
|
||||||
system is booted into a live install configuration. Also depends
|
system is booted into a live install configuration. Also depends
|
||||||
on an update to the gnome2-SuSE package which contains the desktop
|
on an update to the gnome2-SuSE package which contains the desktop
|
||||||
file. Bug #310543
|
file. Bug #310543
|
||||||
* Tue Sep 18 2007 mauro@suse.de
|
* Wed Sep 19 2007 mauro@suse.de
|
||||||
- Update to version 2.20.0
|
- Update to version 2.20.0
|
||||||
+ Updated translations
|
+ Updated translations
|
||||||
* Fri Sep 14 2007 cgaisford@novell.com
|
* Sat Sep 15 2007 cgaisford@novell.com
|
||||||
- Modified the gnome script to copy the SuSE.desktop file to the
|
- Modified the gnome script to copy the SuSE.desktop file to the
|
||||||
desktop which points to the greeter app #300773
|
desktop which points to the greeter app #300773
|
||||||
* Thu Sep 13 2007 jpr@suse.de
|
* Thu Sep 13 2007 jpr@suse.de
|
||||||
@ -389,10 +421,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Update to versino 2.19.92:
|
- Update to versino 2.19.92:
|
||||||
+ Fix compiz support in gnome-wm
|
+ Fix compiz support in gnome-wm
|
||||||
+ Updated translations.
|
+ Updated translations.
|
||||||
* Fri Sep 07 2007 lewing@suse.de
|
* Sat Sep 08 2007 lewing@suse.de
|
||||||
- Copy GnomeOnlineHelp.desktop to ~/Desktop the first time 10.3
|
- Copy GnomeOnlineHelp.desktop to ~/Desktop the first time 10.3
|
||||||
runs. Part of bnc #300773
|
runs. Part of bnc #300773
|
||||||
* Thu Sep 06 2007 cgaisford@novell.com
|
* Fri Sep 07 2007 cgaisford@novell.com
|
||||||
- Created a patch to fix login and logout sounds in gnome-session
|
- Created a patch to fix login and logout sounds in gnome-session
|
||||||
Novell bug 294396 and bugzilla.gnome.org #466458
|
Novell bug 294396 and bugzilla.gnome.org #466458
|
||||||
* Tue Sep 04 2007 maw@suse.de
|
* Tue Sep 04 2007 maw@suse.de
|
||||||
@ -402,7 +434,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Fri Aug 31 2007 maw@suse.de
|
* Fri Aug 31 2007 maw@suse.de
|
||||||
- Update to version 2.19.90:
|
- Update to version 2.19.90:
|
||||||
+ Updated translations.
|
+ Updated translations.
|
||||||
* Tue Aug 28 2007 cgaisford@novell.com
|
* Wed Aug 29 2007 cgaisford@novell.com
|
||||||
- Further testing showed that the a11y needs to be done much lower
|
- Further testing showed that the a11y needs to be done much lower
|
||||||
in the loop so I've moved it down right before the gtk-main
|
in the loop so I've moved it down right before the gtk-main
|
||||||
* Mon Aug 27 2007 cgaisford@novell.com
|
* Mon Aug 27 2007 cgaisford@novell.com
|
||||||
@ -414,13 +446,13 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
if they are not available. Fix for Novell Bug 238299
|
if they are not available. Fix for Novell Bug 238299
|
||||||
- Included patch to fix up load time that is pending review
|
- Included patch to fix up load time that is pending review
|
||||||
upstream. I'll add it to the spec file once approved
|
upstream. I'll add it to the spec file once approved
|
||||||
* Tue Aug 07 2007 maw@suse.de
|
* Wed Aug 08 2007 maw@suse.de
|
||||||
- Use %%fdupes
|
- Use %%fdupes
|
||||||
- Split off a -lang subpackage.
|
- Split off a -lang subpackage.
|
||||||
* Fri Aug 03 2007 dreveman@suse.de
|
* Sat Aug 04 2007 dreveman@suse.de
|
||||||
- Update for compiz 0.5.2, which need glib plugin to be loaded
|
- Update for compiz 0.5.2, which need glib plugin to be loaded
|
||||||
before gconf plugin.
|
before gconf plugin.
|
||||||
* Thu Aug 02 2007 cgaisford@suse.de
|
* Fri Aug 03 2007 cgaisford@suse.de
|
||||||
- Fixed up the tile-ui patch to work with the new gnome
|
- Fixed up the tile-ui patch to work with the new gnome
|
||||||
* Thu Aug 02 2007 maw@suse.de
|
* Thu Aug 02 2007 maw@suse.de
|
||||||
- Update to version 2.19.6:
|
- Update to version 2.19.6:
|
||||||
@ -526,7 +558,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Yang Zhang (zh_CN)
|
* Yang Zhang (zh_CN)
|
||||||
* Wed Apr 04 2007 sbrabec@suse.cz
|
* Wed Apr 04 2007 sbrabec@suse.cz
|
||||||
- Session start script (gnome) cleanup (#254439).
|
- Session start script (gnome) cleanup (#254439).
|
||||||
* Tue Apr 03 2007 jhargadon@suse.de
|
* Wed Apr 04 2007 jhargadon@suse.de
|
||||||
- specfile cleanup (#255906)
|
- specfile cleanup (#255906)
|
||||||
* Mon Mar 19 2007 jpr@suse.de
|
* Mon Mar 19 2007 jpr@suse.de
|
||||||
- Update to 2.18.0
|
- Update to 2.18.0
|
||||||
@ -540,7 +572,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Translations
|
* Translations
|
||||||
* Wed Mar 14 2007 sbrabec@suse.cz
|
* Wed Mar 14 2007 sbrabec@suse.cz
|
||||||
- Fixed at-spi-registryd path (#254403).
|
- Fixed at-spi-registryd path (#254403).
|
||||||
* Thu Mar 08 2007 maw@suse.de
|
* Fri Mar 09 2007 maw@suse.de
|
||||||
- Update to version 2.17.91.
|
- Update to version 2.17.91.
|
||||||
Session Properties Dialog
|
Session Properties Dialog
|
||||||
* Update categories in the .desktop file for the new control center
|
* Update categories in the .desktop file for the new control center
|
||||||
@ -611,19 +643,19 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Use Program instead of Command in the capplet (Tom Tromey)
|
* Use Program instead of Command in the capplet (Tom Tromey)
|
||||||
* Fri Mar 02 2007 sbrabec@suse.cz
|
* Fri Mar 02 2007 sbrabec@suse.cz
|
||||||
- Do not own /usr/share/xsessions (#229172).
|
- Do not own /usr/share/xsessions (#229172).
|
||||||
* Mon Feb 12 2007 cgaisford@novell.com
|
* Tue Feb 13 2007 cgaisford@novell.com
|
||||||
- updated the UI from changes make in SLED.
|
- updated the UI from changes make in SLED.
|
||||||
* Sun Jan 07 2007 sbrabec@suse.cz
|
* Mon Jan 08 2007 sbrabec@suse.cz
|
||||||
- Prefix changed to /usr.
|
- Prefix changed to /usr.
|
||||||
- Spec file cleanup.
|
- Spec file cleanup.
|
||||||
* Fri Dec 22 2006 federico@novell.com
|
* Sat Dec 23 2006 federico@novell.com
|
||||||
- Removed the part of /usr/bin/gnome that overwrites the
|
- Removed the part of /usr/bin/gnome that overwrites the
|
||||||
/desktop/gnome/font_rendering/dpi setting in GConf upon the user's
|
/desktop/gnome/font_rendering/dpi setting in GConf upon the user's
|
||||||
first login. With an updated control-center2 package,
|
first login. With an updated control-center2 package,
|
||||||
gnome-settings-daemon will take care of figuring out the right DPI
|
gnome-settings-daemon will take care of figuring out the right DPI
|
||||||
value. Fixes the gnome-session part of
|
value. Fixes the gnome-session part of
|
||||||
https://bugzilla.novell.com/show_bug.cgi?id=217790.
|
https://bugzilla.novell.com/show_bug.cgi?id=217790.
|
||||||
* Sat Oct 14 2006 danw@suse.de
|
* Sun Oct 15 2006 danw@suse.de
|
||||||
- Remove dead patches
|
- Remove dead patches
|
||||||
- Update and re-enable gnome-session-remove-dns-warning.patch
|
- Update and re-enable gnome-session-remove-dns-warning.patch
|
||||||
* Fri Oct 13 2006 dreveman@suse.de
|
* Fri Oct 13 2006 dreveman@suse.de
|
||||||
@ -641,7 +673,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- update to version 2.16.0
|
- update to version 2.16.0
|
||||||
- Updated splash screen
|
- Updated splash screen
|
||||||
- translation updates
|
- translation updates
|
||||||
* Wed Aug 30 2006 jhargadon@suse.de
|
* Thu Aug 31 2006 jhargadon@suse.de
|
||||||
- update to version 2.15.92
|
- update to version 2.15.92
|
||||||
- Fix crash caused by debug output on Solaris
|
- Fix crash caused by debug output on Solaris
|
||||||
- translation updates
|
- translation updates
|
||||||
@ -660,27 +692,27 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Fix edition of startup programs containing a space in a command line
|
- Fix edition of startup programs containing a space in a command line
|
||||||
argument
|
argument
|
||||||
- Add gnome-keyring dependency
|
- Add gnome-keyring dependency
|
||||||
* Tue Aug 01 2006 danw@suse.de
|
* Wed Aug 02 2006 danw@suse.de
|
||||||
- If the session explicitly specifies metacity or compiz, but
|
- If the session explicitly specifies metacity or compiz, but
|
||||||
the "wrong" X server for that wm is running, switch back to
|
the "wrong" X server for that wm is running, switch back to
|
||||||
gnome-wm. #180506
|
gnome-wm. #180506
|
||||||
* Fri Jun 16 2006 danw@suse.de
|
* Fri Jun 16 2006 danw@suse.de
|
||||||
- Pass --replace to compiz and gnome-window-decorator in case the
|
- Pass --replace to compiz and gnome-window-decorator in case the
|
||||||
copies run by gdm don't exit properly. #185296
|
copies run by gdm don't exit properly. #185296
|
||||||
* Mon Jun 12 2006 rodrigo@suse.de
|
* Tue Jun 13 2006 rodrigo@suse.de
|
||||||
- Added patch to create ~/.config/autostart before starting the
|
- Added patch to create ~/.config/autostart before starting the
|
||||||
migration from previous versions (#169509)
|
migration from previous versions (#169509)
|
||||||
* Fri Jun 02 2006 gekker@suse.de
|
* Fri Jun 02 2006 gekker@suse.de
|
||||||
- Fix pager on upgrade (#181264)
|
- Fix pager on upgrade (#181264)
|
||||||
* Wed May 31 2006 jpr@suse.de
|
* Thu Jun 01 2006 jpr@suse.de
|
||||||
- Don't run the migration script for new users (#179332)
|
- Don't run the migration script for new users (#179332)
|
||||||
* Wed May 24 2006 joeshaw@suse.de
|
* Thu May 25 2006 joeshaw@suse.de
|
||||||
- Fix the gnome script to not break when setting the background on
|
- Fix the gnome script to not break when setting the background on
|
||||||
multihead setups. Patch from Erik Jacobsen. (bnc #178388)
|
multihead setups. Patch from Erik Jacobsen. (bnc #178388)
|
||||||
* Sun May 21 2006 jpr@suse.de
|
* Sun May 21 2006 jpr@suse.de
|
||||||
- Reset the user's UI if upgrading from NLD9/SLES9 to SLED10, leave ui
|
- Reset the user's UI if upgrading from NLD9/SLES9 to SLED10, leave ui
|
||||||
for SLES10 upgrades (#174123)
|
for SLES10 upgrades (#174123)
|
||||||
* Fri May 12 2006 hpj@suse.de
|
* Sat May 13 2006 hpj@suse.de
|
||||||
- Update keyring unlockage patch to try both CASA's
|
- Update keyring unlockage patch to try both CASA's
|
||||||
Gnome_Keyring_Default and Desktop passwords. Part of fix for
|
Gnome_Keyring_Default and Desktop passwords. Part of fix for
|
||||||
Novell bug #174093.
|
Novell bug #174093.
|
||||||
@ -691,7 +723,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Update gnome-wm to pick metacity or compiz based on whether it's
|
- Update gnome-wm to pick metacity or compiz based on whether it's
|
||||||
actually running under Xgl or not, regardless of what
|
actually running under Xgl or not, regardless of what
|
||||||
/etc/sysconfig/displaymanager says. Fixes Xnest logins. #170839.
|
/etc/sysconfig/displaymanager says. Fixes Xnest logins. #170839.
|
||||||
* Tue May 02 2006 joeshaw@suse.de
|
* Wed May 03 2006 joeshaw@suse.de
|
||||||
- Don't write out a font using raw XML to the gconf database,
|
- Don't write out a font using raw XML to the gconf database,
|
||||||
that's wrong and evil. Instead, try to set the desktop's DPI
|
that's wrong and evil. Instead, try to set the desktop's DPI
|
||||||
value using gconftool-2. (bnc #171096)
|
value using gconftool-2. (bnc #171096)
|
||||||
@ -704,14 +736,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Thu Apr 13 2006 sbrabec@suse.cz
|
* Thu Apr 13 2006 sbrabec@suse.cz
|
||||||
- Call %%suse_update_desktop_file.
|
- Call %%suse_update_desktop_file.
|
||||||
- Use new control-center Categories instead of old ones.
|
- Use new control-center Categories instead of old ones.
|
||||||
* Fri Apr 07 2006 danw@suse.de
|
* Sat Apr 08 2006 danw@suse.de
|
||||||
- Patch gnome-wm to prefer compiz when Xgl is running
|
- Patch gnome-wm to prefer compiz when Xgl is running
|
||||||
* Wed Apr 05 2006 hpj@suse.de
|
* Wed Apr 05 2006 hpj@suse.de
|
||||||
- Fix keyring unlock patch to use g_strlcpy() correctly again.
|
- Fix keyring unlock patch to use g_strlcpy() correctly again.
|
||||||
Fixes bug #159593 together with a CASA fix.
|
Fixes bug #159593 together with a CASA fix.
|
||||||
* Fri Mar 31 2006 rodrigo@suse.de
|
* Fri Mar 31 2006 rodrigo@suse.de
|
||||||
- Added missing "/" for /etc/xdg/autostart searching (#161322)
|
- Added missing "/" for /etc/xdg/autostart searching (#161322)
|
||||||
* Mon Mar 27 2006 jpr@suse.de
|
* Tue Mar 28 2006 jpr@suse.de
|
||||||
- Handle only shipping 2 sizes of backgrounds
|
- Handle only shipping 2 sizes of backgrounds
|
||||||
* Tue Mar 21 2006 rodrigo@suse.de
|
* Tue Mar 21 2006 rodrigo@suse.de
|
||||||
- Added support for /etc/xdg/autostart directory, so that
|
- Added support for /etc/xdg/autostart directory, so that
|
||||||
@ -728,7 +760,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Removed gnome-session-default-applications.patch, all needed
|
- Removed gnome-session-default-applications.patch, all needed
|
||||||
applications are now started, if installed, via the autostart
|
applications are now started, if installed, via the autostart
|
||||||
mechanism.
|
mechanism.
|
||||||
* Mon Mar 06 2006 rodrigo@suse.de
|
* Tue Mar 07 2006 rodrigo@suse.de
|
||||||
- Fixed support for multiple system autostart directories.
|
- Fixed support for multiple system autostart directories.
|
||||||
- Disable GUI operations for system-wide files (#154755).
|
- Disable GUI operations for system-wide files (#154755).
|
||||||
* Thu Mar 02 2006 rodrigo@suse.de
|
* Thu Mar 02 2006 rodrigo@suse.de
|
||||||
@ -736,7 +768,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Use g_strlcpy instead of strcpy when copying passwords.
|
- Use g_strlcpy instead of strcpy when copying passwords.
|
||||||
* Wed Feb 22 2006 rodrigo@suse.de
|
* Wed Feb 22 2006 rodrigo@suse.de
|
||||||
- Added gnome-session-gsd-early-start.patch that fixes #150256.
|
- Added gnome-session-gsd-early-start.patch that fixes #150256.
|
||||||
* Thu Feb 16 2006 rodrigo@suse.de
|
* Fri Feb 17 2006 rodrigo@suse.de
|
||||||
- Don't try to remove non-existing files (#145870)
|
- Don't try to remove non-existing files (#145870)
|
||||||
* Thu Feb 16 2006 rodrigo@suse.de
|
* Thu Feb 16 2006 rodrigo@suse.de
|
||||||
- Updated gnome-session-suspend-patch to make suspend work as
|
- Updated gnome-session-suspend-patch to make suspend work as
|
||||||
@ -749,7 +781,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Remove the beagled invocation from the /usr/X11R6/bin/gnome
|
- Remove the beagled invocation from the /usr/X11R6/bin/gnome
|
||||||
shell script; it gets invoked through the new autostart
|
shell script; it gets invoked through the new autostart
|
||||||
mechanism now. (bnc #150041)
|
mechanism now. (bnc #150041)
|
||||||
* Wed Feb 08 2006 rodrigo@suse.de
|
* Thu Feb 09 2006 rodrigo@suse.de
|
||||||
- Updated gnome-session-suspend.patch to not exit the X session
|
- Updated gnome-session-suspend.patch to not exit the X session
|
||||||
when suspend is selected on the logout dialog (117491)
|
when suspend is selected on the logout dialog (117491)
|
||||||
* Wed Feb 08 2006 joeshaw@suse.de
|
* Wed Feb 08 2006 joeshaw@suse.de
|
||||||
@ -762,10 +794,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Mon Feb 06 2006 hpj@suse.de
|
* Mon Feb 06 2006 hpj@suse.de
|
||||||
- Fixed gnome-keyring-unlock patch to give correct soname for
|
- Fixed gnome-keyring-unlock patch to give correct soname for
|
||||||
casa.
|
casa.
|
||||||
* Sun Feb 05 2006 hpj@suse.de
|
* Mon Feb 06 2006 hpj@suse.de
|
||||||
- Updated gnome-keyring-unlock patch with dlopen hack from CASA
|
- Updated gnome-keyring-unlock patch with dlopen hack from CASA
|
||||||
team. I have no idea why this is required.
|
team. I have no idea why this is required.
|
||||||
* Sun Feb 05 2006 ro@suse.de
|
* Mon Feb 06 2006 ro@suse.de
|
||||||
- make it build on x86_64 (adding libdir to CASA unlock patch)
|
- make it build on x86_64 (adding libdir to CASA unlock patch)
|
||||||
* Fri Feb 03 2006 rodrigo@suse.de
|
* Fri Feb 03 2006 rodrigo@suse.de
|
||||||
- Added gnome-session-rdesktop.diff, that fixes hang on login when
|
- Added gnome-session-rdesktop.diff, that fixes hang on login when
|
||||||
@ -778,7 +810,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Sat Jan 28 2006 hpj@suse.de
|
* Sat Jan 28 2006 hpj@suse.de
|
||||||
- Added patch to unlock default GNOME keyring using the CASA
|
- Added patch to unlock default GNOME keyring using the CASA
|
||||||
password, optionally creating it if it doesn't exist.
|
password, optionally creating it if it doesn't exist.
|
||||||
* Thu Jan 26 2006 hpj@suse.de
|
* Fri Jan 27 2006 hpj@suse.de
|
||||||
- Set the ICEAUTHORITY env var so programs running as root can
|
- Set the ICEAUTHORITY env var so programs running as root can
|
||||||
get to the cookies. Eliminates hangs on logout.
|
get to the cookies. Eliminates hangs on logout.
|
||||||
* Wed Jan 25 2006 mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
@ -800,7 +832,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Updated autostart patch that includes code to migrate from the
|
- Updated autostart patch that includes code to migrate from the
|
||||||
old ~/.gnome2/session-manual to the .desktop file-based thing
|
old ~/.gnome2/session-manual to the .desktop file-based thing
|
||||||
in the user's home directory.
|
in the user's home directory.
|
||||||
* Sat Jan 07 2006 dreveman@suse.de
|
* Sun Jan 08 2006 dreveman@suse.de
|
||||||
- Improved logout effect patch
|
- Improved logout effect patch
|
||||||
* Thu Jan 05 2006 rodrigo@suse.de
|
* Thu Jan 05 2006 rodrigo@suse.de
|
||||||
- Small fix to previous patch to avoid crash.
|
- Small fix to previous patch to avoid crash.
|
||||||
@ -866,9 +898,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Update splash for 10.0
|
- Update splash for 10.0
|
||||||
* Tue Aug 09 2005 rodrigo@suse.de
|
* Tue Aug 09 2005 rodrigo@suse.de
|
||||||
- Update to 2.11.91, which includes fix for #102652
|
- Update to 2.11.91, which includes fix for #102652
|
||||||
* Fri Aug 05 2005 gekker@suse.de
|
* Sat Aug 06 2005 gekker@suse.de
|
||||||
- Start gnome-volume-manager with session
|
- Start gnome-volume-manager with session
|
||||||
* Wed Aug 03 2005 gekker@suse.de
|
* Thu Aug 04 2005 gekker@suse.de
|
||||||
- Start beagle by default, disable with ~/.dontrunbeagle
|
- Start beagle by default, disable with ~/.dontrunbeagle
|
||||||
* Tue Aug 02 2005 gekker@suse.de
|
* Tue Aug 02 2005 gekker@suse.de
|
||||||
- Update to 2.11.90
|
- Update to 2.11.90
|
||||||
@ -887,7 +919,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Don't run beagle unless ~/.runbeagle exists (#74029)
|
- Don't run beagle unless ~/.runbeagle exists (#74029)
|
||||||
* Sat Mar 19 2005 jody@suse.de
|
* Sat Mar 19 2005 jody@suse.de
|
||||||
- Enable suspend if it is available. (#73000)
|
- Enable suspend if it is available. (#73000)
|
||||||
* Thu Mar 17 2005 clahey@suse.de
|
* Fri Mar 18 2005 clahey@suse.de
|
||||||
- Patch fixes freeze on login.
|
- Patch fixes freeze on login.
|
||||||
* Wed Mar 16 2005 sbrabec@suse.cz
|
* Wed Mar 16 2005 sbrabec@suse.cz
|
||||||
- Fixed gnome-session-desktop-file.patch (#73047).
|
- Fixed gnome-session-desktop-file.patch (#73047).
|
||||||
@ -898,7 +930,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Mon Mar 07 2005 gekker@suse.de
|
* Mon Mar 07 2005 gekker@suse.de
|
||||||
- mv suseplugger to default-apps patch
|
- mv suseplugger to default-apps patch
|
||||||
- launch netapplet, resapplet, and best on startup
|
- launch netapplet, resapplet, and best on startup
|
||||||
* Fri Feb 25 2005 gekker@suse.de
|
* Sat Feb 26 2005 gekker@suse.de
|
||||||
- Add launch wrapper to launch beagled if installed in file gnome
|
- Add launch wrapper to launch beagled if installed in file gnome
|
||||||
* Wed Feb 09 2005 sbrabec@suse.cz
|
* Wed Feb 09 2005 sbrabec@suse.cz
|
||||||
- Added session desktop file.
|
- Added session desktop file.
|
||||||
@ -929,7 +961,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Fri Sep 10 2004 hhetter@suse.de
|
* Fri Sep 10 2004 hhetter@suse.de
|
||||||
- run use_default_session again to make the 9.2 distribution
|
- run use_default_session again to make the 9.2 distribution
|
||||||
wallpapers accessible
|
wallpapers accessible
|
||||||
* Thu Sep 09 2004 federico@ximian.com
|
* Fri Sep 10 2004 federico@ximian.com
|
||||||
- Added gnome-session-remove-purge-timeout.diff, to fix
|
- Added gnome-session-remove-purge-timeout.diff, to fix
|
||||||
http://bugzilla.gnome.org/show_bug.cgi?id=151664
|
http://bugzilla.gnome.org/show_bug.cgi?id=151664
|
||||||
- Changed gnome-session-suseplugger.patch to run suseplugger with
|
- Changed gnome-session-suseplugger.patch to run suseplugger with
|
||||||
@ -944,22 +976,22 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Fixes bug #61567
|
- Fixes bug #61567
|
||||||
kdm shows 'Reboot' and 'Shutdown' options at the time
|
kdm shows 'Reboot' and 'Shutdown' options at the time
|
||||||
of logout.
|
of logout.
|
||||||
* Thu Aug 05 2004 clahey@suse.de
|
* Fri Aug 06 2004 clahey@suse.de
|
||||||
- Added gnome-session-remove-dns-warning.patch from Federico.
|
- Added gnome-session-remove-dns-warning.patch from Federico.
|
||||||
* Fri Jul 16 2004 shprasad@suse.de
|
* Fri Jul 16 2004 shprasad@suse.de
|
||||||
- Fixes bug #59918
|
- Fixes bug #59918
|
||||||
Hides the splash-screen once the difault setting gets loaded.
|
Hides the splash-screen once the difault setting gets loaded.
|
||||||
* Thu Jul 08 2004 sbrabec@suse.cz
|
* Thu Jul 08 2004 sbrabec@suse.cz
|
||||||
- Added DESKTOP_LAUNCH patch from Jan Holesovsky.
|
- Added DESKTOP_LAUNCH patch from Jan Holesovsky.
|
||||||
* Fri Jun 18 2004 dave@suse.de
|
* Sat Jun 19 2004 dave@suse.de
|
||||||
- Don't set the wallpaper or font in the gnome startup script.
|
- Don't set the wallpaper or font in the gnome startup script.
|
||||||
* Fri Jun 11 2004 clahey@suse.de
|
* Sat Jun 12 2004 clahey@suse.de
|
||||||
- Added gnome-session-use-gdmctl.patch.
|
- Added gnome-session-use-gdmctl.patch.
|
||||||
* Thu Jun 03 2004 clahey@suse.de
|
* Fri Jun 04 2004 clahey@suse.de
|
||||||
- Switch to Novell session splash screen.
|
- Switch to Novell session splash screen.
|
||||||
* Wed Jun 02 2004 mibarra@suse.de
|
* Thu Jun 03 2004 mibarra@suse.de
|
||||||
- Make GNOME use suseplugger
|
- Make GNOME use suseplugger
|
||||||
* Tue May 11 2004 clahey@suse.de
|
* Wed May 12 2004 clahey@suse.de
|
||||||
- Added gnome-session-2.0.5-dithering.patch to use MAX dithering.
|
- Added gnome-session-2.0.5-dithering.patch to use MAX dithering.
|
||||||
- Added gnome-session-desktop-file.patch to make gnome-session show
|
- Added gnome-session-desktop-file.patch to make gnome-session show
|
||||||
up in control-center.
|
up in control-center.
|
||||||
@ -1018,7 +1050,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Removed distribution desktop files.
|
- Removed distribution desktop files.
|
||||||
* Wed May 28 2003 sbrabec@suse.cz
|
* Wed May 28 2003 sbrabec@suse.cz
|
||||||
- Compress manpages.
|
- Compress manpages.
|
||||||
* Tue May 27 2003 ro@suse.de
|
* Wed May 28 2003 ro@suse.de
|
||||||
- added manpages to filelist
|
- added manpages to filelist
|
||||||
* Tue Mar 18 2003 sbrabec@suse.cz
|
* Tue Mar 18 2003 sbrabec@suse.cz
|
||||||
- Variables already set in profile files removed from session startup
|
- Variables already set in profile files removed from session startup
|
||||||
@ -1055,7 +1087,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Added libjpeg to neededforbuild.
|
- Added libjpeg to neededforbuild.
|
||||||
* Thu Nov 28 2002 hhetter@suse.de
|
* Thu Nov 28 2002 hhetter@suse.de
|
||||||
- updated to version 2.0.9 [GNOME 2.0.3]
|
- updated to version 2.0.9 [GNOME 2.0.3]
|
||||||
* Mon Nov 11 2002 ro@suse.de
|
* Tue Nov 12 2002 ro@suse.de
|
||||||
- changed neededforbuild <xf86 xdevel> to <x-devel-packages>
|
- changed neededforbuild <xf86 xdevel> to <x-devel-packages>
|
||||||
* Wed Nov 06 2002 hhetter@suse.de
|
* Wed Nov 06 2002 hhetter@suse.de
|
||||||
- use correct kde-datadir
|
- use correct kde-datadir
|
||||||
@ -1105,7 +1137,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
* Thu Jun 20 2002 hhetter@suse.de
|
* Thu Jun 20 2002 hhetter@suse.de
|
||||||
- updated to version 2.0.1
|
- updated to version 2.0.1
|
||||||
- don't install schemas while make install
|
- don't install schemas while make install
|
||||||
* Sun Jun 16 2002 ro@suse.de
|
* Mon Jun 17 2002 ro@suse.de
|
||||||
- use libpng-devel-packages in neededforbuild
|
- use libpng-devel-packages in neededforbuild
|
||||||
* Fri Jun 14 2002 hhetter@suse.de
|
* Fri Jun 14 2002 hhetter@suse.de
|
||||||
- provide schema file
|
- provide schema file
|
||||||
|
Loading…
Reference in New Issue
Block a user