Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Sep 2019 11:27:13 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
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
Message-ID:  <201909051127.x85BRDSL095743@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909051127.x85BRDSL095743>