head 1.8; access; symbols pkgsrc-2013Q2:1.8.0.6 pkgsrc-2013Q2-base:1.8 pkgsrc-2012Q4:1.8.0.4 pkgsrc-2012Q4-base:1.8 pkgsrc-2011Q4:1.8.0.2 pkgsrc-2011Q4-base:1.8 pkgsrc-2011Q2:1.7.0.8 pkgsrc-2011Q2-base:1.7 pkgsrc-2011Q1:1.7.0.6 pkgsrc-2011Q1-base:1.7 pkgsrc-2010Q4:1.7.0.4 pkgsrc-2010Q4-base:1.7 pkgsrc-2010Q3:1.7.0.2 pkgsrc-2010Q3-base:1.7 pkgsrc-2010Q2:1.6.0.4 pkgsrc-2010Q2-base:1.6 pkgsrc-2010Q1:1.6.0.2 pkgsrc-2010Q1-base:1.6 pkgsrc-2009Q4:1.5.0.2 pkgsrc-2009Q4-base:1.5 pkgsrc-2009Q3:1.4.0.34 pkgsrc-2009Q3-base:1.4 pkgsrc-2009Q2:1.4.0.32 pkgsrc-2009Q2-base:1.4 pkgsrc-2009Q1:1.4.0.30 pkgsrc-2009Q1-base:1.4 pkgsrc-2008Q4:1.4.0.28 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.26 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.24 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.22 pkgsrc-2008Q2-base:1.4 cwrapper:1.4.0.20 pkgsrc-2008Q1:1.4.0.18 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.16 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.14 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.4.0.12 pkgsrc-2007Q2-base:1.4 pkgsrc-2007Q1:1.4.0.10 pkgsrc-2007Q1-base:1.4 pkgsrc-2006Q4:1.4.0.8 pkgsrc-2006Q4-base:1.4 pkgsrc-2006Q3:1.4.0.6 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.4.0.4 pkgsrc-2006Q2-base:1.4 pkgsrc-2006Q1:1.4.0.2 pkgsrc-2006Q1-base:1.4 pkgsrc-2005Q4:1.3.0.12 pkgsrc-2005Q4-base:1.3 pkgsrc-2005Q3:1.3.0.10 pkgsrc-2005Q3-base:1.3 pkgsrc-2005Q2:1.3.0.8 pkgsrc-2005Q2-base:1.3 pkgsrc-2005Q1:1.3.0.6 pkgsrc-2005Q1-base:1.3 pkgsrc-2004Q4:1.3.0.4 pkgsrc-2004Q4-base:1.3 pkgsrc-2004Q3:1.3.0.2 pkgsrc-2004Q3-base:1.3 pkgsrc-2004Q2:1.2.0.2 pkgsrc-2004Q2-base:1.2 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.8 date 2011.08.19.14.39.09; author tnn; state dead; branches; next 1.7; 1.7 date 2010.07.12.16.49.22; author tnn; state Exp; branches; next 1.6; 1.6 date 2010.03.16.10.59.09; author tnn; state Exp; branches; next 1.5; 1.5 date 2009.11.29.03.06.43; author tnn; state dead; branches; next 1.4; 1.4 date 2006.02.05.14.49.05; author ghen; state Exp; branches; next 1.3; 1.3 date 2004.06.24.23.09.56; author taya; state Exp; branches 1.3.12.1; next 1.2; 1.2 date 2004.05.08.04.35.39; author taya; state Exp; branches; next 1.1; 1.1 date 2004.04.19.23.25.29; author taya; state Exp; branches 1.1.1.1; next ; 1.3.12.1 date 2006.02.09.10.32.28; author salo; state Exp; branches; next ; 1.1.1.1 date 2004.04.19.23.25.29; author taya; state Exp; branches; next ; desc @@ 1.8 log @Update to thunderbird-6.0 and enigmail-1.2.1. Release notes for 6.0: Thunderbird is based on the new Mozilla Gecko 6 engine Several theme improvements for Windows 7 Support for Windows 7 Jump lists Several fixes when importing email from Microsoft Outlook Default mail client check now works with newer Linux distributions Various other user interface fixes and improvements Numerous platform fixes that improve speed, performance, stability and security Release notes for 5.0: More responsive and faster to start up and use Thunderbird is based on the new Mozilla Gecko 5 engine New Add-ons Manager Revised account creation wizard to improve email setup New Troubleshooting Information page Tabs can now be reordered and dragged to different windows Attachment sizes now displayed along with attachments Plugins can now be loaded in RSS feeds by default There are several theme fixes for Windows Vista and Windows 7 Support for Mac 32/64 bit Universal builds (Thunderbird no longer supports PowerPC on Mac) Over 390 platform fixes that improve speed, performance, stability and security @ text @$NetBSD: patch-bb,v 1.7 2010/07/12 16:49:22 tnn Exp $ # make sure the inline assembler code works on the same word size as # the C/C++ code on sparc64 when compiling for 64bit # https://bugzilla.mozilla.org/show_bug.cgi?id=550271 --- mozilla/js/src/jslock.cpp.orig 2010-02-27 02:32:31.000000000 +0000 +++ mozilla/js/src/jslock.cpp @@@@ -159,6 +159,7 @@@@ NativeCompareAndSwap(jsword *w, jsword o { unsigned int res; +#if JS_BITS_PER_WORD == 32 __asm__ __volatile__ ( "stbar\n" "cas [%1],%2,%3\n" @@@@ -169,6 +170,18 @@@@ NativeCompareAndSwap(jsword *w, jsword o "1:" : "=r" (res) : "r" (w), "r" (ov), "r" (nv)); +#else + __asm__ __volatile__ ( + "stbar\n" + "casx [%1],%2,%3\n" + "cmp %2,%3\n" + "be,a 1f\n" + "mov 1,%0\n" + "mov 0,%0\n" + "1:" + : "=r" (res) + : "r" (w), "r" (ov), "r" (nv)); +#endif return (int)res; } @ 1.7 log @- Update to thunderbird-3.1 - Update bundled enigmail to 1.1.2 - Update mozilla branch patches to 1.9.2 (from devel/xulrunner) - While here fix PR pkg/43598 PLIST problem w/ enigmail ---8<--- Thunderbird 3.1 is based on the Gecko 1.9.2 platform to provide improved performance, stability, web compatibility, and code simplification and sustainability. New features include: Faster Search Results and Quick Filter Toolbar * Faster Search Results * Quick Filter Toolbar User Experience Improvements * New Migration Assistant * Saved Files Manager * Mail Account Setup Wizard Performance Improvements * Improvements to Stability, Memory, and Password Handling @ text @d1 1 a1 1 $NetBSD: patch-bb,v 1.2 2010/03/16 15:57:02 tnn Exp $ @ 1.6 log @clone comm-1.9.1 patch set from devel/xulrunner into mail/thunderbird and www/seamonkey so devel/xulrunner can move forward to 1.9.2. @ text @d1 1 a1 1 $NetBSD: patch-bb,v 1.1 2010/01/10 09:43:06 tron Exp $ d3 3 a5 1 Fix build using Sun Studio C++. d7 25 a31 11 --- mozilla/memory/jemalloc/jemalloc.h.orig 2009-12-02 04:29:06.000000000 +0000 +++ mozilla/memory/jemalloc/jemalloc.h 2010-01-09 23:24:34.000000000 +0000 @@@@ -1,3 +1,4 @@@@ +#ifndef __cplusplus #ifndef MOZ_MEMORY_WINDOWS # include #else @@@@ -6,6 +7,7 @@@@ # define bool BOOL # endif #endif d33 2 a34 2 extern const char *_malloc_options; @ 1.5 log @update to thunderbird-3.0rc1. The 2.x version is still available in mail/thunderbird2. Major changes: - New Mail Account Setup Wizard - Redesigned Mail Toolbar - Tabbed Email Messages - Smart Folders - New Message Summary View - Column Headings - Message Archive - Activity Manager - New Add-ons Manager - Improved Address Book - Improved Gmail Integration Full release notes: http://www.mozillamessaging.com/en-US/thunderbird/3.0rc1/releasenotes/ @ text @d1 1 a1 1 $NetBSD: patch-bb,v 1.4 2006/02/05 14:49:05 ghen Exp $ d3 12 a14 13 --- nsprpub/pr/include/md/_netbsd.h.orig 2006-02-02 13:52:50.000000000 +0100 +++ nsprpub/pr/include/md/_netbsd.h @@@@ -44,6 +44,8 @@@@ #define _PR_SI_ARCHITECTURE "x86" #elif defined(__alpha__) #define _PR_SI_ARCHITECTURE "alpha" +#elif defined(__amd64__) +#define _PR_SI_ARCHITECTURE "amd64" #elif defined(__m68k__) #define _PR_SI_ARCHITECTURE "m68k" #elif defined(__powerpc__) @@@@ -95,6 +97,12 @@@@ #define _PR_HAVE_GETPROTO_R_INT d16 1 d18 1 a18 7 +#if __NetBSD_Version__ >= 106370000 +/* NetBSD 1.6ZK */ +#define _PR_HAVE_GETPROTO_R +#define _PR_HAVE_GETPROTO_R_INT +#endif + #define USE_SETJMP a19 1 #ifndef _PR_PTHREADS @ 1.4 log @Update to Thunderbird 1.5. What's new: * Automated update to streamline product upgrades. Notification of an update is more prominent, and updates to Thunderbird may now be half a megabyte or smaller. Updating extensions has also improved. * Sort address autocomplete results by how often you send e-mail to each recipient. * Spell check as you type. * Saved Search Folders can now search across multiple accounts. * Built in phishing detector to help protect users against email scams. * Podcasting and other RSS Improvements. * Deleting attachments from messages. * Integration with server side spam filtering. * Reply and forward actions for message filters. * Kerberos Authentication. * Auto save as draft for mail composition. * Message aging. * Filters for Global Inbox. * Improvements to product usability including redesigned options interface, and SMTP server management. * Many security enhancements. For a more detailed list of changes, see http://weblogs.mozillazine.org/rumblingedge/archives/2006/01/1-5.html Ok with wiz. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @ Update thunderbird to 0.7 Here are the highlights for this release of Thunderbird: * Smaller and Faster The Windows Installer is now only a 5.9MB download. Significant performance improvements on Windows, Linux and Mac OS X! * New Themes and Extension Manager Provides a convenient and secure way to manage and update the many add-ons that set Thunderbird apart from other e-mail clients. * Crash Analysis Tools (Talkback) Help us help you! Integration with Mozilla Talkback allows users to submit crash reports which makes it easier for us to find Thunderbird top crashes. * Other New Features... New user interface for viewing vCards. New Profile Manager which also supports running from a USB device. Color quoting for quoted message parts. Thunderbird now supports a user interface for creating multiple identities per e-mail account. This makes it easy to have several e-mail addresses which end up going into the same account. * Recently Fixed Bugs Fix for an occassional hang when reading IMAP mail over SSL. Our LDAP support works against older version 2 LDAP servers again in addition to version 3. Thunderbird can handle mailto urls that contain raw spaces in the subject. Other bug fixes too numerous to mention! @ text @d3 3 a5 4 diff -ru ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h ./nsprpub/pr/include/md/_netbsd.h --- ../Orig/mozilla/nsprpub/pr/include/md/_netbsd.h 2003-09-12 02:24:53.000000000 +0900 +++ ./nsprpub/pr/include/md/_netbsd.h 2004-06-15 23:56:27.000000000 +0900 @@@@ -44,16 +44,26 @@@@ d14 2 a15 20 #define _PR_SI_ARCHITECTURE "powerpc" +#elif defined(__sparc_v9__) +#define _PR_SI_ARCHITECTURE "sparc64" #elif defined(__sparc__) #define _PR_SI_ARCHITECTURE "sparc" #elif defined(__mips__) #define _PR_SI_ARCHITECTURE "mips" #elif defined(__arm32__) #define _PR_SI_ARCHITECTURE "arm32" +#elif defined(__ARMEL__) +#define _PR_SI_ARCHITECTURE "armel" +#elif defined(__ARMEL__) +#define _PR_SI_ARCHITECTURE "armeb" +#elif defined(__arm__) +#define _PR_SI_ARCHITECTURE "arm" #endif #if defined(__ELF__) @@@@ -86,6 +96,12 @@@@ #define _PR_INET6_PROBE a26 28 @@@@ -108,7 +124,17 @@@@ } #define _MD_GET_SP(_thread) CONTEXT(_thread)[2] #endif -#ifdef __sparc__ +#ifdef __sparc_v9__ +#define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \ +{ \ + sigsetjmp(CONTEXT(_thread), 1); \ + CONTEXT(_thread)[1] = (unsigned char*) ((_sp) - 176 - 0x7ff); \ + CONTEXT(_thread)[2] = (long) _main; \ + CONTEXT(_thread)[3] = (long) _main + 4; \ + *status = PR_TRUE; \ +} +#define _MD_GET_SP(_thread) (CONTEXT(_thread)[2]+0x7ff) +#elif defined(__sparc__) #define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \ { \ sigsetjmp(CONTEXT(_thread), 1); \ @@@@ -150,7 +176,7 @@@@ } #define _MD_GET_SP(_thread) CONTEXT(_thread)[32] #endif -#ifdef __arm32__ +#ifdef __arm__ #define _MD_INIT_CONTEXT(_thread, _sp, _main, status) \ { \ sigsetjmp(CONTEXT(_thread), 1); \ @ 1.3.12.1 log @Pullup ticket 1102 - requested by Geert Hendrickx security update for firefox and thunderbird Updated via patch from the submitter, includes these changes: Module Name: pkgsrc Committed By: joerg Date: Fri Dec 30 21:35:58 UTC 2005 Modified Files: pkgsrc/mail/thunderbird/patches: patch-ab patch-ac patch-aq patch-ba patch-bo patch-bs Added Files: pkgsrc/mail/thunderbird/patches: patch-ar patch-da patch-db patch-dc patch-de patch-df patch-dg patch-dh patch-dj patch-dk patch-dl patch-dm patch-do patch-ds patch-dt Log Message: Add DragonFly build support, partly based on the patches from www/firefox. --- Module Name: pkgsrc Committed By: joerg Date: Wed Jan 4 08:55:08 UTC 2006 Modified Files: pkgsrc/mail/thunderbird: distinfo Log Message: Also commit distinfo. Reminded by wiz@@. --- Module Name: pkgsrc Committed By: ghen Date: Sun Feb 5 14:49:05 UTC 2006 Modified Files: pkgsrc/mail/thunderbird: Makefile Makefile-thunderbird.common PLIST distinfo pkgsrc/mail/thunderbird-gtk1: Makefile PLIST pkgsrc/mail/thunderbird/patches: patch-aa patch-ab patch-ac patch-af patch-ag patch-ai patch-aj patch-al patch-ap patch-aq patch-aw patch-ax patch-bb patch-bo patch-bq patch-br patch-db patch-de patch-df Removed Files: pkgsrc/mail/thunderbird-gtk1: MESSAGE pkgsrc/mail/thunderbird/patches: patch-bt patch-bw patch-cc patch-ce patch-cf Log Message: Update to Thunderbird 1.5. What's new: * Automated update to streamline product upgrades. Notification of an update is more prominent, and updates to Thunderbird may now be half a megabyte or smaller. Updating extensions has also improved. * Sort address autocomplete results by how often you send e-mail to each recipient. * Spell check as you type. * Saved Search Folders can now search across multiple accounts. * Built in phishing detector to help protect users against email scams. * Podcasting and other RSS Improvements. * Deleting attachments from messages. * Integration with server side spam filtering. * Reply and forward actions for message filters. * Kerberos Authentication. * Auto save as draft for mail composition. * Message aging. * Filters for Global Inbox. * Improvements to product usability including redesigned options interface, and SMTP server management. * Many security enhancements. For a more detailed list of changes, see http://weblogs.mozillazine.org/rumblingedge/archives/2006/01/1-5.html Ok with wiz. --- Module Name: pkgsrc Committed By: ghen Date: Sun Feb 5 14:43:59 UTC 2006 Modified Files: pkgsrc/www/mozilla: Makefile.common Log Message: Set CATEGORIES ?=www (instead of =) such that thunderbird (and later sunbird) can override it. Ok for wiz. --- odule Name: pkgsrc Committed By: ghen Date: Sun Feb 5 14:46:31 UTC 2006 Modified Files: pkgsrc/www/firefox: Makefile Makefile-firefox.common PLIST distinfo pkgsrc/www/firefox-gtk1: Makefile PLIST Added Files: pkgsrc/www/firefox/patches: patch-dw patch-dx Removed Files: pkgsrc/www/firefox/patches: patch-bugzilla-319004 Log Message: Update to Firefox 1.5.0.1, a bug fix release for Firefox 1.5. What's new: * Improved stability. * Improved support for Mac OS X. * International Domain Name support for Iceland (.is) is now enabled. * Fixes for several memory leaks. * Several security enhancements. For a more detailed list changes, see http://www.squarefree.com/burningedge/releases/1.5.0.1.html Ok with wiz. @ text @d1 1 a1 1 $NetBSD: patch-bb,v 1.4 2006/02/05 14:49:05 ghen Exp $ d3 4 a6 3 --- nsprpub/pr/include/md/_netbsd.h.orig 2006-02-02 13:52:50.000000000 +0100 +++ nsprpub/pr/include/md/_netbsd.h @@@@ -44,6 +44,8 @@@@ d15 20 a34 2 @@@@ -95,6 +97,12 @@@@ #define _PR_HAVE_GETPROTO_R_INT d46 28 @ 1.2 log @ Update thunderbird to 0.6 What's new from release notes: * Improved Junk Mail Controls The algorithm for the adaptive junk mail controls has been heavily redesigned to learn faster and catch more spam. * New Brand Identity To be consistent with the Mozilla Foundation's goal of brand identity, Thunderbird has a new logo and supporting artwork thanks to the fine work of the Mozilla Visual Identity team. * Other New Features... - IMAP users can now benefit from support for the IMAP IDLE command which allows the mail server to push notifications such as new mail arriving as soon as it arrives. - Thunderbird supports server-wide news filters that apply to all newsgroups on a server. - Thunderbird includes Secure Password Authentication using a new cross-platform NTLM authentication mechanism for IMAP, POP3 and SMTP. - Mail filters can now mark messages as junk. - Tools > Options > Compose > HTML Options allows you to set up default HTML compose options such as font, size and color. - Attachments can be opened directly from the compose window to verify their contents before sending. - Thunderbird now supports the notion of multiple identities per mail account. This makes it easy to have several e-mail addresses which end up going into the same account. Read More about how to set this up. * Recently Fixed Bugs - In the case of a failure when copying a message to an online Sent folder, Thunderbird will now ask if you would like it to try again. - Pasting data from an OpenOffice.org spreadsheet no longer pastes random HTML garbage before the actual spreadsheet data into HTML compose. - Fixed several situations where LDAP connections were left open when using LDAP auto complete or performing searches on LDAP directories. - Improved view source behavior. - Mail notification for POP3 messages that are marked deleted or marked read by mail filters no longer occurs. - The "Mark All Read" keyboard shortcut now works for Linux GTK2. @ text @d5 8 a12 2 +++ ./nsprpub/pr/include/md/_netbsd.h 2004-05-05 23:23:04.000000000 +0900 @@@@ -48,12 +48,20 @@@@ d24 4 a29 4 +#elif defined(__armel__) +#define _PR_SI_ARCHITECTURE "armel" +#elif defined(__armeb__) +#define _PR_SI_ARCHITECTURE "armeb" d33 1 a33 1 @@@@ -86,6 +94,12 @@@@ d46 1 a46 1 @@@@ -108,7 +122,17 @@@@ d65 1 a65 1 @@@@ -150,7 +174,7 @@@@ d70 1 a70 1 +#if defined(__arm32__) || defined(__arm__) || defined(__armel__) || defined(__armeb__) @ 1.1 log @Initial revision @ text @d1 1 a1 1 $NetBSD: patch-bb,v 1.16 2004/02/22 12:02:55 taya Exp $ d5 1 a5 1 +++ ./nsprpub/pr/include/md/_netbsd.h 2004-02-21 16:47:07.000000000 +0900 @ 1.1.1.1 log @ Initial import of thunderbird. Mozilla Thunderbird is a redesign of the Mozilla mail component. The goal is to produce a cross platform stand alone mail application using the XUL user interface language. @ text @@