From nobody@FreeBSD.org  Sat Sep 29 11:01:04 2007
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 181C516A418
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 29 Sep 2007 11:01:04 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id E69E813C48E
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 29 Sep 2007 11:01:03 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.1/8.14.1) with ESMTP id l8TB13Ns093738
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 29 Sep 2007 11:01:03 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.1/8.14.1/Submit) id l8TB13e7093736;
	Sat, 29 Sep 2007 11:01:03 GMT
	(envelope-from nobody)
Message-Id: <200709291101.l8TB13e7093736@www.freebsd.org>
Date: Sat, 29 Sep 2007 11:01:03 GMT
From: bf <bf2006a@yahoo.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [PATCH]math/gnuplot: update to 4.2.2
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         116734
>Category:       ports
>Synopsis:       [PATCH]math/gnuplot: update to 4.2.2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    glewis
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Sep 29 11:10:01 GMT 2007
>Closed-Date:    Sun Oct 07 06:51:53 GMT 2007
>Last-Modified:  Sun Oct  7 07:00:04 GMT 2007
>Originator:     bf
>Release:        6.2-stable i386
>Organization:
-
>Environment:
>Description:
See:

http://www.gnuplot.info/announce.4.2.2




diff -ruN gnuplot.orig/Makefile gnuplot/Makefile
--- gnuplot.orig/Makefile	Sat Sep 29 03:55:40 2007
+++ gnuplot/Makefile	Sat Sep 29 06:12:27 2007
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	gnuplot
-PORTVERSION=	4.2.0
-PORTREVISION=	3
+PORTVERSION=	4.2.2
 CATEGORIES=	math graphics
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME}
@@ -27,8 +26,10 @@
 BUILD_DEPENDS+=	latex:${PORTSDIR}/print/teTeX-base
 
 OPTIONS=	GD		"Enable GD support"		on \
+		GRIDBOX 	"Use the gridbox optimization for hidden3d" off \
 		PDF		"Enable PDF support"		on \
 		PLOT		"Enable plot support"		on \
+		THINSPLINES	"Enable thin plate splines for grids in dgrid3d" off \
 		WX		"Enable WX support"		off
 
 MAN1=		gnuplot.1 lasergnu.1
@@ -51,6 +52,10 @@
 CONFIGURE_ARGS+=	--with-gd=${LOCALBASE}
 .endif
 
+.if !defined(WITHOUT_GRIDBOX)
+CONFIGURE_ARGS+=	--disable-h3d-quadtree --enable-h3d-gridbox
+.endif
+
 .if defined(WITHOUT_PDF)
 CONFIGURE_ARGS+=	--without-pdf
 .else
@@ -63,6 +68,12 @@
 .else
 LIB_DEPENDS+=		plot.4:${PORTSDIR}/graphics/plotutils
 CONFIGURE_ARGS+=	--with-plot=${LOCALBASE}
+.endif
+
+.if defined(WITHOUT_THINSPLINES)
+CONFIGURE_ARGS+=	--disable-thin-splines
+.else
+CONFIGURE_ARGS+=	--enable-thin-splines
 .endif
 
 .if defined(WITHOUT_WX)
diff -ruN gnuplot.orig/distinfo gnuplot/distinfo
--- gnuplot.orig/distinfo	Sat Sep 29 03:55:40 2007
+++ gnuplot/distinfo	Sat Sep 29 05:57:20 2007
@@ -1,3 +1,3 @@
-MD5 (gnuplot-4.2.0.tar.gz) = f688a578ddb4c376fd7d91ce444a0745
-SHA256 (gnuplot-4.2.0.tar.gz) = ede70fb18f05935f0186ae7514e5f77e09d7eab94a4f9cff82ddb48dbcbe20e9
-SIZE (gnuplot-4.2.0.tar.gz) = 2836649
+MD5 (gnuplot-4.2.2.tar.gz) = b9dd34e8210a65336b19ee408766a66f
+SHA256 (gnuplot-4.2.2.tar.gz) = 756f8a058f2743d0ca739a14bd43cda40d6fd9cc14bb50f4d30d92d538478a91
+SIZE (gnuplot-4.2.2.tar.gz) = 2832174
diff -ruN gnuplot.orig/pkg-plist gnuplot/pkg-plist
--- gnuplot.orig/pkg-plist	Sat Sep 29 03:55:40 2007
+++ gnuplot/pkg-plist	Sat Sep 29 05:47:30 2007
@@ -159,6 +159,7 @@
 @dirrmtry share/texmf-local/tex/latex
 @dirrmtry share/texmf-local/tex
 @dirrmtry share/texmf-local
+@dirrmtry share/pixmaps
 @dirrm %%DATADIR%%/4.2/PostScript
 @dirrm %%DATADIR%%/4.2
 @dirrm %%DATADIR%%

>How-To-Repeat:

>Fix:


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->glewis 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Sep 29 11:10:10 UTC 2007 
Responsible-Changed-Why:  
Over to maintainer 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116734 
State-Changed-From-To: open->closed 
State-Changed-By: glewis 
State-Changed-When: Sun Oct 7 06:51:49 UTC 2007 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116734 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/116734: commit references a PR
Date: Sun,  7 Oct 2007 06:51:32 +0000 (UTC)

 glewis      2007-10-07 06:51:22 UTC
 
   FreeBSD ports repository
 
   Modified files:
     math/gnuplot         Makefile distinfo 
   Log:
   . Update to 4.2.2.
   
   PR:             116734
   Submitted by:   bf <bf2006a@yahoo.com>
   
   Revision  Changes    Path
   1.74      +13 -2     ports/math/gnuplot/Makefile
   1.14      +3 -3      ports/math/gnuplot/distinfo
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
