summaryrefslogtreecommitdiffstats
path: root/x11-wm/metacity/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-01-12 01:51:34 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2009-01-12 01:51:34 +0800
commit2f836c64a2940e1460834c4085ba6d418001bf17 (patch)
tree81909a3bce2caf57600151b32c8dcb1e7735c28c /x11-wm/metacity/files
parent262752d178a4a70c9cd941f23ee5052d0e8968d9 (diff)
downloadmarcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.tar
marcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.tar.gz
marcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.tar.bz2
marcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.tar.lz
marcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.tar.xz
marcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.tar.zst
marcuscom-ports-2f836c64a2940e1460834c4085ba6d418001bf17.zip
Remove these ports now that they have been merged into the FreeBSD ports
tree. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11869 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-wm/metacity/files')
-rw-r--r--x11-wm/metacity/files/patch-configure11
-rw-r--r--x11-wm/metacity/files/patch-src_core_main.c51
-rw-r--r--x11-wm/metacity/files/patch-src_core_util.c11
3 files changed, 0 insertions, 73 deletions
diff --git a/x11-wm/metacity/files/patch-configure b/x11-wm/metacity/files/patch-configure
deleted file mode 100644
index 155c6ecfc..000000000
--- a/x11-wm/metacity/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig 2008-09-23 00:55:36.000000000 -0400
-+++ configure 2008-09-23 00:55:52.000000000 -0400
-@@ -31530,7 +31530,7 @@ metacity-$VERSION:
- "
-
- METACITY_MINOR_VERSION=24
--if test $(( $(echo $METACITY_MINOR_VERSION) %2)) == "1"; then
-+if test $(( $(echo $METACITY_MINOR_VERSION) %2)) = "1"; then
- stable_version=$(( ($METACITY_MINOR_VERSION / 2) * 2))
- echo "This is the UNSTABLE branch of metacity"
- echo -n "Use 2.$stable_version.x for stable "
diff --git a/x11-wm/metacity/files/patch-src_core_main.c b/x11-wm/metacity/files/patch-src_core_main.c
deleted file mode 100644
index db73c224f..000000000
--- a/x11-wm/metacity/files/patch-src_core_main.c
+++ /dev/null
@@ -1,51 +0,0 @@
---- src/core/main.c.orig 2008-10-08 00:10:39.000000000 -0400
-+++ src/core/main.c 2008-10-08 00:18:44.000000000 -0400
-@@ -312,6 +312,23 @@ void meta_select_display (gchar *display
- /* DO NOT FREE envVar, putenv() sucks */
- putenv (envVar);
- }
-+
-+static
-+void meta_finalize (void)
-+{
-+ meta_display_close (meta_get_display (),
-+ CurrentTime); /* I doubt correct timestamps matter here */
-+
-+ meta_session_shutdown ();
-+}
-+
-+static
-+void sigterm_handler (int signum)
-+{
-+ meta_finalize ();
-+
-+ exit (meta_exit_code);
-+}
-
- /**
- * This is where the story begins. It parses commandline options and
-@@ -352,6 +369,11 @@ main (int argc, char **argv)
- g_strerror (errno));
- #endif
-
-+ act.sa_handler = &sigterm_handler;
-+ if (sigaction (SIGTERM, &act, NULL) < 0)
-+ g_printerr ("Failed to register SIGTERM handler: %s\n",
-+ g_strerror (errno));
-+
- if (g_getenv ("METACITY_VERBOSE"))
- meta_set_verbose (TRUE);
- if (g_getenv ("METACITY_DEBUG"))
-@@ -478,11 +500,8 @@ main (int argc, char **argv)
-
- g_main_loop_run (meta_main_loop);
-
-- meta_display_close (meta_get_display (),
-- CurrentTime); /* I doubt correct timestamps matter here */
-+ meta_finalize ();
-
-- meta_session_shutdown ();
--
- if (meta_restart_after_quit)
- {
- GError *err;
diff --git a/x11-wm/metacity/files/patch-src_core_util.c b/x11-wm/metacity/files/patch-src_core_util.c
deleted file mode 100644
index b1799e351..000000000
--- a/x11-wm/metacity/files/patch-src_core_util.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/core/util.c.orig 2008-02-27 05:42:51.000000000 +0100
-+++ src/core/util.c 2008-03-21 21:16:14.000000000 +0100
-@@ -23,7 +23,7 @@
- */
-
- #define _GNU_SOURCE
--#define _POSIX_C_SOURCE /* for fdopen() */
-+#define _POSIX_C_SOURCE 1 /* for fdopen() */
-
- #include <config.h>
- #include "util.h"