svn commit: r456580 - head/multimedia/avidemux
Mark Linimon
linimon at FreeBSD.org
Mon Dec 18 03:00:42 UTC 2017
Author: linimon
Date: Mon Dec 18 03:00:41 2017
New Revision: 456580
URL: https://svnweb.freebsd.org/changeset/ports/456580
Log:
Mark broken on aarch64. It looks like this Makefile could use some
modernizing.
Approved by: portmgr (tier-2 blanket)
Modified:
head/multimedia/avidemux/Makefile.common
Modified: head/multimedia/avidemux/Makefile.common
==============================================================================
--- head/multimedia/avidemux/Makefile.common Mon Dec 18 02:41:24 2017 (r456579)
+++ head/multimedia/avidemux/Makefile.common Mon Dec 18 03:00:41 2017 (r456580)
@@ -71,7 +71,7 @@ PLIST_SUB+= NLS="@comment " QT_NLS="@comment "
# for libexecinfo: (so that __builtin_frame_address() finds the top
# of the stack)
-.if ${ARCH} == "amd64"
+.if ${ARCH} == amd64
CFLAGS+= -fno-omit-frame-pointer
#MAKE_ENV+= ARCH=x86_64
#CONFIGURE_ENV+= ARCH=x86_64
@@ -271,8 +271,10 @@ LDFLAGS+= -lc++
USE_GCC= yes
#.endif
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN= Does not compile on ia64, powerpc, or sparc64
+.if ${ARCH} == aarch64
+BROKEN= cmake/admDetermineSystem.cmake:78: CPU not supported
+.elif ${ARCH} == powerpc || ${ARCH} == sparc64
+BROKEN= Does not compile on powerpc or sparc64
.endif
post-patch:
More information about the svn-ports-all
mailing list