From owner-svn-ports-head@FreeBSD.ORG Tue Sep 4 03:01:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8D4B106567E; Tue, 4 Sep 2012 03:01:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0350A8FC24; Tue, 4 Sep 2012 03:01:20 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q8431J3i083571; Tue, 4 Sep 2012 03:01:19 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8431JYS083568; Tue, 4 Sep 2012 03:01:19 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201209040301.q8431JYS083568@svn.freebsd.org> From: Mark Linimon Date: Tue, 4 Sep 2012 03:01:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303633 - in head: devel/pwlib lang/tcl86 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Sep 2012 03:01:21 -0000 Author: linimon Date: Tue Sep 4 03:01:19 2012 New Revision: 303633 URL: http://svn.freebsd.org/changeset/ports/303633 Log: Mark as broken on ARM. Modified: head/devel/pwlib/Makefile head/lang/tcl86/Makefile Modified: head/devel/pwlib/Makefile ============================================================================== --- head/devel/pwlib/Makefile Tue Sep 4 02:58:36 2012 (r303632) +++ head/devel/pwlib/Makefile Tue Sep 4 03:01:19 2012 (r303633) @@ -34,6 +34,9 @@ MAKE_JOBS_UNSAFE= yes .include +.if ${ARCH} == "arm" +BROKEN= Does not install on arm: mtree +.endif CFLAGS= -O1 CONFIGURE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" Modified: head/lang/tcl86/Makefile ============================================================================== --- head/lang/tcl86/Makefile Tue Sep 4 02:58:36 2012 (r303632) +++ head/lang/tcl86/Makefile Tue Sep 4 03:01:19 2012 (r303633) @@ -47,6 +47,10 @@ LATEST_LINK= tcl86${THREADS_SUFFIX} .include +.if ${ARCH} == "arm" +BROKEN= Does not build on arm +.endif + .if !defined(WITHOUT_TCL_MODULES) RUN_DEPENDS+= ${LOCALBASE}/lib/tcl8/8.5/tcltest-2.3.4.tm:${PORTSDIR}/lang/tcl-modules .endif