Index: head/mail/thunderbird/Makefile =================================================================== --- head/mail/thunderbird/Makefile (revision 549074) +++ head/mail/thunderbird/Makefile (revision 549075) @@ -1,81 +1,81 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 78.2.2 +DISTVERSION= 78.3.0 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BROKEN_powerpc64= fails to build: gmake[4]: *** [backend.mk:47: .deps/node.stub.stub] Error 246 BUILD_DEPENDS= nspr>=4.26:devel/nspr \ nss>=3.56:security/nss \ icu>=67.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=2.6.6:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.35:graphics/png \ libvpx>=1.8.2:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip LIB_DEPENDS= libjson-c.so:devel/json-c \ libbotan-2.so:security/botan2 SSP_UNSAFE= yes USE_GECKO= gecko USE_MOZILLA= -sqlite USES= tar:xz MOZ_OPTIONS= --enable-application=comm/mail --enable-official-branding MOZ_OPTIONS+= --with-system-bz2 --with-system-jsonc --with-system-botan MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 PORTNAME_ICON= ${MOZILLA}.png PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js OPTIONS_DEFINE= LIGHTNING OPTIONS_DEFAULT=CANBERRA LIGHTNING .include "${.CURDIR}/../../www/firefox/Makefile.options" .include .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar .else MOZ_OPTIONS+= --disable-calendar .endif post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/comm/mail/app/nsMailApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) port-pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/defaults post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${LN} -sf ${PORTNAME_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME_ICON} .include Index: head/mail/thunderbird/distinfo =================================================================== --- head/mail/thunderbird/distinfo (revision 549074) +++ head/mail/thunderbird/distinfo (revision 549075) @@ -1,3 +1,3 @@ -TIMESTAMP = 1599607340 -SHA256 (thunderbird-78.2.2.source.tar.xz) = 63e8641551d21f6a185e100260bae33d4ab529e30eb0e4d85a57f3aed974ec67 -SIZE (thunderbird-78.2.2.source.tar.xz) = 353246904 +TIMESTAMP = 1600518543 +SHA256 (thunderbird-78.3.0.source.tar.xz) = 72728883f8999a154769f879d9f5642d9a3a987ec8275353a1c33a151cd30a99 +SIZE (thunderbird-78.3.0.source.tar.xz) = 354482972 Index: head/mail/thunderbird/files/patch-bug1664607 =================================================================== --- head/mail/thunderbird/files/patch-bug1664607 (revision 549074) +++ head/mail/thunderbird/files/patch-bug1664607 (nonexistent) @@ -1,49 +0,0 @@ -# HG changeset patch -# User Rob Lemley -# Date 1600079976 -10800 -# Node ID 6379c3b860f7a1acc01dc549b6ce3cedf250831b -# Parent d1ffffd30cb1c6b4c636f89006c89cfa73282216 -Bug 1664607 - Don't try to load what's new page when built with updater disabled. r=mkmelin DONTBUILD - -When Thunderbird is built with --disable-updater, as it done by most Linux -distributions, accessing the nsIUpdateManager service will throw an error -resulting in a broken UI. Check AppConstants.MOZ_UPDATER when using -nsIUpdateManger to prevent errors. - -Differential Revision: https://phabricator.services.mozilla.com/D90023 - -diff --git a/mail/base/content/specialTabs.js b/mail/base/content/specialTabs.js ---- comm/mail/base/content/specialTabs.js -+++ comm/mail/base/content/specialTabs.js -@@ -1048,18 +1048,20 @@ var specialTabs = { - Services.prefs.setCharPref("mailnews.start_page_override.mstone", mstone); - } - -- let update = Cc["@mozilla.org/updates/update-manager;1"].getService( -- Ci.nsIUpdateManager -- ).activeUpdate; -+ if (AppConstants.MOZ_UPDATER) { -+ let update = Cc["@mozilla.org/updates/update-manager;1"].getService( -+ Ci.nsIUpdateManager -+ ).activeUpdate; - -- if (update && Services.vc.compare(update.appVersion, old_mstone) > 0) { -- let overridePage = Services.urlFormatter.formatURLPref( -- "mailnews.start_page.override_url" -- ); -- overridePage = this.getPostUpdateOverridePage(update, overridePage); -- overridePage = overridePage.replace("%OLD_VERSION%", old_mstone); -- if (overridePage) { -- openLinkExternally(overridePage); -+ if (update && Services.vc.compare(update.appVersion, old_mstone) > 0) { -+ let overridePage = Services.urlFormatter.formatURLPref( -+ "mailnews.start_page.override_url" -+ ); -+ overridePage = this.getPostUpdateOverridePage(update, overridePage); -+ overridePage = overridePage.replace("%OLD_VERSION%", old_mstone); -+ if (overridePage) { -+ openLinkExternally(overridePage); -+ } - } - } - }, Property changes on: head/mail/thunderbird/files/patch-bug1664607 ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property