summaryrefslogtreecommitdiffstats
path: root/x11/gnomesession/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-11-08 07:20:22 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-11-08 07:20:22 +0800
commitecc692c609745ed2590ee410fcf60f8fc5577767 (patch)
tree804fc05006975ef53fbc334db1f4ffa42ff9359f /x11/gnomesession/files
parent3a142666db7f6854784739853cd212ba74b8b6bd (diff)
downloadmarcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.gz
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.bz2
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.lz
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.xz
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.tar.zst
marcuscom-ports-ecc692c609745ed2590ee410fcf60f8fc5577767.zip
Remove these ports now that they have been merged into the ports tree.
Next stop, GNOME 2.9! git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3045 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnomesession/files')
-rw-r--r--x11/gnomesession/files/patch-gnome-session_Makefile.in11
-rw-r--r--x11/gnomesession/files/patch-gnome-session_logout.c36
-rw-r--r--x11/gnomesession/files/patch-gnome-session_manager.c14
3 files changed, 0 insertions, 61 deletions
diff --git a/x11/gnomesession/files/patch-gnome-session_Makefile.in b/x11/gnomesession/files/patch-gnome-session_Makefile.in
deleted file mode 100644
index 2b05e8c00..000000000
--- a/x11/gnomesession/files/patch-gnome-session_Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- gnome-session/Makefile.in.orig Mon May 31 14:34:48 2004
-+++ gnome-session/Makefile.in Mon May 31 14:34:57 2004
-@@ -153,7 +153,7 @@
-
- NULL =
-
--defaultdir = $(datadir)/gnome
-+defaultdir = $(datadir)
-
- INCLUDES = $(GNOME_SESSION_CFLAGS) $(STANDARD_PROPERTIES_CFLAGS) $(WARN_CFLAGS) $(DISABLE_DEPRECATED_CFLAGS) -DGNOMELOCALEDIR=\""$(prefix)/${DATADIRNAME}/locale\"" -DGCONF_SANITY_CHECK=\""$(GCONF_SANITY_CHECK)"\" -DGNOME_KEYRING_DAEMON=\""$(GNOME_KEYRING_DAEMON)"\" -DGNOME_ICONDIR=\""$(datadir)/pixmaps\"" -DREBOOT_COMMAND=\""$(REBOOT_COMMAND)\"" -DHALT_COMMAND=\""$(HALT_COMMAND)\"" -DRSH_COMMAND=\""$(RSH_COMMAND)\"" -DGCONFTOOL_CMD=\""$(GCONFTOOL)\"" -DDEFAULTDIR="\"$(defaultdir)\"" -DESD_SERVER="\"$(ESD_SERVER)\""
-
diff --git a/x11/gnomesession/files/patch-gnome-session_logout.c b/x11/gnomesession/files/patch-gnome-session_logout.c
deleted file mode 100644
index f82aefdc7..000000000
--- a/x11/gnomesession/files/patch-gnome-session_logout.c
+++ /dev/null
@@ -1,36 +0,0 @@
---- gnome-session/logout.c.orig Sun May 9 15:45:34 2004
-+++ gnome-session/logout.c Sun May 9 15:48:29 2004
-@@ -37,12 +37,20 @@
-
- static gchar *halt_command[] =
- {
-+#ifdef __FreeBSD__
-+ HALT_COMMAND, "-p", "now", NULL
-+#else
- HALT_COMMAND, NULL
-+#endif
- };
-
- static gchar *reboot_command[] =
- {
-+#ifdef __FreeBSD__
-+ REBOOT_COMMAND, "-r", "now", NULL
-+#else
- REBOOT_COMMAND, NULL
-+#endif
- };
-
- /* What action to take upon shutdown */
-@@ -401,8 +409,12 @@
- */
- s = g_strconcat ("/var/lock/console/", g_get_user_name (), NULL);
- t = g_strconcat ("/var/run/console/", g_get_user_name (), NULL);
-+#ifndef __FreeBSD__
- if (((geteuid () == 0) || g_file_exists (t) || g_file_exists(s)) &&
- access (halt_command[0], X_OK) == 0)
-+#else
-+ if (access (halt_command[0], X_OK) == 0)
-+#endif
- {
- GtkWidget *title, *spacer;
- GtkWidget *action_vbox, *hbox;
diff --git a/x11/gnomesession/files/patch-gnome-session_manager.c b/x11/gnomesession/files/patch-gnome-session_manager.c
deleted file mode 100644
index 7e56843ac..000000000
--- a/x11/gnomesession/files/patch-gnome-session_manager.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- gnome-session/manager.c.orig Tue Oct 12 14:04:26 2004
-+++ gnome-session/manager.c Tue Oct 12 14:05:51 2004
-@@ -1042,9 +1042,10 @@
-
- if (interact_ping_replied)
- {
-+ IceConn ice_conn;
- gsm_verbose ("have interact_list; sending ping with data to client %p\n", client);
- print_client (client);
-- IceConn ice_conn = SmsGetIceConnection (client->connection);
-+ ice_conn = SmsGetIceConnection (client->connection);
- interact_ping_replied = FALSE;
- IcePing (ice_conn, interact_ping_reply, (IcePointer)client);
- }