diff options
author | Ade Lovett <ade@FreeBSD.org> | 2000-10-03 17:37:51 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2000-10-03 17:37:51 +0000 |
commit | cd92546e53363d1f7d441e3f093b1c28ea79b056 (patch) | |
tree | 6d9d2b0c1fe0251aac2f0525ab20e27ebcc9f321 /x11-fm | |
parent | Update to 0.9 (diff) |
Chase new gconf
Notes
Notes:
svn path=/head/; revision=33381
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/nautilus/Makefile | 2 | ||||
-rw-r--r-- | x11-fm/nautilus/files/patch-ah | 69 | ||||
-rw-r--r-- | x11-fm/nautilus2/Makefile | 2 | ||||
-rw-r--r-- | x11-fm/nautilus2/files/patch-ah | 69 |
4 files changed, 140 insertions, 2 deletions
diff --git a/x11-fm/nautilus/Makefile b/x11-fm/nautilus/Makefile index 34adae6471ea..a532c06cb66f 100644 --- a/x11-fm/nautilus/Makefile +++ b/x11-fm/nautilus/Makefile @@ -7,7 +7,7 @@ PORTNAME= nautilus PORTVERSION= 0.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-fm gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/nautilus diff --git a/x11-fm/nautilus/files/patch-ah b/x11-fm/nautilus/files/patch-ah new file mode 100644 index 000000000000..a0bb2bb4685a --- /dev/null +++ b/x11-fm/nautilus/files/patch-ah @@ -0,0 +1,69 @@ +--- libnautilus-extensions/nautilus-preferences.c.orig Wed Jul 12 03:03:32 2000 ++++ libnautilus-extensions/nautilus-preferences.c Tue Oct 3 11:59:02 2000 +@@ -594,3 +594,3 @@ + if (!gconf_is_initialized ()) { +- GConfError *error = NULL; ++ GError *error = NULL; + char *argv[] = { "nautilus", NULL }; +@@ -601,5 +601,5 @@ + /* FIXME bugzilla.eazel.com 672: Need better error reporting here */ +- g_warning ("GConf init failed:\n %s", error->str); ++ g_warning ("GConf init failed:\n %s", error->message); + +- gconf_error_destroy (error); ++ g_error_free (error); + +--- libnautilus-extensions/nautilus-user-level-manager.c.orig Wed Jul 12 03:03:32 2000 ++++ libnautilus-extensions/nautilus-user-level-manager.c Tue Oct 3 12:06:04 2000 +@@ -111,3 +111,3 @@ + if (!gconf_is_initialized ()) { +- GConfError *error = NULL; ++ GError *error = NULL; + char *argv[] = { "nautilus", NULL }; +@@ -118,5 +118,5 @@ + /* FIXME bugzilla.eazel.com 672: Need better error reporting here */ +- g_warning ("GConf init failed:\n %s", error->str); ++ g_warning ("GConf init failed:\n %s", error->message); + +- gconf_error_destroy (error); ++ g_error_free (error); + +@@ -245,3 +245,3 @@ + +- gconf_value_destroy (value); ++ gconf_value_free (value); + } +@@ -460,3 +460,3 @@ + if (value) { +- gconf_value_destroy (value); ++ gconf_value_free (value); + } +@@ -499,5 +499,5 @@ + case GCONF_VALUE_STRING: +- result = (gconf_value_string (value_a) +- && gconf_value_string (value_b) +- && (strcmp (gconf_value_string (value_a), gconf_value_string (value_b)) == 0)); ++ result = (gconf_value_get_string (value_a) ++ && gconf_value_get_string (value_b) ++ && (strcmp (gconf_value_get_string (value_a), gconf_value_get_string (value_b)) == 0)); + break; +@@ -505,3 +505,3 @@ + case GCONF_VALUE_INT: +- result = (gconf_value_int (value_a) == gconf_value_int (value_b)); ++ result = (gconf_value_get_int (value_a) == gconf_value_get_int (value_b)); + break; +@@ -509,3 +509,3 @@ + case GCONF_VALUE_BOOL: +- result = (gconf_value_bool (value_a) == gconf_value_bool (value_b)); ++ result = (gconf_value_get_bool (value_a) == gconf_value_get_bool (value_b)); + break; +@@ -522,3 +522,3 @@ + if (value_a) { +- gconf_value_destroy (value_a); ++ gconf_value_free (value_a); + } +@@ -526,3 +526,3 @@ + if (value_b) { +- gconf_value_destroy (value_b); ++ gconf_value_free (value_b); + } diff --git a/x11-fm/nautilus2/Makefile b/x11-fm/nautilus2/Makefile index 34adae6471ea..a532c06cb66f 100644 --- a/x11-fm/nautilus2/Makefile +++ b/x11-fm/nautilus2/Makefile @@ -7,7 +7,7 @@ PORTNAME= nautilus PORTVERSION= 0.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-fm gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/nautilus diff --git a/x11-fm/nautilus2/files/patch-ah b/x11-fm/nautilus2/files/patch-ah new file mode 100644 index 000000000000..a0bb2bb4685a --- /dev/null +++ b/x11-fm/nautilus2/files/patch-ah @@ -0,0 +1,69 @@ +--- libnautilus-extensions/nautilus-preferences.c.orig Wed Jul 12 03:03:32 2000 ++++ libnautilus-extensions/nautilus-preferences.c Tue Oct 3 11:59:02 2000 +@@ -594,3 +594,3 @@ + if (!gconf_is_initialized ()) { +- GConfError *error = NULL; ++ GError *error = NULL; + char *argv[] = { "nautilus", NULL }; +@@ -601,5 +601,5 @@ + /* FIXME bugzilla.eazel.com 672: Need better error reporting here */ +- g_warning ("GConf init failed:\n %s", error->str); ++ g_warning ("GConf init failed:\n %s", error->message); + +- gconf_error_destroy (error); ++ g_error_free (error); + +--- libnautilus-extensions/nautilus-user-level-manager.c.orig Wed Jul 12 03:03:32 2000 ++++ libnautilus-extensions/nautilus-user-level-manager.c Tue Oct 3 12:06:04 2000 +@@ -111,3 +111,3 @@ + if (!gconf_is_initialized ()) { +- GConfError *error = NULL; ++ GError *error = NULL; + char *argv[] = { "nautilus", NULL }; +@@ -118,5 +118,5 @@ + /* FIXME bugzilla.eazel.com 672: Need better error reporting here */ +- g_warning ("GConf init failed:\n %s", error->str); ++ g_warning ("GConf init failed:\n %s", error->message); + +- gconf_error_destroy (error); ++ g_error_free (error); + +@@ -245,3 +245,3 @@ + +- gconf_value_destroy (value); ++ gconf_value_free (value); + } +@@ -460,3 +460,3 @@ + if (value) { +- gconf_value_destroy (value); ++ gconf_value_free (value); + } +@@ -499,5 +499,5 @@ + case GCONF_VALUE_STRING: +- result = (gconf_value_string (value_a) +- && gconf_value_string (value_b) +- && (strcmp (gconf_value_string (value_a), gconf_value_string (value_b)) == 0)); ++ result = (gconf_value_get_string (value_a) ++ && gconf_value_get_string (value_b) ++ && (strcmp (gconf_value_get_string (value_a), gconf_value_get_string (value_b)) == 0)); + break; +@@ -505,3 +505,3 @@ + case GCONF_VALUE_INT: +- result = (gconf_value_int (value_a) == gconf_value_int (value_b)); ++ result = (gconf_value_get_int (value_a) == gconf_value_get_int (value_b)); + break; +@@ -509,3 +509,3 @@ + case GCONF_VALUE_BOOL: +- result = (gconf_value_bool (value_a) == gconf_value_bool (value_b)); ++ result = (gconf_value_get_bool (value_a) == gconf_value_get_bool (value_b)); + break; +@@ -522,3 +522,3 @@ + if (value_a) { +- gconf_value_destroy (value_a); ++ gconf_value_free (value_a); + } +@@ -526,3 +526,3 @@ + if (value_b) { +- gconf_value_destroy (value_b); ++ gconf_value_free (value_b); + } |