Date: Sat, 3 Nov 2018 11:58:10 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483887 - in head: Mk audio audio/gstreamer1-plugins-lame audio/gstreamer1-plugins-mpg123 audio/gstreamer1-plugins-openmpt audio/gstreamer1-plugins-twolame audio/rhythmbox audio/rhythmb... Message-ID: <201811031158.wA3BwAjD019973@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tijl Date: Sat Nov 3 11:58:10 2018 New Revision: 483887 URL: https://svnweb.freebsd.org/changeset/ports/483887 Log: Update GStreamer to 1.14.4. PR: 231406 Submitted by: Greg V <greg@unrelenting.technology> Exp-run by: antoine Approved by: portmgr (antoine) Added: head/audio/gstreamer1-plugins-openmpt/ head/audio/gstreamer1-plugins-openmpt/Makefile (contents, props changed) head/audio/rhythmbox/files/patch-gst114 (contents, props changed) head/graphics/gstreamer1-plugins-openjpeg/files/patch-inc (contents, props changed) head/graphics/gstreamer1-plugins-vulkan/ head/graphics/gstreamer1-plugins-vulkan/Makefile (contents, props changed) head/multimedia/gstreamer1-libav/files/patch-gst-libs_ext_libav_configure (contents, props changed) head/multimedia/gstreamer1-plugins-aom/ head/multimedia/gstreamer1-plugins-aom/Makefile (contents, props changed) head/multimedia/gstreamer1-plugins-bad/files/patch-ext_wayland_Makefile.in (contents, props changed) Deleted: head/graphics/gstreamer1-plugins-openjpeg/files/patch-openjpeg23 head/multimedia/gstreamer1-plugins-schroedinger/ head/multimedia/gstreamer1-plugins-ugly/files/ head/multimedia/gstreamer1-vaapi/files/ Modified: head/Mk/bsd.gstreamer.mk head/audio/Makefile head/audio/gstreamer1-plugins-lame/Makefile head/audio/gstreamer1-plugins-mpg123/Makefile head/audio/gstreamer1-plugins-twolame/Makefile head/audio/rhythmbox/Makefile head/graphics/Makefile head/graphics/gstreamer1-plugins-gl/Makefile head/graphics/gstreamer1-plugins-gl/pkg-plist head/graphics/gstreamer1-plugins-openjpeg/Makefile head/multimedia/Makefile head/multimedia/gstreamer1-editing-services/Makefile head/multimedia/gstreamer1-editing-services/distinfo head/multimedia/gstreamer1-editing-services/pkg-plist head/multimedia/gstreamer1-libav/Makefile head/multimedia/gstreamer1-libav/distinfo head/multimedia/gstreamer1-plugins-all/Makefile head/multimedia/gstreamer1-plugins-bad/Makefile head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gstfacedetect.h head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsthanddetect.h head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsttemplatematch.cpp head/multimedia/gstreamer1-plugins-bad/pkg-plist head/multimedia/gstreamer1-plugins-core/Makefile head/multimedia/gstreamer1-plugins-dash/Makefile head/multimedia/gstreamer1-plugins-smoothstreaming/Makefile head/multimedia/gstreamer1-plugins/Makefile head/multimedia/gstreamer1-plugins/Makefile.common head/multimedia/gstreamer1-plugins/distinfo head/multimedia/gstreamer1-plugins/pkg-plist head/multimedia/gstreamer1-rtsp-server/Makefile head/multimedia/gstreamer1-rtsp-server/distinfo head/multimedia/gstreamer1-rtsp-server/pkg-plist head/multimedia/gstreamer1-vaapi/Makefile head/multimedia/gstreamer1-vaapi/distinfo head/multimedia/gstreamer1-validate/Makefile head/multimedia/gstreamer1-validate/distinfo head/multimedia/gstreamer1-validate/pkg-plist head/multimedia/gstreamer1/Makefile head/multimedia/gstreamer1/distinfo head/multimedia/gstreamer1/files/patch-Makefile.in head/multimedia/gstreamer1/pkg-plist head/multimedia/py-gstreamer1/Makefile head/multimedia/py-gstreamer1/distinfo head/multimedia/py-gstreamer1/pkg-plist head/net-im/farstream/Makefile head/net-im/farstream/distinfo head/net-im/farstream/pkg-plist head/x11-toolkits/gstreamer1-plugins-gtk/Makefile Modified: head/Mk/bsd.gstreamer.mk ============================================================================== --- head/Mk/bsd.gstreamer.mk Sat Nov 3 11:12:07 2018 (r483886) +++ head/Mk/bsd.gstreamer.mk Sat Nov 3 11:58:10 2018 (r483887) @@ -98,7 +98,6 @@ _GSTREAMER_PLUGINS= \ pango \ pulse \ resindvd \ - schroedinger \ shout2 \ sndfile \ sndio \ @@ -137,6 +136,7 @@ _GSTREAMER_PLUGINS+= \ nas \ python \ qt4 \ + schroedinger \ sdl \ vdpau \ vp8 \ @@ -146,6 +146,7 @@ _GSTREAMER_PLUGINS+= \ # plugins only in 1.0 .if defined(USE_GSTREAMER1) _GSTREAMER_PLUGINS+= \ + aom \ assrender \ bs2b \ chromaprint \ @@ -166,6 +167,7 @@ _GSTREAMER_PLUGINS+= \ openexr \ openh264 \ openjpeg \ + openmpt \ png \ rsvg \ rtmp \ @@ -174,6 +176,7 @@ _GSTREAMER_PLUGINS+= \ srtp \ ttml \ vpx \ + vulkan \ webp \ x \ x265 \ @@ -356,6 +359,9 @@ aalib_IMPL= good annodex_DEPENDS= multimedia/gstreamer-plugins-annodex annodex_IMPL= good +aom_DEPENDS= multimedia/gstreamer-plugins-aom +aom_IMPL= bad + assrender_DEPENDS= multimedia/gstreamer-plugins-assrender assrender_IMPL= bad @@ -392,6 +398,9 @@ openexr_IMPL= bad openjpeg_DEPENDS= graphics/gstreamer-plugins-openjpeg openjpeg_IMPL= bad +openmpt_DEPENDS= audio/gstreamer-plugins-openmpt +openmpt_IMPL= bad + png_DEPENDS= graphics/gstreamer-plugins-png png_IMPL= good @@ -506,6 +515,9 @@ vp8_IMPL= bad vpx_DEPENDS= multimedia/gstreamer-plugins-vpx vpx_IMPL= good + +vulkan_DEPENDS= graphics/gstreamer-plugins-vulkan +vulkan_IMPL= bad # XXX: This is a quick solution for ports with USE_GSTREAMER=python # but without USE_PYTHON. Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/audio/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -303,6 +303,7 @@ SUBDIR += gstreamer1-plugins-mpg123 SUBDIR += gstreamer1-plugins-musepack SUBDIR += gstreamer1-plugins-ogg + SUBDIR += gstreamer1-plugins-openmpt SUBDIR += gstreamer1-plugins-opus SUBDIR += gstreamer1-plugins-pulse SUBDIR += gstreamer1-plugins-shout2 Modified: head/audio/gstreamer1-plugins-lame/Makefile ============================================================================== --- head/audio/gstreamer1-plugins-lame/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/audio/gstreamer1-plugins-lame/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -6,7 +6,7 @@ CATEGORIES= audio COMMENT= GStreamer High-quality free mp3 encode plugin GST_PLUGIN= lame -DIST= ugly +DIST= good MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins Modified: head/audio/gstreamer1-plugins-mpg123/Makefile ============================================================================== --- head/audio/gstreamer1-plugins-mpg123/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/audio/gstreamer1-plugins-mpg123/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -6,7 +6,7 @@ CATEGORIES= audio COMMENT= GStreamer MPEG Layer 1, 2, and 3 plugin GST_PLUGIN= mpg123 -DIST= ugly +DIST= good MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins Added: head/audio/gstreamer1-plugins-openmpt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/gstreamer1-plugins-openmpt/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= audio + +COMMENT= GStreamer OpenMPT audio decoder plugin + +GST_PLUGIN= openmpt +DIST= bad + +OPENMPT_GST_DIRS= gst-libs/gst/audio + +MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins + +pre-build: +.for dir in ${OPENMPT_GST_DIRS} + @(cd ${BUILD_WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}) +.endfor + +.include "${MASTERDIR}/Makefile" Modified: head/audio/gstreamer1-plugins-twolame/Makefile ============================================================================== --- head/audio/gstreamer1-plugins-twolame/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/audio/gstreamer1-plugins-twolame/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -6,7 +6,7 @@ CATEGORIES= audio COMMENT= GStreamer High-quality free MP2 encoder plugin GST_PLUGIN= twolame -DIST= ugly +DIST= good MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins Modified: head/audio/rhythmbox/Makefile ============================================================================== --- head/audio/rhythmbox/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/audio/rhythmbox/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -3,7 +3,7 @@ PORTNAME= rhythmbox PORTVERSION= 3.4.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Added: head/audio/rhythmbox/files/patch-gst114 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/rhythmbox/files/patch-gst114 Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,12 @@ +Obtained from: https://gitlab.gnome.org/GNOME/rhythmbox/commit/b182c6b9e1d09e601bac0b703cc5f8b159ebbc3a +--- plugins/fmradio/rb-fm-radio-gst-src.c.orig ++++ plugins/fmradio/rb-fm-radio-gst-src.c +@@ -178,7 +178,7 @@ plugin_init (GstPlugin *plugin) + + GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, + GST_VERSION_MINOR, +- "rbsilencesrc", ++ rbsilencesrc, + "element to output silence", + plugin_init, + VERSION, Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/graphics/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -342,6 +342,7 @@ SUBDIR += gstreamer1-plugins-openjpeg SUBDIR += gstreamer1-plugins-png SUBDIR += gstreamer1-plugins-rsvg + SUBDIR += gstreamer1-plugins-vulkan SUBDIR += gstreamer1-plugins-webp SUBDIR += gstreamer1-plugins-zbar SUBDIR += gthumb Modified: head/graphics/gstreamer1-plugins-gl/Makefile ============================================================================== --- head/graphics/gstreamer1-plugins-gl/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/graphics/gstreamer1-plugins-gl/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -6,9 +6,9 @@ CATEGORIES= graphics COMMENT= GStreamer GL graphics plugin GST_PLUGIN= gl -DIST= bad +DIST= base -GL_GST_DIRS= gst-libs/gst/allocators +GL_GST_DIRS= gst-libs/gst/allocators gst-libs/gst/video PLIST= ${.CURDIR}/pkg-plist MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins Modified: head/graphics/gstreamer1-plugins-gl/pkg-plist ============================================================================== --- head/graphics/gstreamer1-plugins-gl/pkg-plist Sat Nov 3 11:12:07 2018 (r483886) +++ head/graphics/gstreamer1-plugins-gl/pkg-plist Sat Nov 3 11:58:10 2018 (r483887) @@ -2,6 +2,7 @@ include/gstreamer-%%VERSION%%/gst/gl/egl/gstegl.h include/gstreamer-%%VERSION%%/gst/gl/egl/gsteglimage.h include/gstreamer-%%VERSION%%/gst/gl/egl/gstgldisplay_egl.h include/gstreamer-%%VERSION%%/gst/gl/egl/gstglmemoryegl.h +include/gstreamer-%%VERSION%%/gst/gl/gl-prelude.h include/gstreamer-%%VERSION%%/gst/gl/gl.h include/gstreamer-%%VERSION%%/gst/gl/glprototypes/all_functions.h include/gstreamer-%%VERSION%%/gst/gl/glprototypes/base.h @@ -34,6 +35,7 @@ include/gstreamer-%%VERSION%%/gst/gl/gstglfeature.h include/gstreamer-%%VERSION%%/gst/gl/gstglfilter.h include/gstreamer-%%VERSION%%/gst/gl/gstglformat.h include/gstreamer-%%VERSION%%/gst/gl/gstglframebuffer.h +include/gstreamer-%%VERSION%%/gst/gl/gstglfuncs.h include/gstreamer-%%VERSION%%/gst/gl/gstglmemory.h include/gstreamer-%%VERSION%%/gst/gl/gstglmemorypbo.h include/gstreamer-%%VERSION%%/gst/gl/gstgloverlaycompositor.h @@ -48,12 +50,13 @@ include/gstreamer-%%VERSION%%/gst/gl/gstglupload.h include/gstreamer-%%VERSION%%/gst/gl/gstglutils.h include/gstreamer-%%VERSION%%/gst/gl/gstglviewconvert.h include/gstreamer-%%VERSION%%/gst/gl/gstglwindow.h +include/gstreamer-%%VERSION%%/gst/gl/wayland/gstgldisplay_wayland.h include/gstreamer-%%VERSION%%/gst/gl/x11/gstgldisplay_x11.h -lib/girepository-%%VERSION%%/GstGL-%%VERSION%%.typelib +lib/girepository-1.0/GstGL-%%VERSION%%.typelib lib/gstreamer-%%VERSION%%/include/gst/gl/gstglconfig.h lib/gstreamer-%%VERSION%%/libgstopengl.so lib/libgstgl-%%VERSION%%.so lib/libgstgl-%%VERSION%%.so.0 lib/libgstgl-%%VERSION%%.so.%%SOVERSION%% libdata/pkgconfig/gstreamer-gl-%%VERSION%%.pc -share/gir-%%VERSION%%/GstGL-%%VERSION%%.gir +share/gir-1.0/GstGL-%%VERSION%%.gir Modified: head/graphics/gstreamer1-plugins-openjpeg/Makefile ============================================================================== --- head/graphics/gstreamer1-plugins-openjpeg/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/graphics/gstreamer1-plugins-openjpeg/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -10,6 +10,6 @@ DIST= bad MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins -EXTRA_PATCHES= ${.CURDIR}/files/patch-openjpeg23 +EXTRA_PATCHES= ${.CURDIR}/files/patch-inc .include "${MASTERDIR}/Makefile" Added: head/graphics/gstreamer1-plugins-openjpeg/files/patch-inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gstreamer1-plugins-openjpeg/files/patch-inc Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,30 @@ +Put the openjpeg include directory first, so that <openjpeg.h> includes +$LOCALBASE/include/openjpeg-2.3/openjpeg.h instead of $LOCALBASE/include/openjpeg.h + +--- ext/openjpeg/Makefile.in.orig 2018-09-16 22:05:02.688860000 +0300 ++++ ext/openjpeg/Makefile.in 2018-09-16 22:05:11.316104000 +0300 +@@ -861,21 +861,21 @@ + @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + + libgstopenjpeg_la-gstopenjpegdec.lo: gstopenjpegdec.c +-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -MT libgstopenjpeg_la-gstopenjpegdec.lo -MD -MP -MF $(DEPDIR)/libgstopenjpeg_la-gstopenjpegdec.Tpo -c -o libgstopenjpeg_la-gstopenjpegdec.lo `test -f 'gstopenjpegdec.c' || echo '$(srcdir)/'`gstopenjpegdec.c ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(OPENJPEG_CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -MT libgstopenjpeg_la-gstopenjpegdec.lo -MD -MP -MF $(DEPDIR)/libgstopenjpeg_la-gstopenjpegdec.Tpo -c -o libgstopenjpeg_la-gstopenjpegdec.lo `test -f 'gstopenjpegdec.c' || echo '$(srcdir)/'`gstopenjpegdec.c + @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgstopenjpeg_la-gstopenjpegdec.Tpo $(DEPDIR)/libgstopenjpeg_la-gstopenjpegdec.Plo + @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gstopenjpegdec.c' object='libgstopenjpeg_la-gstopenjpegdec.lo' libtool=yes @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -c -o libgstopenjpeg_la-gstopenjpegdec.lo `test -f 'gstopenjpegdec.c' || echo '$(srcdir)/'`gstopenjpegdec.c + + libgstopenjpeg_la-gstopenjpegenc.lo: gstopenjpegenc.c +-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -MT libgstopenjpeg_la-gstopenjpegenc.lo -MD -MP -MF $(DEPDIR)/libgstopenjpeg_la-gstopenjpegenc.Tpo -c -o libgstopenjpeg_la-gstopenjpegenc.lo `test -f 'gstopenjpegenc.c' || echo '$(srcdir)/'`gstopenjpegenc.c ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(OPENJPEG_CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -MT libgstopenjpeg_la-gstopenjpegenc.lo -MD -MP -MF $(DEPDIR)/libgstopenjpeg_la-gstopenjpegenc.Tpo -c -o libgstopenjpeg_la-gstopenjpegenc.lo `test -f 'gstopenjpegenc.c' || echo '$(srcdir)/'`gstopenjpegenc.c + @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgstopenjpeg_la-gstopenjpegenc.Tpo $(DEPDIR)/libgstopenjpeg_la-gstopenjpegenc.Plo + @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gstopenjpegenc.c' object='libgstopenjpeg_la-gstopenjpegenc.lo' libtool=yes @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -c -o libgstopenjpeg_la-gstopenjpegenc.lo `test -f 'gstopenjpegenc.c' || echo '$(srcdir)/'`gstopenjpegenc.c + + libgstopenjpeg_la-gstopenjpeg.lo: gstopenjpeg.c +-@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -MT libgstopenjpeg_la-gstopenjpeg.lo -MD -MP -MF $(DEPDIR)/libgstopenjpeg_la-gstopenjpeg.Tpo -c -o libgstopenjpeg_la-gstopenjpeg.lo `test -f 'gstopenjpeg.c' || echo '$(srcdir)/'`gstopenjpeg.c ++@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(OPENJPEG_CFLAGS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgstopenjpeg_la_CFLAGS) $(CFLAGS) -MT libgstopenjpeg_la-gstopenjpeg.lo -MD -MP -MF $(DEPDIR)/libgstopenjpeg_la-gstopenjpeg.Tpo -c -o libgstopenjpeg_la-gstopenjpeg.lo `test -f 'gstopenjpeg.c' || echo '$(srcdir)/'`gstopenjpeg.c + @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgstopenjpeg_la-gstopenjpeg.Tpo $(DEPDIR)/libgstopenjpeg_la-gstopenjpeg.Plo + @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gstopenjpeg.c' object='libgstopenjpeg_la-gstopenjpeg.lo' libtool=yes @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ Added: head/graphics/gstreamer1-plugins-vulkan/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gstreamer1-plugins-vulkan/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= graphics + +COMMENT= GStreamer Vulkan graphics plugin + +GST_PLUGIN= vulkan +DIST= bad + +MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins + +.include "${MASTERDIR}/Makefile" Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -127,6 +127,7 @@ SUBDIR += gstreamer1-libav SUBDIR += gstreamer1-plugins SUBDIR += gstreamer1-plugins-all + SUBDIR += gstreamer1-plugins-aom SUBDIR += gstreamer1-plugins-assrender SUBDIR += gstreamer1-plugins-bad SUBDIR += gstreamer1-plugins-core @@ -145,7 +146,6 @@ SUBDIR += gstreamer1-plugins-openh264 SUBDIR += gstreamer1-plugins-resindvd SUBDIR += gstreamer1-plugins-rtmp - SUBDIR += gstreamer1-plugins-schroedinger SUBDIR += gstreamer1-plugins-smoothstreaming SUBDIR += gstreamer1-plugins-theora SUBDIR += gstreamer1-plugins-ttml Modified: head/multimedia/gstreamer1-editing-services/Makefile ============================================================================== --- head/multimedia/gstreamer1-editing-services/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-editing-services/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gstreamer1-editing-services -PORTVERSION= 1.12.3 +PORTVERSION= 1.14.4 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/gstreamer-editing-services/ DISTNAME= gstreamer-editing-services-${PORTVERSION} @@ -12,15 +12,15 @@ COMMENT= GStreamer editing services PORTSCOUT= limitw:1,even -USES= compiler:c11 gmake gnome libtool pathfix python:2.7 pkgconfig tar:xz +USES= compiler:c11 gmake gnome libtool pathfix python:3.6+ pkgconfig tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes -USE_GNOME= glib20 introspection:build libxml2 pygobject3 +USE_GNOME= glib20 introspection:build libxml2 pygobject3:build USE_GSTREAMER1= good INSTALL_TARGET= install-strip CONFIGURE_ARGS= --enable-introspection=yes \ --with-bash-completion-dir=${PREFIX}/share/bash-completion/completions -PLIST_SUB= VERSION=1.0 SOVERSION=0.1203.0 +PLIST_SUB= VERSION=1.0 SOVERSION=0.1404.0 .include <bsd.port.mk> Modified: head/multimedia/gstreamer1-editing-services/distinfo ============================================================================== --- head/multimedia/gstreamer1-editing-services/distinfo Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-editing-services/distinfo Sat Nov 3 11:58:10 2018 (r483887) @@ -1,3 +1,3 @@ -TIMESTAMP = 1506169132 -SHA256 (gstreamer-editing-services-1.12.3.tar.xz) = 032e2fd040079259aec060d526bcb021c670f8d953219c229f80fdc541465f76 -SIZE (gstreamer-editing-services-1.12.3.tar.xz) = 1061796 +TIMESTAMP = 1539380544 +SHA256 (gstreamer-editing-services-1.14.4.tar.xz) = 53d1d25b356009505ae0d22c218d6c6b1215399d9f6e3fe5d7b88e156531b35f +SIZE (gstreamer-editing-services-1.14.4.tar.xz) = 1066636 Modified: head/multimedia/gstreamer1-editing-services/pkg-plist ============================================================================== --- head/multimedia/gstreamer1-editing-services/pkg-plist Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-editing-services/pkg-plist Sat Nov 3 11:58:10 2018 (r483887) @@ -30,6 +30,7 @@ include/gstreamer-%%VERSION%%/ges/ges-operation.h include/gstreamer-%%VERSION%%/ges/ges-overlay-clip.h include/gstreamer-%%VERSION%%/ges/ges-pipeline.h include/gstreamer-%%VERSION%%/ges/ges-pitivi-formatter.h +include/gstreamer-%%VERSION%%/ges/ges-prelude.h include/gstreamer-%%VERSION%%/ges/ges-project.h include/gstreamer-%%VERSION%%/ges/ges-screenshot.h include/gstreamer-%%VERSION%%/ges/ges-smart-adder.h @@ -59,15 +60,13 @@ include/gstreamer-%%VERSION%%/ges/ges-video-transition include/gstreamer-%%VERSION%%/ges/ges-video-uri-source.h include/gstreamer-%%VERSION%%/ges/ges-xml-formatter.h include/gstreamer-%%VERSION%%/ges/ges.h -lib/girepository-%%VERSION%%/GES-%%VERSION%%.typelib +lib/girepository-1.0/GES-%%VERSION%%.typelib lib/gstreamer-%%VERSION%%/libgstnle.so lib/libges-%%VERSION%%.so lib/libges-%%VERSION%%.so.0 lib/libges-%%VERSION%%.so.%%SOVERSION%% %%PYTHON_SITELIBDIR%%/gstreamer-editing-services/GES.py -%%PYTHON_SITELIBDIR%%/gstreamer-editing-services/GES.pyc -%%PYTHON_SITELIBDIR%%/gstreamer-editing-services/GES.pyo libdata/pkgconfig/gst-editing-services-%%VERSION%%.pc man/man1/ges-launch-%%VERSION%%.1.gz share/bash-completion/completions/ges-launch-%%VERSION%% -share/gir-%%VERSION%%/GES-%%VERSION%%.gir +share/gir-1.0/GES-%%VERSION%%.gir Modified: head/multimedia/gstreamer1-libav/Makefile ============================================================================== --- head/multimedia/gstreamer1-libav/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-libav/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gstreamer1-libav -PORTVERSION= 1.12.3 -PORTREVISION= 2 +PORTVERSION= 1.14.4 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-libav/ DISTNAME= gst-libav-${PORTVERSION} Modified: head/multimedia/gstreamer1-libav/distinfo ============================================================================== --- head/multimedia/gstreamer1-libav/distinfo Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-libav/distinfo Sat Nov 3 11:58:10 2018 (r483887) @@ -1,3 +1,3 @@ -TIMESTAMP = 1506169206 -SHA256 (gst-libav-1.12.3.tar.xz) = 015ef8cab6f7fb87c8fb42642486423eff3b6e6a6bccdcd6a189f436a3619650 -SIZE (gst-libav-1.12.3.tar.xz) = 8791724 +TIMESTAMP = 1539380450 +SHA256 (gst-libav-1.14.4.tar.xz) = dfd78591901df7853eab7e56a86c34a1b03635da0d3d56b89aa577f1897865da +SIZE (gst-libav-1.14.4.tar.xz) = 9036732 Added: head/multimedia/gstreamer1-libav/files/patch-gst-libs_ext_libav_configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer1-libav/files/patch-gst-libs_ext_libav_configure Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,26 @@ +--- gst-libs/ext/libav/configure.orig 2018-09-16 15:30:22 UTC ++++ gst-libs/ext/libav/configure +@@ -3372,12 +3372,7 @@ target_os_default=$(tolower $(uname -s)) + host_os=$target_os_default + + # machine +-if test "$target_os_default" = aix; then +- arch_default=$(uname -p) +- strip_default="strip -X32_64" +-else +- arch_default=$(uname -m) +-fi ++arch_default=$(uname -p) + cpu="generic" + intrinsics="none" + +@@ -6492,6 +6487,9 @@ elif enabled llvm_gcc; then + elif enabled clang; then + check_cflags -mllvm -stack-alignment=16 + check_cflags -mstack-alignment=16 ++ if enabled x86_32; then ++ check_cflags -mstackrealign ++ fi + check_cflags -Qunused-arguments + check_cflags -Werror=implicit-function-declaration + check_cflags -Werror=missing-prototypes Modified: head/multimedia/gstreamer1-plugins-all/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-all/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-all/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gstreamer1-plugins-all -PORTVERSION= 1.12 +PORTVERSION= 1.14 PORTREVISION= 0 CATEGORIES= multimedia Added: head/multimedia/gstreamer1-plugins-aom/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer1-plugins-aom/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= multimedia + +COMMENT= GStreamer (libaom) plugin + +GST_PLUGIN= aom +DIST= bad + +MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins + +.include "${MASTERDIR}/Makefile" Modified: head/multimedia/gstreamer1-plugins-bad/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-bad/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-bad/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -1,7 +1,7 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 0 CATEGORIES= multimedia COMMENT= GStreamer-plugins that need more quality, testing or documentation Modified: head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gstfacedetect.h ============================================================================== --- head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gstfacedetect.h Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gstfacedetect.h Sat Nov 3 11:58:10 2018 (r483887) @@ -1,5 +1,5 @@ ---- ext/opencv/gstfacedetect.h.orig 2018-05-02 20:45:00.402253000 +0000 -+++ ext/opencv/gstfacedetect.h 2018-05-02 20:45:40.025207000 +0000 +--- ext/opencv/gstfacedetect.h.orig 2018-03-23 20:45:15 UTC ++++ ext/opencv/gstfacedetect.h @@ -50,7 +50,7 @@ #include <gst/gst.h> Modified: head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsthanddetect.h ============================================================================== --- head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsthanddetect.h Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsthanddetect.h Sat Nov 3 11:58:10 2018 (r483887) @@ -1,5 +1,5 @@ ---- ext/opencv/gsthanddetect.h.orig 2018-05-02 20:46:12.793424000 +0000 -+++ ext/opencv/gsthanddetect.h 2018-05-02 20:46:29.272504000 +0000 +--- ext/opencv/gsthanddetect.h.orig 2018-03-23 20:45:15 UTC ++++ ext/opencv/gsthanddetect.h @@ -45,7 +45,7 @@ #ifndef __GST_HANDDETECT_H__ #define __GST_HANDDETECT_H__ Modified: head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsttemplatematch.cpp ============================================================================== --- head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsttemplatematch.cpp Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-bad/files/patch-ext_opencv_gsttemplatematch.cpp Sat Nov 3 11:58:10 2018 (r483887) @@ -1,5 +1,5 @@ ---- ext/opencv/gsttemplatematch.cpp.orig 2018-05-02 20:48:22.600036000 +0000 -+++ ext/opencv/gsttemplatematch.cpp 2018-05-02 20:50:39.989630000 +0000 +--- ext/opencv/gsttemplatematch.cpp.orig 2018-03-23 20:45:15 UTC ++++ ext/opencv/gsttemplatematch.cpp @@ -64,6 +64,8 @@ #include "../../gst-libs/gst/gst-i18n-plugin.h" #include "gsttemplatematch.h" Added: head/multimedia/gstreamer1-plugins-bad/files/patch-ext_wayland_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer1-plugins-bad/files/patch-ext_wayland_Makefile.in Sat Nov 3 11:58:10 2018 (r483887) @@ -0,0 +1,11 @@ +--- ext/wayland/Makefile.in.orig 2018-09-16 17:59:59 UTC ++++ ext/wayland/Makefile.in +@@ -1198,7 +1198,7 @@ $(shell echo $1 | sed 's/\([a-z\-]\+\)-[a-z]\+-v[0-9]\ + endef + + %-protocol.c : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml +- $(AM_V_GEN)$(wayland_scanner) code < $< > $@ ++ $(AM_V_GEN)$(wayland_scanner) private-code < $< > $@ + + %-client-protocol.h : $(WAYLAND_PROTOCOLS_DATADIR)/$$(call protostability,$$*)/$$(call protoname,$$*)/$$*.xml + $(AM_V_GEN)$(wayland_scanner) client-header < $< > $@ Modified: head/multimedia/gstreamer1-plugins-bad/pkg-plist ============================================================================== --- head/multimedia/gstreamer1-plugins-bad/pkg-plist Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-bad/pkg-plist Sat Nov 3 11:58:10 2018 (r483887) @@ -1,10 +1,10 @@ -include/gstreamer-%%VERSION%%/gst/allocators/badallocators.h -include/gstreamer-%%VERSION%%/gst/allocators/gstphysmemory.h -include/gstreamer-%%VERSION%%/gst/audio/gstaudioaggregator.h -include/gstreamer-%%VERSION%%/gst/base/gstaggregator.h +include/gstreamer-%%VERSION%%/gst/audio/audio-bad-prelude.h +include/gstreamer-%%VERSION%%/gst/audio/gstnonstreamaudiodecoder.h +include/gstreamer-%%VERSION%%/gst/basecamerabinsrc/basecamerabinsrc-prelude.h include/gstreamer-%%VERSION%%/gst/basecamerabinsrc/gstbasecamerasrc.h include/gstreamer-%%VERSION%%/gst/basecamerabinsrc/gstcamerabin-enum.h include/gstreamer-%%VERSION%%/gst/basecamerabinsrc/gstcamerabinpreview.h +include/gstreamer-%%VERSION%%/gst/codecparsers/codecparsers-prelude.h include/gstreamer-%%VERSION%%/gst/codecparsers/gsth264parser.h include/gstreamer-%%VERSION%%/gst/codecparsers/gsth265parser.h include/gstreamer-%%VERSION%%/gst/codecparsers/gstjpeg2000sampling.h @@ -18,7 +18,9 @@ include/gstreamer-%%VERSION%%/gst/codecparsers/gstvp8r include/gstreamer-%%VERSION%%/gst/codecparsers/gstvp9parser.h include/gstreamer-%%VERSION%%/gst/insertbin/gstinsertbin.h include/gstreamer-%%VERSION%%/gst/interfaces/photography-enumtypes.h +include/gstreamer-%%VERSION%%/gst/interfaces/photography-prelude.h include/gstreamer-%%VERSION%%/gst/interfaces/photography.h +include/gstreamer-%%VERSION%%/gst/isoff/gstisoff.h include/gstreamer-%%VERSION%%/gst/mpegts/gst-atsc-section.h include/gstreamer-%%VERSION%%/gst/mpegts/gst-dvb-descriptor.h include/gstreamer-%%VERSION%%/gst/mpegts/gst-dvb-section.h @@ -26,6 +28,7 @@ include/gstreamer-%%VERSION%%/gst/mpegts/gst-scte-sect include/gstreamer-%%VERSION%%/gst/mpegts/gstmpegts-enumtypes.h include/gstreamer-%%VERSION%%/gst/mpegts/gstmpegtsdescriptor.h include/gstreamer-%%VERSION%%/gst/mpegts/gstmpegtssection.h +include/gstreamer-%%VERSION%%/gst/mpegts/mpegts-prelude.h include/gstreamer-%%VERSION%%/gst/mpegts/mpegts.h include/gstreamer-%%VERSION%%/gst/player/gstplayer-g-main-context-signal-dispatcher.h include/gstreamer-%%VERSION%%/gst/player/gstplayer-media-info.h @@ -35,16 +38,28 @@ include/gstreamer-%%VERSION%%/gst/player/gstplayer-vid include/gstreamer-%%VERSION%%/gst/player/gstplayer-video-renderer.h include/gstreamer-%%VERSION%%/gst/player/gstplayer-visualization.h include/gstreamer-%%VERSION%%/gst/player/gstplayer.h +include/gstreamer-%%VERSION%%/gst/player/player-prelude.h include/gstreamer-%%VERSION%%/gst/player/player.h include/gstreamer-%%VERSION%%/gst/uridownloader/gstfragment.h include/gstreamer-%%VERSION%%/gst/uridownloader/gsturidownloader.h include/gstreamer-%%VERSION%%/gst/uridownloader/gsturidownloader_debug.h +include/gstreamer-%%VERSION%%/gst/uridownloader/uridownloader-prelude.h include/gstreamer-%%VERSION%%/gst/video/gstvideoaggregator.h include/gstreamer-%%VERSION%%/gst/video/gstvideoaggregatorpad.h -lib/girepository-1.0/GstBadAllocators-%%VERSION%%.typelib +include/gstreamer-%%VERSION%%/gst/video/video-bad-prelude.h +include/gstreamer-%%VERSION%%/gst/webrtc/dtlstransport.h +include/gstreamer-%%VERSION%%/gst/webrtc/icetransport.h +include/gstreamer-%%VERSION%%/gst/webrtc/rtcsessiondescription.h +include/gstreamer-%%VERSION%%/gst/webrtc/rtpreceiver.h +include/gstreamer-%%VERSION%%/gst/webrtc/rtpsender.h +include/gstreamer-%%VERSION%%/gst/webrtc/rtptransceiver.h +include/gstreamer-%%VERSION%%/gst/webrtc/webrtc-enumtypes.h +include/gstreamer-%%VERSION%%/gst/webrtc/webrtc.h +include/gstreamer-%%VERSION%%/gst/webrtc/webrtc_fwd.h lib/girepository-1.0/GstInsertBin-%%VERSION%%.typelib lib/girepository-1.0/GstMpegts-%%VERSION%%.typelib lib/girepository-1.0/GstPlayer-%%VERSION%%.typelib +lib/girepository-1.0/GstWebRTC-%%VERSION%%.typelib lib/gstreamer-%%VERSION%%/libgstaccurip.so lib/gstreamer-%%VERSION%%/libgstadpcmdec.so lib/gstreamer-%%VERSION%%/libgstadpcmenc.so @@ -52,7 +67,7 @@ lib/gstreamer-%%VERSION%%/libgstaiff.so lib/gstreamer-%%VERSION%%/libgstasfmux.so lib/gstreamer-%%VERSION%%/libgstaudiobuffersplit.so lib/gstreamer-%%VERSION%%/libgstaudiofxbad.so -lib/gstreamer-%%VERSION%%/libgstaudiomixer.so +lib/gstreamer-%%VERSION%%/libgstaudiolatency.so lib/gstreamer-%%VERSION%%/libgstaudiomixmatrix.so lib/gstreamer-%%VERSION%%/libgstaudiovisualizers.so lib/gstreamer-%%VERSION%%/libgstautoconvert.so @@ -76,6 +91,7 @@ lib/gstreamer-%%VERSION%%/libgstgeometrictransform.so lib/gstreamer-%%VERSION%%/libgstid3tag.so lib/gstreamer-%%VERSION%%/libgstinter.so lib/gstreamer-%%VERSION%%/libgstinterlace.so +lib/gstreamer-%%VERSION%%/libgstipcpipeline.so lib/gstreamer-%%VERSION%%/libgstivfparse.so lib/gstreamer-%%VERSION%%/libgstivtc.so lib/gstreamer-%%VERSION%%/libgstjp2kdecimator.so @@ -90,6 +106,7 @@ lib/gstreamer-%%VERSION%%/libgstmxf.so lib/gstreamer-%%VERSION%%/libgstnetsim.so lib/gstreamer-%%VERSION%%/libgstpcapparse.so lib/gstreamer-%%VERSION%%/libgstpnm.so +lib/gstreamer-%%VERSION%%/libgstproxy.so lib/gstreamer-%%VERSION%%/libgstremovesilence.so lib/gstreamer-%%VERSION%%/libgstrfbsrc.so lib/gstreamer-%%VERSION%%/libgstrtponvif.so @@ -112,15 +129,9 @@ lib/gstreamer-%%VERSION%%/libgstyadif.so lib/libgstadaptivedemux-%%VERSION%%.so lib/libgstadaptivedemux-%%VERSION%%.so.0 lib/libgstadaptivedemux-%%VERSION%%.so.%%SOVERSION%% -lib/libgstbadallocators-%%VERSION%%.so -lib/libgstbadallocators-%%VERSION%%.so.0 -lib/libgstbadallocators-%%VERSION%%.so.%%SOVERSION%% lib/libgstbadaudio-%%VERSION%%.so lib/libgstbadaudio-%%VERSION%%.so.0 lib/libgstbadaudio-%%VERSION%%.so.%%SOVERSION%% -lib/libgstbadbase-%%VERSION%%.so -lib/libgstbadbase-%%VERSION%%.so.0 -lib/libgstbadbase-%%VERSION%%.so.%%SOVERSION%% lib/libgstbadvideo-%%VERSION%%.so lib/libgstbadvideo-%%VERSION%%.so.0 lib/libgstbadvideo-%%VERSION%%.so.%%SOVERSION%% @@ -133,6 +144,9 @@ lib/libgstcodecparsers-%%VERSION%%.so.%%SOVERSION%% lib/libgstinsertbin-%%VERSION%%.so lib/libgstinsertbin-%%VERSION%%.so.0 lib/libgstinsertbin-%%VERSION%%.so.%%SOVERSION%% +lib/libgstisoff-%%VERSION%%.so +lib/libgstisoff-%%VERSION%%.so.0 +lib/libgstisoff-%%VERSION%%.so.%%SOVERSION%% lib/libgstmpegts-%%VERSION%%.so lib/libgstmpegts-%%VERSION%%.so.0 lib/libgstmpegts-%%VERSION%%.so.%%SOVERSION%% @@ -145,19 +159,21 @@ lib/libgstplayer-%%VERSION%%.so.%%SOVERSION%% lib/libgsturidownloader-%%VERSION%%.so lib/libgsturidownloader-%%VERSION%%.so.0 lib/libgsturidownloader-%%VERSION%%.so.%%SOVERSION%% -libdata/pkgconfig/gstreamer-bad-allocators-%%VERSION%%.pc +lib/libgstwebrtc-%%VERSION%%.so +lib/libgstwebrtc-%%VERSION%%.so.0 +lib/libgstwebrtc-%%VERSION%%.so.%%SOVERSION%% libdata/pkgconfig/gstreamer-bad-audio-%%VERSION%%.pc -libdata/pkgconfig/gstreamer-bad-base-%%VERSION%%.pc libdata/pkgconfig/gstreamer-bad-video-%%VERSION%%.pc libdata/pkgconfig/gstreamer-codecparsers-%%VERSION%%.pc libdata/pkgconfig/gstreamer-insertbin-%%VERSION%%.pc libdata/pkgconfig/gstreamer-mpegts-%%VERSION%%.pc libdata/pkgconfig/gstreamer-player-%%VERSION%%.pc libdata/pkgconfig/gstreamer-plugins-bad-%%VERSION%%.pc -share/gir-1.0/GstBadAllocators-%%VERSION%%.gir +libdata/pkgconfig/gstreamer-webrtc-%%VERSION%%.pc share/gir-1.0/GstInsertBin-%%VERSION%%.gir share/gir-1.0/GstMpegts-%%VERSION%%.gir share/gir-1.0/GstPlayer-%%VERSION%%.gir +share/gir-1.0/GstWebRTC-%%VERSION%%.gir %%DATADIR%%-%%VERSION%%/presets/GstFreeverb.prs share/locale/af/LC_MESSAGES/gst-plugins-bad-%%VERSION%%.mo share/locale/az/LC_MESSAGES/gst-plugins-bad-%%VERSION%%.mo Modified: head/multimedia/gstreamer1-plugins-core/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-core/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-core/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gstreamer1-plugins-core -PORTVERSION= 1.12 +PORTVERSION= 1.14 CATEGORIES= multimedia audio MASTER_SITES= # empty DISTFILES= # empty Modified: head/multimedia/gstreamer1-plugins-dash/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-dash/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-dash/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -8,6 +8,13 @@ COMMENT= GStreamer Dynamic Adaptive Streaming over HTT GST_PLUGIN= dash DIST= bad +DASH_GST_DIRS= gst-libs/gst/isoff + MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins + +pre-build: +.for dir in ${DASH_GST_DIRS} + @(cd ${BUILD_WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}) +.endfor .include "${MASTERDIR}/Makefile" Modified: head/multimedia/gstreamer1-plugins-smoothstreaming/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-smoothstreaming/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins-smoothstreaming/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -8,6 +8,13 @@ COMMENT= GStreamer parse and demuliplex a Smooth Strea GST_PLUGIN= smoothstreaming DIST= bad +SMOOTH_GST_DIRS= gst-libs/gst/isoff + MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer1-plugins + +pre-build: +.for dir in ${SMOOTH_GST_DIRS} + @(cd ${BUILD_WRKSRC}/${dir}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}) +.endfor .include "${MASTERDIR}/Makefile" Modified: head/multimedia/gstreamer1-plugins/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins/Makefile Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins/Makefile Sat Nov 3 11:58:10 2018 (r483887) @@ -5,7 +5,7 @@ PORTNAME= gstreamer PORTVERSION?= ${BASE_PORTVERSION} # When chasing a shared library for a plug-in bump the PORTREVISION in the # plug-in port instead, like ${category}/gstreamer1-plugin-${PLUGIN}. -PORTREVISION?= 2 +PORTREVISION?= 0 CATEGORIES?= multimedia audio MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-base/:base \ http://gstreamer.freedesktop.org/src/gst-plugins-bad/:bad \ @@ -26,16 +26,16 @@ RUN_DEPENDS+= iso-codes>=0:misc/iso-codes PORTSCOUT= limitw:1,even -BASE_PORTVERSION= 1.12.3 +BASE_PORTVERSION= 1.14.4 BASE_DISTNAME= gst-plugins-base-${BASE_PORTVERSION} BASE_DISTFILE= ${BASE_DISTNAME}${EXTRACT_SUFX} -BAD_PORTVERSION= 1.12.3 +BAD_PORTVERSION= 1.14.4 BAD_DISTNAME= gst-plugins-bad-${BAD_PORTVERSION} BAD_DISTFILE= ${BAD_DISTNAME}${EXTRACT_SUFX} -GOOD_PORTVERSION= 1.12.3 +GOOD_PORTVERSION= 1.14.4 GOOD_DISTNAME= gst-plugins-good-${GOOD_PORTVERSION} GOOD_DISTFILE= ${GOOD_DISTNAME}${EXTRACT_SUFX} -UGLY_PORTVERSION= 1.12.3 +UGLY_PORTVERSION= 1.14.4 UGLY_DISTNAME= gst-plugins-ugly-${UGLY_PORTVERSION} UGLY_DISTFILE= ${UGLY_DISTNAME}${EXTRACT_SUFX} DIST?= base @@ -60,7 +60,7 @@ IGNORE= DIST not specified .endif VERSION= 1.0 -SOVERSION= 0.1203.0 +SOVERSION= 0.1404.0 PLIST_SUB+= VERSION="${VERSION}" \ SOVERSION="${SOVERSION}" Modified: head/multimedia/gstreamer1-plugins/Makefile.common ============================================================================== --- head/multimedia/gstreamer1-plugins/Makefile.common Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins/Makefile.common Sat Nov 3 11:58:10 2018 (r483887) @@ -3,9 +3,11 @@ BASE_GST_ALL_PLUGINS= \ alsa \ cdparanoia \ + gl \ ivorbis \ libvisual \ ogg \ + opengl \ opus \ pango \ theora \ @@ -14,6 +16,7 @@ BASE_GST_ALL_PLUGINS= \ xvideo BAD_GST_ALL_PLUGINS+= \ + aom \ assrender \ bs2b \ chromaprint \ @@ -42,13 +45,12 @@ BAD_GST_ALL_PLUGINS+= \ openal \ opencv \ openexr \ - opengl \ openh264 \ openjpeg \ + openmpt \ resindvd \ rtmp \ rsvg \ - schro \ smoothstreaming \ sndfile \ soundtouch \ @@ -57,6 +59,7 @@ BAD_GST_ALL_PLUGINS+= \ srtp \ ttml \ vdpau \ + vulkan \ wayland \ webp \ webrtcdsp \ @@ -84,11 +87,11 @@ BAD_GST_NON_PLUGINS+= \ --disable-directsound \ --disable-msdk \ --disable-nvenc \ + --disable-nvdec \ --disable-sbc \ --disable-tinyalsa \ --disable-uvch264 \ --disable-vcd \ - --disable-vulkan \ --disable-wasapi \ --disable-wgl \ --disable-winks \ @@ -102,14 +105,17 @@ GOOD_GST_ALL_PLUGINS+= \ gst_v4l2 \ jack \ jpeg \ + lame \ libcaca \ libdv \ libpng \ + mpg123 \ pulse \ shout2 \ soup \ speex \ taglib \ + twolame \ vpx \ wavpack \ x @@ -132,11 +138,8 @@ UGLY_GST_ALL_PLUGINS+= \ amrwb \ cdio \ dvdread \ - lame \ mpeg2dec \ - mpg123 \ sidplay \ - twolame \ x264 UGLY_GST_NON_PLUGINS= @@ -206,6 +209,9 @@ gst_amrwb_LIB_DEPENDS= libopencore-amrwb.so:audio/open gst_amrwb_GST_PLUGIN_DIR= ext/amrwbdec gst_amrwb_PLIST_FILES= ${GST_LIB_DIR}/libgstamrwbdec.so +# aom +gst_aom_LIB_DEPENDS= libaom.so:multimedia/aom + # assrender gst_assrender_LIB_DEPENDS= libass.so:multimedia/libass @@ -266,10 +272,13 @@ gst_gdk_pixbuf_USE_GNOME= gdkpixbuf2 gst_gdk_pixbuf_PLIST_FILES= ${GST_LIB_DIR}/libgstgdkpixbuf.so # gl +gst_gl_USES= gl gst_gl_USE_GL= gl glu glesv2 egl -gst_gl_LIB_DEPENDS= libgraphene-1.0.so:graphics/graphene +gst_gl_BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:multimedia/v4l_compat +gst_gl_LIB_DEPENDS= libgraphene-1.0.so:graphics/graphene \ + libwayland-egl.so:graphics/wayland gst_gl_CONFIGURE_ARGS= --enable-gl --enable-glx \ - --enable-egl --enable-gles2 + --enable-egl --enable-gles2 --enable-wayland gst_gl_GST_PLUGIN_DIR= gst-libs/gst/gl ext/gl gst_gl_PLIST_FILES= # @@ -280,6 +289,8 @@ gst_gme_LIB_DEPENDS= libgme.so:audio/libgme gst_gsm_LIB_DEPENDS= libgsm.so:audio/gsm # gtk3 +gst_gtk3_USES= gnome +gst_gtk3_USE_GSTREAMER1= gl gst_gtk3_USE_GNOME= cairo gdkpixbuf2 gtk30 gst_gtk3_CONFIGURE_ARGS=--enable-gtk3 gst_gtk3_GST_PLUGIN_DIR=ext/gtk @@ -313,6 +324,7 @@ gst_libcaca_PLIST_FILES= ${GST_LIB_DIR}/libgstcacasink # libde265 gst_libde265_LIB_DEPENDS= libde265.so:multimedia/libde265 +gst_libde265_PLIST_FILES= ${GST_LIB_DIR}/libgstde265.so # libmms gst_libmms_LIB_DEPENDS= libmms.so:net/libmms @@ -370,6 +382,9 @@ gst_openjpeg_LIB_DEPENDS= libopenjp2.so:graphics/openj # openh264 gst_openh264_LIB_DEPENDS= libopenh264.so:multimedia/openh264 +# openmpt +gst_openmpt_LIB_DEPENDS= libopenmpt.so:audio/libopenmpt + # opus gst_opus_LIB_DEPENDS= libopus.so:audio/opus @@ -420,12 +435,8 @@ gst_spc_LIB_DEPENDS= libopenspc.so:audio/libopenspc gst_speex_LIB_DEPENDS= libspeex.so:audio/speex # srtp -gst_srtp_LIB_DEPENDS= libsrtp.so:net/libsrtp +gst_srtp_LIB_DEPENDS= libsrtp2.so:net/libsrtp2 -# schroedinger or schro for short -gst_schro_LIB_DEPENDS= libschroedinger-1.0.so:multimedia/schroedinger -gst_schro_GST_PLUGIN_DIR= ext/schroedinger - # taglib gst_taglib_LIB_DEPENDS= libtag.so:audio/taglib @@ -459,6 +470,12 @@ gst_vpx_PLIST_FILES= ${GST_LIB_DIR}/libgstvpx.so \ # vdpau gst_vdpau_LIB_DEPENDS= libvdpau.so:multimedia/libvdpau gst_vdpau_GST_PLUGIN_DIR= sys/vdpau + +# vulkan +gst_vulkan_BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers +gst_vulkan_LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader \ + libwayland-client.so:graphics/wayland +gst_vulkan_CONFIGURE_ARGS= --enable-wayland # webp gst_webp_LIB_DEPENDS= libwebp.so:graphics/webp Modified: head/multimedia/gstreamer1-plugins/distinfo ============================================================================== --- head/multimedia/gstreamer1-plugins/distinfo Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins/distinfo Sat Nov 3 11:58:10 2018 (r483887) @@ -1,9 +1,9 @@ -TIMESTAMP = 1506168324 -SHA256 (gst-plugins-base-1.12.3.tar.xz) = d3d37b8489d37fa0018973d850bd2067b98af335fef2fa543ee7d40359e3cea5 -SIZE (gst-plugins-base-1.12.3.tar.xz) = 3117364 -SHA256 (gst-plugins-bad-1.12.3.tar.xz) = 36d059761852bed0f1a7fcd3ef64a8aeecab95d2bca53cd6aa0f08054b1cbfec -SIZE (gst-plugins-bad-1.12.3.tar.xz) = 4707000 -SHA256 (gst-plugins-ugly-1.12.3.tar.xz) = e88ca584c94ea78eeecbf3af00ef7f134b66bdee7408aa4aa6c547235e060052 -SIZE (gst-plugins-ugly-1.12.3.tar.xz) = 903784 -SHA256 (gst-plugins-good-1.12.3.tar.xz) = 13e7f479296891fef5a686438f20ba7d534680becf2269ecc5ee24aa83b45f03 -SIZE (gst-plugins-good-1.12.3.tar.xz) = 3487448 +TIMESTAMP = 1539380228 +SHA256 (gst-plugins-base-1.14.4.tar.xz) = ca6139490e48863e7706d870ff4e8ac9f417b56f3b9e4b3ce490c13b09a77461 +SIZE (gst-plugins-base-1.14.4.tar.xz) = 3703232 +SHA256 (gst-plugins-bad-1.14.4.tar.xz) = 910b4e0e2e897e8b6d06767af1779d70057c309f67292f485ff988d087aa0de5 +SIZE (gst-plugins-bad-1.14.4.tar.xz) = 4678032 +SHA256 (gst-plugins-ugly-1.14.4.tar.xz) = ac02d837f166c35ff6ce0738e281680d0b90052cfb1f0255dcf6aaca5f0f6d23 +SIZE (gst-plugins-ugly-1.14.4.tar.xz) = 889632 +SHA256 (gst-plugins-good-1.14.4.tar.xz) = 5f8b553260cb0aac56890053d8511db1528d53cae10f0287cfce2cb2acc70979 +SIZE (gst-plugins-good-1.14.4.tar.xz) = 3792524 Modified: head/multimedia/gstreamer1-plugins/pkg-plist ============================================================================== --- head/multimedia/gstreamer1-plugins/pkg-plist Sat Nov 3 11:12:07 2018 (r483886) +++ head/multimedia/gstreamer1-plugins/pkg-plist Sat Nov 3 11:58:10 2018 (r483887) @@ -1,10 +1,13 @@ bin/gst-device-monitor-%%VERSION%% bin/gst-discoverer-%%VERSION%% bin/gst-play-%%VERSION%% +include/gstreamer-%%VERSION%%/gst/allocators/allocators-prelude.h include/gstreamer-%%VERSION%%/gst/allocators/allocators.h include/gstreamer-%%VERSION%%/gst/allocators/gstdmabuf.h include/gstreamer-%%VERSION%%/gst/allocators/gstfdmemory.h +include/gstreamer-%%VERSION%%/gst/allocators/gstphysmemory.h include/gstreamer-%%VERSION%%/gst/app/app-enumtypes.h +include/gstreamer-%%VERSION%%/gst/app/app-prelude.h include/gstreamer-%%VERSION%%/gst/app/app.h include/gstreamer-%%VERSION%%/gst/app/gstappsink.h include/gstreamer-%%VERSION%%/gst/app/gstappsrc.h @@ -14,9 +17,11 @@ include/gstreamer-%%VERSION%%/gst/audio/audio-converte include/gstreamer-%%VERSION%%/gst/audio/audio-enumtypes.h include/gstreamer-%%VERSION%%/gst/audio/audio-format.h include/gstreamer-%%VERSION%%/gst/audio/audio-info.h +include/gstreamer-%%VERSION%%/gst/audio/audio-prelude.h include/gstreamer-%%VERSION%%/gst/audio/audio-quantize.h include/gstreamer-%%VERSION%%/gst/audio/audio-resampler.h include/gstreamer-%%VERSION%%/gst/audio/audio.h +include/gstreamer-%%VERSION%%/gst/audio/gstaudioaggregator.h include/gstreamer-%%VERSION%%/gst/audio/gstaudiobasesink.h include/gstreamer-%%VERSION%%/gst/audio/gstaudiobasesrc.h include/gstreamer-%%VERSION%%/gst/audio/gstaudiocdsrc.h @@ -29,7 +34,9 @@ include/gstreamer-%%VERSION%%/gst/audio/gstaudiometa.h include/gstreamer-%%VERSION%%/gst/audio/gstaudioringbuffer.h include/gstreamer-%%VERSION%%/gst/audio/gstaudiosink.h include/gstreamer-%%VERSION%%/gst/audio/gstaudiosrc.h +include/gstreamer-%%VERSION%%/gst/audio/gstaudiostreamalign.h include/gstreamer-%%VERSION%%/gst/audio/streamvolume.h +include/gstreamer-%%VERSION%%/gst/fft/fft-prelude.h include/gstreamer-%%VERSION%%/gst/fft/fft.h include/gstreamer-%%VERSION%%/gst/fft/gstfft.h include/gstreamer-%%VERSION%%/gst/fft/gstfftf32.h @@ -46,9 +53,11 @@ include/gstreamer-%%VERSION%%/gst/pbutils/gstpluginsba include/gstreamer-%%VERSION%%/gst/pbutils/install-plugins.h include/gstreamer-%%VERSION%%/gst/pbutils/missing-plugins.h include/gstreamer-%%VERSION%%/gst/pbutils/pbutils-enumtypes.h +include/gstreamer-%%VERSION%%/gst/pbutils/pbutils-prelude.h include/gstreamer-%%VERSION%%/gst/pbutils/pbutils.h include/gstreamer-%%VERSION%%/gst/riff/riff-ids.h include/gstreamer-%%VERSION%%/gst/riff/riff-media.h +include/gstreamer-%%VERSION%%/gst/riff/riff-prelude.h include/gstreamer-%%VERSION%%/gst/riff/riff-read.h include/gstreamer-%%VERSION%%/gst/riff/riff.h include/gstreamer-%%VERSION%%/gst/rtp/gstrtcpbuffer.h @@ -60,6 +69,7 @@ include/gstreamer-%%VERSION%%/gst/rtp/gstrtpbuffer.h include/gstreamer-%%VERSION%%/gst/rtp/gstrtpdefs.h include/gstreamer-%%VERSION%%/gst/rtp/gstrtphdrext.h include/gstreamer-%%VERSION%%/gst/rtp/gstrtppayloads.h +include/gstreamer-%%VERSION%%/gst/rtp/rtp-prelude.h include/gstreamer-%%VERSION%%/gst/rtp/rtp.h include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsp-enumtypes.h include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsp.h @@ -70,14 +80,17 @@ include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspmessage. include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsprange.h include/gstreamer-%%VERSION%%/gst/rtsp/gstrtsptransport.h include/gstreamer-%%VERSION%%/gst/rtsp/gstrtspurl.h +include/gstreamer-%%VERSION%%/gst/rtsp/rtsp-prelude.h include/gstreamer-%%VERSION%%/gst/rtsp/rtsp.h include/gstreamer-%%VERSION%%/gst/sdp/gstmikey.h include/gstreamer-%%VERSION%%/gst/sdp/gstsdp.h include/gstreamer-%%VERSION%%/gst/sdp/gstsdpmessage.h +include/gstreamer-%%VERSION%%/gst/sdp/sdp-prelude.h include/gstreamer-%%VERSION%%/gst/sdp/sdp.h include/gstreamer-%%VERSION%%/gst/tag/gsttagdemux.h include/gstreamer-%%VERSION%%/gst/tag/gsttagmux.h include/gstreamer-%%VERSION%%/gst/tag/tag-enumtypes.h +include/gstreamer-%%VERSION%%/gst/tag/tag-prelude.h include/gstreamer-%%VERSION%%/gst/tag/tag.h include/gstreamer-%%VERSION%%/gst/tag/xmpwriter.h include/gstreamer-%%VERSION%%/gst/video/colorbalance.h @@ -104,6 +117,7 @@ include/gstreamer-%%VERSION%%/gst/video/video-frame.h include/gstreamer-%%VERSION%%/gst/video/video-info.h include/gstreamer-%%VERSION%%/gst/video/video-multiview.h include/gstreamer-%%VERSION%%/gst/video/video-overlay-composition.h +include/gstreamer-%%VERSION%%/gst/video/video-prelude.h include/gstreamer-%%VERSION%%/gst/video/video-resampler.h include/gstreamer-%%VERSION%%/gst/video/video-scaler.h include/gstreamer-%%VERSION%%/gst/video/video-tile.h @@ -114,7 +128,6 @@ include/gstreamer-%%VERSION%%/gst/video/videooverlay.h lib/girepository-1.0/GstAllocators-%%VERSION%%.typelib lib/girepository-1.0/GstApp-%%VERSION%%.typelib lib/girepository-1.0/GstAudio-%%VERSION%%.typelib *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811031158.wA3BwAjD019973>