Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jul 2019 19:24:32 +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: r507589 - head/multimedia/ffmpeg
Message-ID:  <201907291924.x6TJOWQr054085@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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