From owner-svn-ports-all@freebsd.org Wed Aug 12 19:07:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B8C19A03A9; Wed, 12 Aug 2015 19:07:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7B7711FC; Wed, 12 Aug 2015 19:07:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJ76e9084111; Wed, 12 Aug 2015 19:07:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJ76cp084108; Wed, 12 Aug 2015 19:07:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508121907.t7CJ76cp084108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 12 Aug 2015 19:07:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394029 - in branches/2015Q3: Mk www/firefox www/firefox-esr X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:07:07 -0000 Author: jbeich Date: Wed Aug 12 19:07:05 2015 New Revision: 394029 URL: https://svnweb.freebsd.org/changeset/ports/394029 Log: MFH: r393984 Add OAuth keys for importing Google contacts into Loop Loop aka Firefox Hello is available since 34.0. https://bugzilla.mozilla.org/show_bug.cgi?id=1106854 Inspired by: ArchLinux Approved by: ports-secteam (delphij) Modified: branches/2015Q3/Mk/bsd.gecko.mk branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2015Q3/Mk/bsd.gecko.mk Wed Aug 12 18:49:20 2015 (r394028) +++ branches/2015Q3/Mk/bsd.gecko.mk Wed Aug 12 19:07:05 2015 (r394029) @@ -256,8 +256,13 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -# XXX stolen from www/chromium -MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 +# API keys from www/chromium +# http://www.chromium.org/developers/how-tos/api-keys +# Note: these are for FreeBSD use ONLY. For your own distribution, +# please get your own set of keys. +MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 \ + MOZ_GOOGLE_OAUTH_API_CLIENTID=996322985003.apps.googleusercontent.com \ + MOZ_GOOGLE_OAUTH_API_KEY=IR1za9-1VK0zZ0f_O8MVFicn .if ${PORT_OPTIONS:MGTK3} MOZ_TOOLKIT= cairo-gtk3 Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Wed Aug 12 18:49:20 2015 (r394028) +++ branches/2015Q3/www/firefox-esr/Makefile Wed Aug 12 19:07:05 2015 (r394029) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Wed Aug 12 18:49:20 2015 (r394028) +++ branches/2015Q3/www/firefox/Makefile Wed Aug 12 19:07:05 2015 (r394029) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \