svn commit: r385200 - head/lang/luajit

Sean Bruno sbruno at FreeBSD.org
Sat May 2 17:52:29 UTC 2015


Author: sbruno
Date: Sat May  2 17:52:28 2015
New Revision: 385200
URL: https://svnweb.freebsd.org/changeset/ports/385200

Log:
  lang/luajit requires a much more modern compiler than the gcc4.2.1 available
  on non-clang architechtures.  In addition, if there is no lang/gcc available
  for the architecuture, we can't build it via that method either.
  
  Rework archtecture disable to use ONLY_FOR_ARCHS and give a clearer reason
  why this is being disabled on powrepc/mips/sparc64.
  
  PR:		197132
  Reviewed by:	osa at freebsd.org (maintainer)

Modified:
  head/lang/luajit/Makefile

Modified: head/lang/luajit/Makefile
==============================================================================
--- head/lang/luajit/Makefile	Sat May  2 17:18:02 2015	(r385199)
+++ head/lang/luajit/Makefile	Sat May  2 17:52:28 2015	(r385200)
@@ -22,10 +22,7 @@ post-install:
 		${STAGEDIR}${PREFIX}/bin/${PORTNAME}
 	@${INSTALL_MAN} ${WRKSRC}/etc/luajit.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
 
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
-BROKEN=		Does not compile on ia64, powerpc, or sparc64
-.endif
+ONLY_FOR_ARCHS= i386 amd64 armv6
+ONLY_FOR_ARCHS_REASON= Requires newer gcc/clang to compile.
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list