diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2006-11-20 14:26:41 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2006-11-20 14:26:41 +0000 |
commit | 97939ddce719026e037ead5dcdc17b6b43137bda (patch) | |
tree | e26ec31018dab6bb210d90803268a2860068e02c /x11-fm | |
parent | 7e035d537f565289335c1402b8468bad10df6509 (diff) | |
download | ports-97939ddce719026e037ead5dcdc17b6b43137bda.tar.gz ports-97939ddce719026e037ead5dcdc17b6b43137bda.zip |
Notes
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/nautilus/Makefile | 3 | ||||
-rw-r--r-- | x11-fm/nautilus/distinfo | 6 | ||||
-rw-r--r-- | x11-fm/nautilus/files/patch-fix-desktop-icon-position | 25 |
3 files changed, 4 insertions, 30 deletions
diff --git a/x11-fm/nautilus/Makefile b/x11-fm/nautilus/Makefile index e7d7e3189343..242f6086e72c 100644 --- a/x11-fm/nautilus/Makefile +++ b/x11-fm/nautilus/Makefile @@ -7,8 +7,7 @@ # PORTNAME= nautilus -PORTVERSION= 2.16.2 -PORTREVISION= 1 +PORTVERSION= 2.16.3 CATEGORIES= x11-fm gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/x11-fm/nautilus/distinfo b/x11-fm/nautilus/distinfo index d50016b26b6b..40184b75f6ae 100644 --- a/x11-fm/nautilus/distinfo +++ b/x11-fm/nautilus/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/nautilus-2.16.2.tar.bz2) = d6354ad96efcd0f89ed4c13ad940d5f5 -SHA256 (gnome2/nautilus-2.16.2.tar.bz2) = 6306fe9ee0371da309a870627a94fba88c3848a5fa83b863d28688ed57d9ba11 -SIZE (gnome2/nautilus-2.16.2.tar.bz2) = 4266971 +MD5 (gnome2/nautilus-2.16.3.tar.bz2) = 05a0fe98d524ca5287da21845ab8490c +SHA256 (gnome2/nautilus-2.16.3.tar.bz2) = af2ff5ad922e28cc831b4ac3d83f0f35eedcf7a3230d3df76aa9f91c3ffbc36c +SIZE (gnome2/nautilus-2.16.3.tar.bz2) = 4268274 diff --git a/x11-fm/nautilus/files/patch-fix-desktop-icon-position b/x11-fm/nautilus/files/patch-fix-desktop-icon-position deleted file mode 100644 index 935864c5d13a..000000000000 --- a/x11-fm/nautilus/files/patch-fix-desktop-icon-position +++ /dev/null @@ -1,25 +0,0 @@ ---- src/file-manager/fm-icon-view.c.orig 2006-11-14 16:35:04.304162544 +0000 -+++ src/file-manager/fm-icon-view.c 2006-11-14 16:51:02.820445920 +0000 -@@ -531,12 +531,20 @@ - file_has_lazy_position (FMDirectoryView *view, - NautilusFile *file) - { -+ gboolean lazy_position; -+ - /* For volumes (i.e. cdrom icon) we use lazy positioning so that when - * an old cdrom gets re-mounted in a place that now has another - * icon we don't overlap that one. - */ -- -- return NAUTILUS_IS_DESKTOP_ICON_FILE (file); -+ lazy_position = nautilus_file_has_volume (file); -+ if (lazy_position && fm_directory_view_get_loading (view)) { -+ /* if volumes are loaded during directory load, don't mark them -+ * as lazy. This is wrong for files that were mounted during user -+ * log-off, but it is right for files that were mounted during login. */ -+ lazy_position = FALSE; -+ } -+ return lazy_position; - } - - static void |