From owner-svn-ports-branches@freebsd.org Thu Sep 5 11:27:14 2019 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D7364E3A01; Thu, 5 Sep 2019 11:27:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46PJLp5GWvz4by1; Thu, 5 Sep 2019 11:27:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7ED2434BD; Thu, 5 Sep 2019 11:27:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x85BREat095775; Thu, 5 Sep 2019 11:27:14 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x85BRDSL095743; Thu, 5 Sep 2019 11:27:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201909051127.x85BRDSL095743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 5 Sep 2019 11:27:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r511178 - in branches/2019Q3: Mk mail/thunderbird www/firefox www/firefox-esr X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2019Q3: Mk mail/thunderbird www/firefox www/firefox-esr X-SVN-Commit-Revision: 511178 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Sep 2019 11:27:14 -0000 Author: jbeich Date: Thu Sep 5 11:27:13 2019 New Revision: 511178 URL: https://svnweb.freebsd.org/changeset/ports/511178 Log: MFH: r511176 gecko: don't require gconf on non-Gnome2 desktops Take advantage of lazy bindings by not requiring runtime dependency. DBus is required under Wayland (Gecko-specific) and for MIME handling but GConf2 is useless outside of Gnome2. So, only use GConf2 if it's already installed (similar to PulseAudio). PR: 240323 Approved by: ports-secteam blanket Modified: branches/2019Q3/Mk/bsd.gecko.mk branches/2019Q3/mail/thunderbird/Makefile branches/2019Q3/www/firefox-esr/Makefile branches/2019Q3/www/firefox/Makefile Directory Properties: branches/2019Q3/ (props changed) Modified: branches/2019Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2019Q3/Mk/bsd.gecko.mk Thu Sep 5 11:26:14 2019 (r511177) +++ branches/2019Q3/Mk/bsd.gecko.mk Thu Sep 5 11:27:13 2019 (r511178) @@ -293,7 +293,8 @@ RUN_DEPENDS+= ffmpeg>=0.8,1:multimedia/ffmpeg .endif .if ${PORT_OPTIONS:MGCONF} -USE_GNOME+= gconf2 +# XXX USE_GNOME+=gconf2:build is not supported +BUILD_DEPENDS+= ${LOCALBASE}/lib/libgconf-2.so:devel/gconf2 MOZ_OPTIONS+= --enable-gconf .else MOZ_OPTIONS+= --disable-gconf Modified: branches/2019Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2019Q3/mail/thunderbird/Makefile Thu Sep 5 11:26:14 2019 (r511177) +++ branches/2019Q3/mail/thunderbird/Makefile Thu Sep 5 11:27:13 2019 (r511178) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 60.8.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2019Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2019Q3/www/firefox-esr/Makefile Thu Sep 5 11:26:14 2019 (r511177) +++ branches/2019Q3/www/firefox-esr/Makefile Thu Sep 5 11:27:13 2019 (r511178) @@ -3,6 +3,7 @@ PORTNAME= firefox DISTVERSION= 60.9.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2019Q3/www/firefox/Makefile ============================================================================== --- branches/2019Q3/www/firefox/Makefile Thu Sep 5 11:26:14 2019 (r511177) +++ branches/2019Q3/www/firefox/Makefile Thu Sep 5 11:27:13 2019 (r511178) @@ -3,6 +3,7 @@ PORTNAME= firefox DISTVERSION= 69.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \