svn commit: r511176 - in head: Mk mail/thunderbird www/firefox www/firefox-esr

Jan Beich jbeich at FreeBSD.org
Thu Sep 5 11:25:54 UTC 2019


Author: jbeich
Date: Thu Sep  5 11:25:53 2019
New Revision: 511176
URL: https://svnweb.freebsd.org/changeset/ports/511176

Log:
  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

Modified:
  head/Mk/bsd.gecko.mk   (contents, props changed)
  head/mail/thunderbird/Makefile   (contents, props changed)
  head/www/firefox-esr/Makefile   (contents, props changed)
  head/www/firefox/Makefile   (contents, props changed)

Modified: head/Mk/bsd.gecko.mk
==============================================================================
--- head/Mk/bsd.gecko.mk	Thu Sep  5 11:20:01 2019	(r511175)
+++ head/Mk/bsd.gecko.mk	Thu Sep  5 11:25:53 2019	(r511176)
@@ -247,7 +247,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: head/mail/thunderbird/Makefile
==============================================================================
--- head/mail/thunderbird/Makefile	Thu Sep  5 11:20:01 2019	(r511175)
+++ head/mail/thunderbird/Makefile	Thu Sep  5 11:25:53 2019	(r511176)
@@ -3,6 +3,7 @@
 
 PORTNAME=	thunderbird
 DISTVERSION=	68.1.0
+PORTREVISION=	1
 CATEGORIES=	mail news net-im ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source

Modified: head/www/firefox-esr/Makefile
==============================================================================
--- head/www/firefox-esr/Makefile	Thu Sep  5 11:20:01 2019	(r511175)
+++ head/www/firefox-esr/Makefile	Thu Sep  5 11:25:53 2019	(r511176)
@@ -3,6 +3,7 @@
 
 PORTNAME=	firefox
 DISTVERSION=	68.1.0
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \

Modified: head/www/firefox/Makefile
==============================================================================
--- head/www/firefox/Makefile	Thu Sep  5 11:20:01 2019	(r511175)
+++ head/www/firefox/Makefile	Thu Sep  5 11:25:53 2019	(r511176)
@@ -3,6 +3,7 @@
 
 PORTNAME=	firefox
 DISTVERSION=	69.0
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \


More information about the svn-ports-all mailing list