svn commit: r404688 - in head: Mk mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey
Jan Beich
jbeich at FreeBSD.org
Mon Dec 28 18:18:05 UTC 2015
Author: jbeich
Date: Mon Dec 28 18:18:03 2015
New Revision: 404688
URL: https://svnweb.freebsd.org/changeset/ports/404688
Log:
gecko: phase out GStreamer support
H.264 is decoded by FFmpeg directly since Firefox 43.0. GStreamer
doesn't support DASH and no longer used by default since r397984
brings libavcodec.so.
https://bugzilla.mozilla.org/show_bug.cgi?id=1234092
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)
head/www/firefox/Makefile.options (contents, props changed)
head/www/libxul/Makefile (contents, props changed)
head/www/seamonkey/Makefile (contents, props changed)
Modified: head/Mk/bsd.gecko.mk
==============================================================================
--- head/Mk/bsd.gecko.mk Mon Dec 28 18:17:22 2015 (r404687)
+++ head/Mk/bsd.gecko.mk Mon Dec 28 18:18:03 2015 (r404688)
@@ -322,6 +322,13 @@ MOZ_OPTIONS+= --enable-startup-notificat
MOZ_OPTIONS+= --disable-dbus --disable-libnotify
.endif
+.if ${PORT_OPTIONS:MFFMPEG}
+# dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp
+RUN_DEPENDS+= ffmpeg>=0.8,1:${PORTSDIR}/multimedia/ffmpeg
+.else
+MOZ_OPTIONS+= --disable-ffmpeg
+.endif
+
.if ${PORT_OPTIONS:MGSTREAMER}
USE_GSTREAMER1?=good libav
MOZ_OPTIONS+= --enable-gstreamer=1.0
Modified: head/mail/thunderbird/Makefile
==============================================================================
--- head/mail/thunderbird/Makefile Mon Dec 28 18:17:22 2015 (r404687)
+++ head/mail/thunderbird/Makefile Mon Dec 28 18:18:03 2015 (r404688)
@@ -3,7 +3,7 @@
PORTNAME= thunderbird
DISTVERSION= 38.4.0
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= mail news net-im ipv6
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source
Modified: head/www/firefox-esr/Makefile
==============================================================================
--- head/www/firefox-esr/Makefile Mon Dec 28 18:17:22 2015 (r404687)
+++ head/www/firefox-esr/Makefile Mon Dec 28 18:18:03 2015 (r404688)
@@ -4,7 +4,7 @@
PORTNAME= firefox
DISTVERSION= 38.4.0
DISTVERSIONSUFFIX=esr.source
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= www ipv6
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \
Modified: head/www/firefox/Makefile
==============================================================================
--- head/www/firefox/Makefile Mon Dec 28 18:17:22 2015 (r404687)
+++ head/www/firefox/Makefile Mon Dec 28 18:18:03 2015 (r404688)
@@ -4,7 +4,7 @@
PORTNAME= firefox
DISTVERSION= 43.0.1
DISTVERSIONSUFFIX=.source
-PORTREVISION= 2
+PORTREVISION= 3
PORTEPOCH= 1
CATEGORIES= www ipv6
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
@@ -49,7 +49,7 @@ MOZ_OPTIONS= --program-transform-name='s
--enable-application=browser \
--enable-official-branding
-OPTIONS_EXCLUDE= LOGGING
+OPTIONS_EXCLUDE= GSTREAMER LOGGING
OPTIONS_DEFAULT= GTK2
OPTIONS_SINGLE+= TOOLKIT
Modified: head/www/firefox/Makefile.options
==============================================================================
--- head/www/firefox/Makefile.options Mon Dec 28 18:17:22 2015 (r404687)
+++ head/www/firefox/Makefile.options Mon Dec 28 18:18:03 2015 (r404688)
@@ -1,10 +1,10 @@
# -*- makefile-bsdmake -*-
-OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DTRACE GCONF GIO \
+OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DTRACE FFMPEG GCONF GIO \
GNOMEUI GSTREAMER INTEGER_SAMPLES LIBPROXY LOGGING \
OPTIMIZED_CFLAGS PGO PROFILE TEST
-OPTIONS_DEFAULT+= DBUS GIO GSTREAMER LOGGING OPTIMIZED_CFLAGS \
+OPTIONS_DEFAULT+= DBUS FFMPEG GIO GSTREAMER LOGGING OPTIMIZED_CFLAGS \
${OPTIONS_MULTI_AUDIO} \
${MACHINE_CPU:tu:MSOFTFP:S/SOFTFP/INTEGER_SAMPLES/}
Modified: head/www/libxul/Makefile
==============================================================================
--- head/www/libxul/Makefile Mon Dec 28 18:17:22 2015 (r404687)
+++ head/www/libxul/Makefile Mon Dec 28 18:18:03 2015 (r404688)
@@ -3,7 +3,7 @@
PORTNAME= libxul
DISTVERSION= 38.4.0
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES?= www devel
MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \
MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source
Modified: head/www/seamonkey/Makefile
==============================================================================
--- head/www/seamonkey/Makefile Mon Dec 28 18:17:22 2015 (r404687)
+++ head/www/seamonkey/Makefile Mon Dec 28 18:18:03 2015 (r404688)
@@ -4,7 +4,7 @@
PORTNAME= seamonkey
DISTVERSION= 2.39
MOZILLA_VER= 42 # above + 3
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES?= www mail news editors irc ipv6
MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source
More information about the svn-ports-all
mailing list