svn commit: r385203 - head/lang/luajit
Sean Bruno
sbruno at FreeBSD.org
Sat May 2 18:43:36 UTC 2015
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>
More information about the svn-ports-all
mailing list