svn commit: r507589 - head/multimedia/ffmpeg

Jan Beich jbeich at FreeBSD.org
Mon Jul 29 19:24:34 UTC 2019


Author: jbeich
Date: Mon Jul 29 19:24:31 2019
New Revision: 507589
URL: https://svnweb.freebsd.org/changeset/ports/507589

Log:
  multimedia/ffmpeg: both nasm and as(1) are not used
  
  powerpcspe doesn't support AltiVec unlike powerpc or powerpc64.
  
  PR:		239509

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

Modified: head/multimedia/ffmpeg/Makefile
==============================================================================
--- head/multimedia/ffmpeg/Makefile	Mon Jul 29 19:24:23 2019	(r507588)
+++ head/multimedia/ffmpeg/Makefile	Mon Jul 29 19:24:31 2019	(r507589)
@@ -14,8 +14,14 @@ COMMENT=	Realtime audio/video encoder/converter and st
 LICENSE=	GPLv2+ LGPL21+
 LICENSE_COMB=	multi
 
-BUILD_DEPENDS=	nasm:devel/nasm \
-		${LOCALBASE}/bin/as:devel/binutils
+BUILD_DEPENDS=	${BUILD_DEPENDS_${ARCH}}
+BUILD_DEPENDS_aarch64=	as:devel/binutils
+BUILD_DEPENDS_amd64=	nasm:devel/nasm
+BUILD_DEPENDS_armv6=	as:devel/binutils
+BUILD_DEPENDS_armv7=	as:devel/binutils
+BUILD_DEPENDS_i386=	nasm:devel/nasm
+BUILD_DEPENDS_powerpc64=as:devel/binutils
+BUILD_DEPENDS_powerpc=	as:devel/binutils
 
 HAS_CONFIGURE=	yes
 CONFIGURE_LOG=	ffbuild/config.log


More information about the svn-ports-head mailing list