diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-08-18 21:39:46 +0000 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-08-18 21:39:46 +0000 |
commit | 4307f530677534bded5b40d6ebb49daccd43c53f (patch) | |
tree | 91a4bd6bd9d42fa2cd7a0c9ac8c711f0910dd65a | |
parent | 5f2fca9df29c5ab3295245cd2accdd84c6436816 (diff) | |
download | FreeBSD-ports-4307f530677534bded5b40d6ebb49daccd43c53f.zip FreeBSD-ports-4307f530677534bded5b40d6ebb49daccd43c53f.tar.gz |
gecko: stop calling home to check for updates after r436423
Upstream seems to define "default" as Nightly (custom build), not safe
to update automatically. Once we switched to proper channels updater
kicked in, except Mozilla never built binaries for FreeBSD. Not to
mention, vendor updates conflict with system package manager.
PR: 221541
MFH: 2017Q3
-rw-r--r-- | Mk/bsd.gecko.mk | 1 | ||||
-rw-r--r-- | mail/thunderbird/Makefile | 1 | ||||
-rw-r--r-- | www/firefox-esr/Makefile | 1 | ||||
-rw-r--r-- | www/firefox/Makefile | 1 | ||||
-rw-r--r-- | www/libxul/Makefile | 2 | ||||
-rw-r--r-- | www/seamonkey/Makefile | 2 |
6 files changed, 6 insertions, 2 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index cfc4941..0978fd6 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -252,6 +252,7 @@ MOZ_OPTIONS+= \ --enable-chrome-format=${MOZ_CHROME} \ --enable-default-toolkit=${MOZ_TOOLKIT} \ --enable-update-channel=${MOZ_CHANNEL} \ + --disable-updater \ --enable-pie \ --with-pthreads # Configure options for install diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index c05cb73..ef941af 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 52.3.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index f25e99e..06f3870 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 52.3.0 DISTVERSIONSUFFIX=esr.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ diff --git a/www/firefox/Makefile b/www/firefox/Makefile index c612cb8..9c45723 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 55.0.2 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ diff --git a/www/libxul/Makefile b/www/libxul/Makefile index 090c00c..5c331c5 100644 --- a/www/libxul/Makefile +++ b/www/libxul/Makefile @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 45.9.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build3/source diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index d9cd594..35934df 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -4,7 +4,7 @@ PORTNAME= seamonkey DISTVERSION= 2.48 MOZILLA_VER= 51 # above + 3 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source |