diff options
Diffstat (limited to 'mail/evolution')
-rw-r--r-- | mail/evolution/Makefile | 5 | ||||
-rw-r--r-- | mail/evolution/distinfo | 6 | ||||
-rw-r--r-- | mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c | 34 | ||||
-rw-r--r-- | mail/evolution/pkg-plist | 5 |
4 files changed, 44 insertions, 6 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 6ad924664..cf0ad5d98 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -3,12 +3,11 @@ # Whom: Ade Lovett <ade@FreeBSD.org> # # $FreeBSD: ports/mail/evolution/Makefile,v 1.123 2006/04/30 00:46:56 marcus Exp $ -# $MCom: ports/mail/evolution/Makefile,v 1.105 2006/06/13 04:30:26 marcus Exp $ +# $MCom: ports/mail/evolution/Makefile,v 1.106 2006/06/13 16:21:06 marcus Exp $ # PORTNAME= evolution -PORTVERSION= 2.7.3 -PORTREVISION= 2 +PORTVERSION= 2.7.4 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/mail/evolution/distinfo b/mail/evolution/distinfo index 13f1ff4a7..a46dfd66e 100644 --- a/mail/evolution/distinfo +++ b/mail/evolution/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/evolution-2.7.3.tar.bz2) = e6f155e9c5d5a11ff61ef364752af6a9 -SHA256 (gnome2/evolution-2.7.3.tar.bz2) = 3d01196d20be37506db37de11ff5975cd1ff8685ca9a03dfa1470d14ba96e351 -SIZE (gnome2/evolution-2.7.3.tar.bz2) = 12193222 +MD5 (gnome2/evolution-2.7.4.tar.bz2) = 5d9770b3d86953e8edcd36ec9f9b8852 +SHA256 (gnome2/evolution-2.7.4.tar.bz2) = 189f6414902c02b93f6e4bdd0a9c4f41d7ade5464a33e043e1c4148577398a1a +SIZE (gnome2/evolution-2.7.4.tar.bz2) = 12382387 diff --git a/mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c b/mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c new file mode 100644 index 000000000..a64407192 --- /dev/null +++ b/mail/evolution/files/patch-widgets_e-timezone-dialog_e-timezone-dialog.c @@ -0,0 +1,34 @@ +--- widgets/e-timezone-dialog/e-timezone-dialog.c.orig Mon Jul 10 21:50:12 2006 ++++ widgets/e-timezone-dialog/e-timezone-dialog.c Mon Jul 10 22:11:54 2006 +@@ -80,7 +80,9 @@ struct _ETimezoneDialogPrivate { + + #ifndef G_OS_WIN32 /* Declared properly in time.h already */ + extern char *tzname[2]; ++#ifndef __BSD_VISIBLE + extern long timezone; ++#endif + extern int daylight; + #endif + +@@ -317,9 +319,20 @@ static const icaltimezone* + get_local_timezone() + { + icaltimezone *zone; ++ long offset; ++#ifdef __BSD_VISIBLE ++ time_t tt; ++ struct tm tm; ++#endif + + tzset(); +- zone = icaltimezone_get_builtin_timezone_from_offset (-timezone, tzname[0]); ++#ifdef __BSD_VISIBLE ++ localtime_r (&tt, &tm); ++ offset = tm.tm_gmtoff; ++#else ++ offset = -timezone; ++#endif ++ zone = icaltimezone_get_builtin_timezone_from_offset (offset, tzname[0]); + + return zone; + } diff --git a/mail/evolution/pkg-plist b/mail/evolution/pkg-plist index 1c2a41299..d800a7bb5 100644 --- a/mail/evolution/pkg-plist +++ b/mail/evolution/pkg-plist @@ -110,6 +110,7 @@ include/evolution-%%VERSION%%/misc/e-dropdown-button.h include/evolution-%%VERSION%%/misc/e-expander.h include/evolution-%%VERSION%%/misc/e-gui-utils.h include/evolution-%%VERSION%%/misc/e-hsv-utils.h +include/evolution-%%VERSION%%/misc/e-icon-entry.h include/evolution-%%VERSION%%/misc/e-image-chooser.h include/evolution-%%VERSION%%/misc/e-info-label.h include/evolution-%%VERSION%%/misc/e-map.h @@ -466,6 +467,7 @@ share/gnome/evolution/%%VERSION%%/glade/event-page.glade share/gnome/evolution/%%VERSION%%/glade/exchange-change-password.glade share/gnome/evolution/%%VERSION%%/glade/exchange-delegates.glade share/gnome/evolution/%%VERSION%%/glade/exchange-folder-tree.glade +share/gnome/evolution/%%VERSION%%/glade/exchange-oof.glade share/gnome/evolution/%%VERSION%%/glade/exchange-passwd-expiry.glade share/gnome/evolution/%%VERSION%%/glade/exchange-permissions-dialog.glade share/gnome/evolution/%%VERSION%%/glade/filter.glade @@ -620,6 +622,7 @@ share/locale/az/LC_MESSAGES/evolution-%%VERSION%%.mo share/locale/be/LC_MESSAGES/evolution-%%VERSION%%.mo share/locale/bg/LC_MESSAGES/evolution-%%VERSION%%.mo share/locale/bn/LC_MESSAGES/evolution-%%VERSION%%.mo +share/locale/bn_IN/LC_MESSAGES/evolution-%%VERSION%%.mo share/locale/bs/LC_MESSAGES/evolution-%%VERSION%%.mo share/locale/ca/LC_MESSAGES/evolution-%%VERSION%%.mo share/locale/cs/LC_MESSAGES/evolution-%%VERSION%%.mo @@ -690,6 +693,8 @@ share/locale/zh_TW/LC_MESSAGES/evolution-%%VERSION%%.mo @dirrmtry share/locale/ku @dirrmtry share/locale/dz/LC_MESSAGES @dirrmtry share/locale/dz +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN @dirrm share/gnome/omf/evolution @dirrm share/gnome/idl/evolution-%%VERSION%% @dirrm share/gnome/help/evolution-%%VERSION%%/C/figures |