diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-10-24 23:37:25 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-10-24 23:37:25 +0000 |
commit | 4acc6fb2a411b291c9c210d82bafe7c62e71c77d (patch) | |
tree | bc16420eb52d65511ceb520c00171d219210a473 /databases/evolution-data-server/files/patch-fix-maildir | |
parent | Mark as broken on amd64-7 (and, presumably, sparc64-7). (diff) |
Presenting GNOME 2.20.1 and all related works for FreeBSD. The official
GNOME 2.20 release notes can be found at
http://www.gnome.org/start/2.20/notes/en/ . Beyond that, this update
includes the new GIMP 2.4 (courtesy of ahze).
The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME
hierarchy. We are now using the more standard DATADIR of ${PREFIX}/share
rather than ${PREFIX}/share/gnome. The result is that fewer patches and
hacks are needed to port GNOME components to FreeBSD. This will mean some
user changes may be required, so be sure to read /usr/ports/UPDATING for
more details.
This release and the things we accomplished in it would not have been
possible without mezz's crazy idea to collapse DATADIR, and his persistence
to make it happen successfully. Ahze and pav also deserve thanks for
their work on porting modules and testing the whole ball of wax on
pointyhat (respectively).
The FreeBSD GNOME team would also like to thank our various testers and
contributors:
Yasuda Keisuke
Frank Jahnke
Pawel Worach
Brian Gruber
Franz Klammer
Yuri Pankov
Nick Barkas
Cristian KLEIN
Tony Maher
Scot Hetzel
Martin Matuska (mm)
Benoit Dejean
Martin Wilke (miwi)
(And anyone else I may have missed)
PRs fixed in this release:
111272, 113470, 115995, 116338
Diffstat (limited to 'databases/evolution-data-server/files/patch-fix-maildir')
-rw-r--r-- | databases/evolution-data-server/files/patch-fix-maildir | 141 |
1 files changed, 0 insertions, 141 deletions
diff --git a/databases/evolution-data-server/files/patch-fix-maildir b/databases/evolution-data-server/files/patch-fix-maildir deleted file mode 100644 index db2563e0e040..000000000000 --- a/databases/evolution-data-server/files/patch-fix-maildir +++ /dev/null @@ -1,141 +0,0 @@ -Index: camel/providers/local/camel-local-provider.c -=================================================================== ---- camel/providers/local/camel-local-provider.c (revision 7830) -+++ camel/providers/local/camel-local-provider.c (working copy) -@@ -56,7 +56,7 @@ - N_("For storing local mail in MH-like mail directories."), - "mail", - CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE | CAMEL_PROVIDER_IS_LOCAL, -- CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, -+ CAMEL_URL_NEED_PATH | CAMEL_URL_NEED_PATH_DIR | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, - mh_conf_entries, - /* ... */ - }; -@@ -74,7 +74,7 @@ - N_("For retrieving (moving) local mail from standard mbox-formatted spools into folders managed by Evolution."), - "mail", - CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE | CAMEL_PROVIDER_IS_LOCAL, -- CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, -+ CAMEL_URL_NEED_PATH | CAMEL_URL_NEED_PATH_DIR |CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, - mbox_conf_entries, - /* ... */ - }; -@@ -96,7 +96,7 @@ - N_("For storing local mail in maildir directories."), - "mail", - CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE | CAMEL_PROVIDER_IS_LOCAL, -- CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, -+ CAMEL_URL_NEED_PATH | CAMEL_URL_NEED_PATH_DIR | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, - maildir_conf_entries, - /* ... */ - }; -@@ -110,9 +110,9 @@ - { CAMEL_PROVIDER_CONF_END } - }; - --static CamelProvider spool_provider = { -+static CamelProvider spool_file_provider = { - "spool", -- N_("Standard Unix mbox spool or directory"), -+ N_("Standard Unix mbox spool file"), - N_("For reading and storing local mail in external standard mbox spool files.\nMay also be used to read a tree of Elm, Pine, or Mutt style folders."), - "mail", - CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE, -@@ -121,6 +121,17 @@ - /* ... */ - }; - -+static CamelProvider spool_directory_provider = { -+ "spooldir", -+ N_("Standard Unix mbox spool directory"), -+ N_("For reading and storing local mail in external standard mbox spool files.\nMay also be used to read a tree of Elm, Pine, or Mutt style folders."), -+ "mail", -+ CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE, -+ CAMEL_URL_NEED_PATH | CAMEL_URL_NEED_PATH_DIR | CAMEL_URL_PATH_IS_ABSOLUTE | CAMEL_URL_FRAGMENT_IS_PATH, -+ spool_conf_entries, -+ /* ... */ -+}; -+ - #endif - - /* build a canonical 'path' */ -@@ -234,13 +245,19 @@ - camel_provider_register(&mbox_provider); - - #ifndef G_OS_WIN32 -- spool_conf_entries[0].value = path; /* default path - same as mbox */ -- spool_provider.object_types[CAMEL_PROVIDER_STORE] = camel_spool_store_get_type (); -- spool_provider.url_hash = local_url_hash; -- spool_provider.url_equal = local_url_equal; -- spool_provider.translation_domain = GETTEXT_PACKAGE; -- camel_provider_register(&spool_provider); -- -+ spool_conf_entries[0].value = path; /* default path - same as mbox; it's for both file and directory */ -+ spool_file_provider.object_types[CAMEL_PROVIDER_STORE] = camel_spool_store_get_type (); -+ spool_file_provider.url_hash = local_url_hash; -+ spool_file_provider.url_equal = local_url_equal; -+ spool_file_provider.translation_domain = GETTEXT_PACKAGE; -+ camel_provider_register(&spool_file_provider); -+ -+ spool_directory_provider.object_types[CAMEL_PROVIDER_STORE] = camel_spool_store_get_type (); -+ spool_directory_provider.url_hash = local_url_hash; -+ spool_directory_provider.url_equal = local_url_equal; -+ spool_directory_provider.translation_domain = GETTEXT_PACKAGE; -+ camel_provider_register(&spool_directory_provider); -+ - path = getenv("MAILDIR"); - maildir_conf_entries[0].value = path ? path : ""; /* default path */ - maildir_provider.object_types[CAMEL_PROVIDER_STORE] = camel_maildir_store_get_type (); -Index: camel/providers/local/ChangeLog -=================================================================== ---- camel/providers/local/ChangeLog (revision 7830) -+++ camel/providers/local/ChangeLog (working copy) -@@ -1,3 +1,12 @@ -+2007-06-18 Milan Crha <mcrha@redhat.com> -+ -+ ** Fix for bug #352346 -+ -+ * camel-local-provider.c: (camel_provider_module_init): -+ New provider spool_file_provider with virtual protocol 'spooldir' -+ and set CAMEL_URL_NEED_PATH_DIR; registering this provider -+ as copy for spool files. -+ - 2007-06-06 Jeffrey Stedfast <fejj@novell.com> - - Robustness fix while making sure the code would properly handle -Index: camel/ChangeLog -=================================================================== ---- camel/ChangeLog (revision 7830) -+++ camel/ChangeLog (working copy) -@@ -1,3 +1,11 @@ -+2007-06-18 Milan Crha <mcrha@redhat.com> -+ -+ ** Fix for bug #352346 -+ -+ * camel-provider.h: Added new constants CAMEL_URL_PART_PATH_DIR and -+ CAMEL_URL_NEED_PATH_DIR; when CAMEL_URL_NEED_PATH_DIR is set, then -+ in editor dialog is choosing file, without it directory. -+ - 2007-06-14 Philip Van Hoof <pvanhoof@gnome.org> - - * camel-net-utils.c: Memory leak fix -Index: camel/camel-provider.h -=================================================================== ---- camel/camel-provider.h (revision 7830) -+++ camel/camel-provider.h (working copy) -@@ -81,6 +81,7 @@ - #define CAMEL_URL_PART_HOST (1 << 3) - #define CAMEL_URL_PART_PORT (1 << 4) - #define CAMEL_URL_PART_PATH (1 << 5) -+#define CAMEL_URL_PART_PATH_DIR (1 << 6) - - #define CAMEL_URL_PART_NEED 8 - #define CAMEL_URL_PART_HIDDEN (CAMEL_URL_PART_NEED + 8) -@@ -104,6 +105,7 @@ - #define CAMEL_URL_NEED_HOST (CAMEL_URL_PART_HOST << CAMEL_URL_PART_NEED) - #define CAMEL_URL_NEED_PORT (CAMEL_URL_PART_PORT << CAMEL_URL_PART_NEED) - #define CAMEL_URL_NEED_PATH (CAMEL_URL_PART_PATH << CAMEL_URL_PART_NEED) -+#define CAMEL_URL_NEED_PATH_DIR (CAMEL_URL_PART_PATH_DIR << CAMEL_URL_PART_NEED) - - #define CAMEL_URL_HIDDEN_USER (CAMEL_URL_PART_USER << CAMEL_URL_PART_HIDDEN) - #define CAMEL_URL_HIDDEN_AUTH (CAMEL_URL_PART_AUTH << CAMEL_URL_PART_HIDDEN) |