Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 May 2015 18:43:35 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385203 - head/lang/luajit
Message-ID:  <201505021843.t42IhZ2x025591@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sbruno
Date: Sat May  2 18:43:35 2015
New Revision: 385203
URL: https://svnweb.freebsd.org/changeset/ports/385203

Log:
  This time, don't delete the requisite includes for the post-install bits.
  
  Reimplement ONLY_FOR_ARCHS such that we know that this port requires newer
  compiler features (which aren't very clear from the port itself).  Probably
  need to validate this on powerpc as we have clang available and gcc ports.
  
  PR:		197132

Modified:
  head/lang/luajit/Makefile

Modified: head/lang/luajit/Makefile
==============================================================================
--- head/lang/luajit/Makefile	Sat May  2 18:00:59 2015	(r385202)
+++ head/lang/luajit/Makefile	Sat May  2 18:43:35 2015	(r385203)
@@ -17,15 +17,14 @@ USE_LDCONFIG=	yes
 
 PLIST_SUB+=	VERSION=${DISTVERSION}
 
+ONLY_FOR_ARCHS=	i386 amd64 armv6
+ONLY_FOR_ARCHS_REASON=	Requires newer gcc/clang to compile.
+
+.include <bsd.port.pre.mk>
+
 post-install:
 	${LN} -sf ${PREFIX}/bin/${PORTNAME}-${DISTVERSION} \
 		${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
-
 .include <bsd.port.post.mk>



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