From owner-svn-ports-all@FreeBSD.ORG Thu May 9 19:48:09 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CA3B11C1; Thu, 9 May 2013 19:48:09 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BBCCEE89; Thu, 9 May 2013 19:48:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r49Jm9cv012118; Thu, 9 May 2013 19:48:09 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r49Jm9uo012117; Thu, 9 May 2013 19:48:09 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201305091948.r49Jm9uo012117@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Thu, 9 May 2013 19:48:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317745 - head/math/sage/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 May 2013 19:48:09 -0000 Author: stephen Date: Thu May 9 19:48:09 2013 New Revision: 317745 URL: http://svnweb.freebsd.org/changeset/ports/317745 Log: - Add patch to the maxima subpackage. This will act as a bandaid to stop the build process soaking up huge amounts of resources for apparently no good reason. Added: head/math/sage/files/spkg-patch-maxima_-_src_interfaces_xmaxima_Makefile.in (contents, props changed) Added: head/math/sage/files/spkg-patch-maxima_-_src_interfaces_xmaxima_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/sage/files/spkg-patch-maxima_-_src_interfaces_xmaxima_Makefile.in Thu May 9 19:48:09 2013 (r317745) @@ -0,0 +1,20 @@ +--- maxima-5.29.1.p1/src/interfaces/xmaxima/Makefile.in-orig 2013-05-09 02:26:31.000000000 +0000 ++++ maxima-5.29.1.p1/src/interfaces/xmaxima/Makefile.in 2013-05-09 02:30:12.000000000 +0000 +@@ -624,14 +624,10 @@ + tclIndex:: $(TKSOURCES) + echo "source ../ObjTcl/Object.tcl; auto_mkindex . $(TKSOURCES)" | $(TCLSH) + +-# Create Tkmaxima/tclIndex if tclsh is available. Otherwise, create empty file +-# to satisfy make. ++# Create empty Tkmaxima/tclIndex, because attempting to create it using tclsh ++# seems to soak up huge amounts of resources. + Tkmaxima/tclIndex: $(TKSOURCES) +- $(TCLSH) < /dev/null > /dev/null 2>&1 && \ +- (cd Tkmaxima ; \ +- echo "source ../ObjTcl/Object.tcl; auto_mkindex . $(ALLFILES)" | \ +- $(TCLSH)) || \ +- touch Tkmaxima/tclIndex ++ touch Tkmaxima/tclIndex + + FORCE: + # Tell versions [3.59,3.63) of GNU make to not export all variables.