diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2019-09-05 11:25:53 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2019-09-05 11:25:53 +0000 |
commit | 3adffbd3a16b67ceac3954c141a30550bbacf69b (patch) | |
tree | 3f349fc6b46ea29355f9c740a79dce6156c983f6 | |
parent | Update webcamd to version 5.3.7.0 (diff) |
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
Notes
Notes:
svn path=/head/; revision=511176
-rw-r--r-- | Mk/bsd.gecko.mk | 3 | ||||
-rw-r--r-- | mail/thunderbird/Makefile | 1 | ||||
-rw-r--r-- | www/firefox-esr/Makefile | 1 | ||||
-rw-r--r-- | www/firefox/Makefile | 1 |
4 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 8d1ef479ba37..58104b23d391 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -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 diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index d113bd812fd3..b3484ba9b12e 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -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 diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 1b6552dfeff9..d82046f84260 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -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 \ diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 74b896a06393..d877c1a420d7 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -3,6 +3,7 @@ PORTNAME= firefox DISTVERSION= 69.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ |