summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-06-08 17:12:49 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-06-08 17:12:49 +0800
commit179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7 (patch)
treeb9259ce66efa439041ac352dcf81036e2038652a
parent592fc980aa76917d98cd71dfa6e099b253ef4ae0 (diff)
downloadmarcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.tar
marcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.tar.gz
marcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.tar.bz2
marcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.tar.lz
marcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.tar.xz
marcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.tar.zst
marcuscom-ports-179b0f8edfae2e2ed6ccae0a1c66e825178a6bc7.zip
Update to 2.31.3.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14223 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--x11-fm/nautilus/Makefile4
-rw-r--r--x11-fm/nautilus/distinfo6
-rw-r--r--x11-fm/nautilus/files/patch-libnautilus-private_nautilus-keep-last-vertical-box.c107
3 files changed, 5 insertions, 112 deletions
diff --git a/x11-fm/nautilus/Makefile b/x11-fm/nautilus/Makefile
index 9ff90c3c6..718a462dd 100644
--- a/x11-fm/nautilus/Makefile
+++ b/x11-fm/nautilus/Makefile
@@ -3,11 +3,11 @@
# Whom: ade, archie
#
# $FreeBSD$
-# $MCom$
+# $MCom: ports/x11-fm/nautilus/Makefile,v 1.198 2010/06/05 17:56:34 kwm Exp $
#
PORTNAME= nautilus
-PORTVERSION= 2.31.2
+PORTVERSION= 2.31.3
CATEGORIES= x11-fm gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
diff --git a/x11-fm/nautilus/distinfo b/x11-fm/nautilus/distinfo
index e6ed47e4a..2d68b9a4e 100644
--- a/x11-fm/nautilus/distinfo
+++ b/x11-fm/nautilus/distinfo
@@ -1,3 +1,3 @@
-MD5 (gnome2/nautilus-2.31.2.tar.bz2) = 59d2eb64fad28870200d80f4c4e28b88
-SHA256 (gnome2/nautilus-2.31.2.tar.bz2) = f57a2ba7118546c68a9e9e4b5de35a99c044341f6adb982397f72361ca2a5940
-SIZE (gnome2/nautilus-2.31.2.tar.bz2) = 6051353
+MD5 (gnome2/nautilus-2.31.3.tar.bz2) = e96c04bc7b3bd1cb71e302bc7c7c3a5f
+SHA256 (gnome2/nautilus-2.31.3.tar.bz2) = b08d524b7b17438cff48204a4fbecc6f150a3e860d6e1db8c78f67afb200b619
+SIZE (gnome2/nautilus-2.31.3.tar.bz2) = 6042154
diff --git a/x11-fm/nautilus/files/patch-libnautilus-private_nautilus-keep-last-vertical-box.c b/x11-fm/nautilus/files/patch-libnautilus-private_nautilus-keep-last-vertical-box.c
deleted file mode 100644
index 1693d9e2f..000000000
--- a/x11-fm/nautilus/files/patch-libnautilus-private_nautilus-keep-last-vertical-box.c
+++ /dev/null
@@ -1,107 +0,0 @@
-From 4edc5f843a4cb0d89c21fd957dc7d6fa955cf012 Mon Sep 17 00:00:00 2001
-From: Alexander Larsson <alexl@redhat.com>
-Date: Tue, 01 Jun 2010 07:17:56 +0000
-Subject: Don't use deprecated Gtk+ api (GtkBoxChild)
-
----
-diff --git a/libnautilus-private/nautilus-keep-last-vertical-box.c b/libnautilus-private/nautilus-keep-last-vertical-box.c
-index 8aabb56..5e350e1 100644
---- libnautilus-private/nautilus-keep-last-vertical-box.c
-+++ libnautilus-private/nautilus-keep-last-vertical-box.c
-@@ -84,13 +84,13 @@ nautilus_keep_last_vertical_box_new (gint spacing)
- return GTK_WIDGET (box);
- }
-
--static void
--nautilus_keep_last_vertical_box_size_allocate (GtkWidget *widget,
-+static void
-+nautilus_keep_last_vertical_box_size_allocate (GtkWidget *widget,
- GtkAllocation *allocation)
- {
- GtkBox *box;
-- GtkBoxChild *last_child, *child;
-- GList *children;
-+ GtkWidget *last_child, *child;
-+ GList *children, *l;
- GtkAllocation last_child_allocation, child_allocation, tiny_allocation;
-
- g_return_if_fail (NAUTILUS_IS_KEEP_LAST_VERTICAL_BOX (widget));
-@@ -99,13 +99,14 @@ nautilus_keep_last_vertical_box_size_allocate (GtkWidget *widget,
- EEL_CALL_PARENT (GTK_WIDGET_CLASS, size_allocate, (widget, allocation));
-
- box = GTK_BOX (widget);
-- children = g_list_last (box->children);
-+ children = gtk_container_get_children (GTK_CONTAINER(widget));
-+ l = g_list_last (children);
-
-- if (children != NULL) {
-- last_child = children->data;
-- children = children->prev;
-+ if (l != NULL) {
-+ last_child = l->data;
-+ l = l->prev;
-
-- last_child_allocation = last_child->widget->allocation;
-+ gtk_widget_get_allocation (last_child, &last_child_allocation);
-
- /* If last child doesn't fit vertically, prune items from the end of the
- * list one at a time until it does.
-@@ -113,11 +114,11 @@ nautilus_keep_last_vertical_box_size_allocate (GtkWidget *widget,
- if (last_child_allocation.y + last_child_allocation.height >
- allocation->y + allocation->height) {
-
-- while (children != NULL) {
-- child = children->data;
-- children = children->prev;
-+ while (l != NULL) {
-+ child = l->data;
-+ l = l->prev;
-
-- child_allocation = child->widget->allocation;
-+ gtk_widget_get_allocation (child, &child_allocation);
-
- /* Reallocate this child's position so that it does not appear.
- * Setting the width & height to 0 is not enough, as
-@@ -126,20 +127,20 @@ nautilus_keep_last_vertical_box_size_allocate (GtkWidget *widget,
- * This might not work in all future cases. Alternatively, the
- * items that don't fit could be hidden, but that would interfere
- * with having other hidden children.
-- *
-+ *
- * Note that these children are having their size allocated twice,
- * once by gtk_vbox_size_allocate and then again here. I don't
- * know of any problems with this, but holler if you do.
- */
- tiny_allocation.x = tiny_allocation.y = -1;
- tiny_allocation.height = tiny_allocation.width = 0;
-- gtk_widget_size_allocate (child->widget, &tiny_allocation);
-+ gtk_widget_size_allocate (child, &tiny_allocation);
-
- /* We're done if the special last item fits now. */
- if (child_allocation.y + last_child_allocation.height <=
- allocation->y + allocation->height) {
- last_child_allocation.y = child_allocation.y;
-- gtk_widget_size_allocate (last_child->widget, &last_child_allocation);
-+ gtk_widget_size_allocate (last_child, &last_child_allocation);
- break;
- }
-
-@@ -148,12 +149,13 @@ nautilus_keep_last_vertical_box_size_allocate (GtkWidget *widget,
- * just too darn tall. Let's squash it down to fit in the box's
- * allocation.
- */
-- if (children == NULL) {
-+ if (l == NULL) {
- last_child_allocation.y = allocation->y;
- last_child_allocation.height = allocation->height;
-- gtk_widget_size_allocate (last_child->widget, &last_child_allocation);
-+ gtk_widget_size_allocate (last_child, &last_child_allocation);
- }
- }
- }
- }
--}
-+ g_list_free (children);
-+}
---
-cgit v0.8.3.1