svn commit: r303632 - in head: databases/mysql41-server databases/mysql50-server databases/mysql51-server databases/mysql55-server devel/llvm editors/emacs net/socat sysutils/lsof www/varnish

Mark Linimon linimon at FreeBSD.org
Tue Sep 4 02:58:37 UTC 2012


Author: linimon
Date: Tue Sep  4 02:58:36 2012
New Revision: 303632
URL: http://svn.freebsd.org/changeset/ports/303632

Log:
  Mark as broken on ARM.
  
  Approved by:	maintainer

Modified:
  head/databases/mysql41-server/Makefile
  head/databases/mysql50-server/Makefile
  head/databases/mysql51-server/Makefile
  head/databases/mysql55-server/Makefile
  head/devel/llvm/Makefile
  head/editors/emacs/Makefile
  head/net/socat/Makefile
  head/sysutils/lsof/Makefile
  head/www/varnish/Makefile

Modified: head/databases/mysql41-server/Makefile
==============================================================================
--- head/databases/mysql41-server/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/databases/mysql41-server/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -62,6 +62,10 @@ CONFIGURE_ARGS+=--with-collation=${WITH_
 
 .include <bsd.port.pre.mk>
 
+.if ${ARCH} == "arm"
+BROKEN=		Does not compile on arm
+.endif
+
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
 .endif

Modified: head/databases/mysql50-server/Makefile
==============================================================================
--- head/databases/mysql50-server/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/databases/mysql50-server/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -70,6 +70,10 @@ CONFIGURE_ARGS+=--with-collation=${WITH_
 
 .include <bsd.port.pre.mk>
 
+.if ${ARCH} == "arm"
+BROKEN=		Does not compile on arm
+.endif
+
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
 .endif

Modified: head/databases/mysql51-server/Makefile
==============================================================================
--- head/databases/mysql51-server/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/databases/mysql51-server/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -67,6 +67,10 @@ CONFIGURE_ARGS+=--with-collation=${WITH_
 
 .include <bsd.port.pre.mk>
 
+.if ${ARCH} == "arm"
+BROKEN=		Does not compile on arm
+.endif
+
 .if ${ARCH} == "i386"
 CONFIGURE_ARGS+=--enable-assembler
 .endif

Modified: head/databases/mysql55-server/Makefile
==============================================================================
--- head/databases/mysql55-server/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/databases/mysql55-server/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -90,4 +90,10 @@ post-install:
 post-patch:
 	@${REINPLACE_CMD} 's/*.1/${MAN1}/' ${WRKSRC}/man/CMakeLists.txt
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "arm"
+BROKEN=		Does not compile on arm
+.endif
+
+.include <bsd.port.post.mk>

Modified: head/devel/llvm/Makefile
==============================================================================
--- head/devel/llvm/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/devel/llvm/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -80,7 +80,9 @@ PLIST_FILES+=		lib/LLVMgold.so
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "sparc64"
+.if ${ARCH} == "arm"
+BROKEN=		Does not compile on arm
+.elif ${ARCH} == "sparc64"
 BROKEN=		does not compile on sparc64
 .endif
 

Modified: head/editors/emacs/Makefile
==============================================================================
--- head/editors/emacs/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/editors/emacs/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -242,7 +242,9 @@ CONFIGURE_ARGS+=	--without-gnutls
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "ia64"
+.if ${ARCH} == "arm"
+BROKEN=	Emacs 24.X does not currently build on arm
+.elif ${ARCH} == "ia64"
 BROKEN=	Emacs 24.X does not currently build on ia64
 .endif
 

Modified: head/net/socat/Makefile
==============================================================================
--- head/net/socat/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/net/socat/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -43,4 +43,10 @@ do-install:
 	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
 .endif
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "arm"
+BROKEN=		Does not configure on arm
+.endif
+
+.include <bsd.port.post.mk>

Modified: head/sysutils/lsof/Makefile
==============================================================================
--- head/sysutils/lsof/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/sysutils/lsof/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -40,10 +40,15 @@ WRKSRC=		${WRKDIR}/${DISTNAME}/${SRCBALL
 .endif
 
 USE_BZIP2=	yes
+USE_GCC=	yes
 HAS_CONFIGURE=	yes
 
 .include <bsd.port.pre.mk>
 
+.if ${ARCH} == "arm"
+BROKEN=		Does not compile on arm
+.endif
+
 CONFIGURE_SCRIPT=	Configure
 CONFIGURE_ARGS=	-n freebsd
 CONFIGURE_ENV=	LSOF_CC="${CC}" FREEBSD_SYS="${SRC_BASE}/sys"

Modified: head/www/varnish/Makefile
==============================================================================
--- head/www/varnish/Makefile	Tue Sep  4 00:55:36 2012	(r303631)
+++ head/www/varnish/Makefile	Tue Sep  4 02:58:36 2012	(r303632)
@@ -54,4 +54,10 @@ post-install:
 .endfor
 	@${CAT} ${PKGMESSAGE}
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "arm"
+BROKEN=		Does not configure on arm
+.endif
+
+.include <bsd.port.post.mk>



More information about the svn-ports-all mailing list