Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Feb 2019 17:03:44 +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: r493172 - head/multimedia/ffmpeg
Message-ID:  <201902171703.x1HH3ini053000@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sun Feb 17 17:03:44 2019
New Revision: 493172
URL: https://svnweb.freebsd.org/changeset/ports/493172

Log:
  multimedia/ffmpeg: unbreak "make makesum" after r493156
  
  ====> Two or more enabled options conflict with each other
  =====> Option SVTAV1 conflicts with SVTVP9 (select only one)
  ======> Both vendor patches cannot be applied at the same time
  =====> Option SVTVP9 conflicts with SVTAV1 (select only one)
  ======> Both vendor patches cannot be applied at the same time
  *** Error code 1

Modified:
  head/multimedia/ffmpeg/Makefile   (contents, props changed)

Modified: head/multimedia/ffmpeg/Makefile
==============================================================================
--- head/multimedia/ffmpeg/Makefile	Sun Feb 17 17:03:32 2019	(r493171)
+++ head/multimedia/ffmpeg/Makefile	Sun Feb 17 17:03:44 2019	(r493172)
@@ -414,10 +414,11 @@ SVTAV1_LIB_DEPENDS=	libSvtAv1Enc.so:multimedia/svt-av1
 SVTAV1_CONFIGURE_ON=	--enable-libsvtav1
 SVTAV1_PATCH_SITES=	https://github.com/OpenVisualCloud/SVT-AV1/raw/37a5b96/ffmpeg_plugin/:svtav1
 SVTAV1_PATCHFILES=	0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch:-p1:svtav1
-SVTAV1_PREVENTS=	SVTVP9
-SVTAV1_PREVENTS_MSG=	Both vendor patches cannot be applied at the same time
 .if make(makesum)
 .MAKEFLAGS:		WITH+=SVTAV1
+.else
+SVTAV1_PREVENTS=	SVTVP9
+SVTAV1_PREVENTS_MSG=	Only one SVT vendor patch can be applied at the same time
 .endif
 
 # svt-vp9
@@ -425,10 +426,11 @@ SVTVP9_LIB_DEPENDS=	libSvtVp9Enc.so:multimedia/svt-vp9
 SVTVP9_CONFIGURE_ON=	--enable-libsvtvp9
 SVTVP9_PATCH_SITES=	https://github.com/OpenVisualCloud/SVT-VP9/raw/2437369/ffmpeg_plugin/:svtvp9
 SVTVP9_PATCHFILES=	0001-Add-ability-for-ffmpeg-to-run-svt-vp9.patch:-p1:svtvp9
-SVTVP9_PREVENTS=	SVTAV1
-SVTVP9_PREVENTS_MSG=	${SVTAV1_PREVENTS_MSG}
 .if make(makesum)
 .MAKEFLAGS:		WITH+=SVTVP9
+.else
+SVTVP9_PREVENTS=	SVTAV1
+SVTVP9_PREVENTS_MSG=	${SVTAV1_PREVENTS_MSG}
 .endif
 
 # tensorflow



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902171703.x1HH3ini053000>