From owner-svn-ports-all@FreeBSD.ORG Tue Mar 26 06:06:31 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 B8EC317A; Tue, 26 Mar 2013 06:06:31 +0000 (UTC) (envelope-from glewis@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 AC3E9D84; Tue, 26 Mar 2013 06:06:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2Q66Vx1032757; Tue, 26 Mar 2013 06:06:31 GMT (envelope-from glewis@svn.freebsd.org) Received: (from glewis@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2Q66VxU032751; Tue, 26 Mar 2013 06:06:31 GMT (envelope-from glewis@svn.freebsd.org) Message-Id: <201303260606.r2Q66VxU032751@svn.freebsd.org> From: Greg Lewis Date: Tue, 26 Mar 2013 06:06:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315259 - in head/math/gnuplot: . 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: Tue, 26 Mar 2013 06:06:31 -0000 Author: glewis Date: Tue Mar 26 06:06:30 2013 New Revision: 315259 URL: http://svnweb.freebsd.org/changeset/ports/315259 Log: . Make gnuplot compile with clang and hence remove the GCC requirement. Submitted by: tijl@ Added: head/math/gnuplot/files/patch-configure (contents, props changed) Modified: head/math/gnuplot/Makefile Modified: head/math/gnuplot/Makefile ============================================================================== --- head/math/gnuplot/Makefile Tue Mar 26 05:38:32 2013 (r315258) +++ head/math/gnuplot/Makefile Tue Mar 26 06:06:30 2013 (r315259) @@ -2,6 +2,7 @@ PORTNAME= gnuplot PORTVERSION= 4.6.2 +PORTREVISION= 1 CATEGORIES= math graphics MASTER_SITES= SF @@ -30,8 +31,6 @@ X11_DESC= Enable X11 support OPTIONS_DEFAULT=CAIRO GD PDF PLOT TETEX WX X11 -USE_GCC= any - MAN1= gnuplot.1 lasergnu.1 .include Added: head/math/gnuplot/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gnuplot/files/patch-configure Tue Mar 26 06:06:30 2013 (r315259) @@ -0,0 +1,11 @@ +--- configure.orig ++++ configure +@@ -5919,7 +5919,7 @@ + fi + + +-if test "${build}" != "${host}" ++if test "$cross_compiling" != no + then + CC=${CC-${host_alias-gcc}} + CFLAGS=${CFLAGS-"-g -O2"}