Date: Thu, 5 Sep 2019 11:25:53 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511176 - in head: Mk mail/thunderbird www/firefox www/firefox-esr Message-ID: <201909051125.x85BPrap095393@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909051125.x85BPrap095393>