From tkato@prontomail.com  Fri Jan 10 07:00:22 2003
Return-Path: <tkato@prontomail.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 9D38737B401
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 10 Jan 2003 07:00:22 -0800 (PST)
Received: from socigeog.hmt.toyama-u.ac.jp (socigeog.hmt.toyama-u.ac.jp [160.26.63.48])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 2BC1B43F6D
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 10 Jan 2003 07:00:19 -0800 (PST)
	(envelope-from tkato@prontomail.com)
Received: from localhost (localhost [127.0.0.1])
	by socigeog.hmt.toyama-u.ac.jp (Postfix) with SMTP id 8D1E2769
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 11 Jan 2003 00:00:15 +0900 (JST)
Message-Id: <20030110235826.1c81a319.tkato@prontomail.com>
Date: Fri, 10 Jan 2003 23:58:26 +0900
From: KATO Tsuguru <tkato@prontomail.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: Update port: math/gnuplot to 3.7.3

>Number:         46945
>Category:       ports
>Synopsis:       Update port: math/gnuplot to 3.7.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    chuckr
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jan 10 07:10:09 PST 2003
>Closed-Date:    Tue Jun 03 09:17:13 PDT 2003
>Last-Modified:  Tue Jun 03 09:17:13 PDT 2003
>Originator:     KATO Tsuguru
>Release:        FreeBSD 4.7-RELEASE-p2 i386
>Organization:
>Environment:
>Description:
- Update to version 3.7.3

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/math/gnuplot/Makefile math/gnuplot/Makefile
--- /usr/ports/math/gnuplot/Makefile	Mon Nov 25 22:19:16 2002
+++ math/gnuplot/Makefile	Mon Dec 23 09:15:33 2002
@@ -6,56 +6,47 @@
 #
 
 PORTNAME=	gnuplot
-PORTVERSION=	3.7.2
+PORTVERSION=	3.7.3
 CATEGORIES=	math graphics
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	${PORTNAME}
 
 MAINTAINER=	chuckr@FreeBSD.org
 
-LIB_DPEENDS=
-.if !defined(WITHOUT_PNG)
-LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
-.endif
-.if !defined(WITHOUT_PDF)
-LIB_DEPENDS+=	pdf.4:${PORTSDIR}/print/pdflib
-.endif
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--datadir=${PREFIX}/share \
+		--without-linux-vga --without-gd \
+		--with-readline=gnu --with-lasergnu
+
+MAN1=		gnuplot.1 lasergnu.1
 
 .if !defined(WITHOUT_X11)
 USE_XLIB=	yes
+PLIST_SUB+=		X11:=""
+.else
+CONFIGURE_ARGS+=	--without-x
+PLIST_SUB+=		X11:="@comment "
 .endif
 
-GNU_CONFIGURE=	yes
-CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include"
-CONFIGURE_ARGS=	--exec-prefix=${PREFIX} \
-		--includedir=${LOCALBASE}/include/ \
-		--libdir=${LOCALBASE}/lib \
-		--without-linux-vga --without-gd \
-		--with-readline=gnu --with-lasergnu 
 .if !defined(WITHOUT_PNG)
-CONFIGURE_ARGS+=--with-png=${LOCALBASE}
-.else
-CONFIGURE_ARGS+=--without-png
-.endif
-.if !defined(WITHOUT_PDF)
-CONFIGURE_ARGS+=--with-pdf=${LOCALBASE}
+LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
+CONFIGURE_ARGS+=	--with-png=${LOCALBASE}
 .else
-CONFIGURE_ARGS+=--without-pdf
+CONFIGURE_ARGS+=	--without-png
 .endif
 
-.if defined(WITHOUT_X11)
-CONFIGURE_ARGS+=	--without-x
-PLIST_SUB+=		X11:="@comment "
+.if !defined(WITHOUT_PDF)
+LIB_DEPENDS+=	pdf.4:${PORTSDIR}/print/pdflib
+CONFIGURE_ARGS+=	--with-pdf=${LOCALBASE}
 .else
-CONFIGURE_ARGS+=	--with-x
-PLIST_SUB+=		X11:=""
+CONFIGURE_ARGS+=	--without-pdf
 .endif
 
 post-install:
-	${MKDIR} ${PREFIX}/share/doc/gnuplot
-	(cd ${WRKSRC}/demo;for EXAMPLES in ${WRKSRC}/demo/*; do ${INSTALL_DATA} $${EXAMPLES} ${PREFIX}/share/doc/gnuplot;done)
-	${INSTALL_DATA} ${FILESDIR}/README ${PREFIX}/share/doc/gnuplot
-
-MAN1=		gnuplot.1 lasergnu.1
+.if !defined(NOPORTDOCS)
+	@${MKDIR} ${EXAMPLESDIR}
+	${INSTALL_DATA} ${FILESDIR}/README ${EXAMPLESDIR}
+	${INSTALL_DATA} ${WRKSRC}/demo/* ${EXAMPLESDIR}
+.endif
 
 .include <bsd.port.mk>
diff -urN /usr/ports/math/gnuplot/distinfo math/gnuplot/distinfo
--- /usr/ports/math/gnuplot/distinfo	Tue Nov  5 19:04:09 2002
+++ math/gnuplot/distinfo	Sun Dec 22 18:06:55 2002
@@ -1 +1 @@
-MD5 (gnuplot-3.7.2.tar.gz) = 92f2ef0d6ab39a3fcaa0d008bf1b21c8
+MD5 (gnuplot-3.7.3.tar.gz) = 07921c091153b1f52825fb291849d36d
diff -urN /usr/ports/math/gnuplot/pkg-plist math/gnuplot/pkg-plist
--- /usr/ports/math/gnuplot/pkg-plist	Fri Nov  8 21:24:47 2002
+++ math/gnuplot/pkg-plist	Mon Dec 23 09:12:30 2002
@@ -1,70 +1,68 @@
-bin/lasergnu
 bin/gnuplot
 %%X11:%%bin/gnuplot_x11
-share/gnuplot.gih
-share/doc/gnuplot/1.dat
-share/doc/gnuplot/2.dat
-share/doc/gnuplot/3.dat
-share/doc/gnuplot/airfoil.dem
-share/doc/gnuplot/all.dem
-share/doc/gnuplot/animate.dem
-share/doc/gnuplot/battery.dat
-share/doc/gnuplot/big_peak.dat
-share/doc/gnuplot/binary.dem
-share/doc/gnuplot/bivariat.dem
-share/doc/gnuplot/borders.dem
-share/doc/gnuplot/contours.dem
-share/doc/gnuplot/controls.dem
-share/doc/gnuplot/density.fnc
-share/doc/gnuplot/discrete.dem
-share/doc/gnuplot/electron.dem
-share/doc/gnuplot/fit.dem
-share/doc/gnuplot/glass.dat
-share/doc/gnuplot/gnuplot.rot
-share/doc/gnuplot/hemisphr.dat
-share/doc/gnuplot/hexa.fnc
-share/doc/gnuplot/hidden.dem
-share/doc/gnuplot/klein.dat
-share/doc/gnuplot/lcdemo.dat
-share/doc/gnuplot/line.fnc
-share/doc/gnuplot/mgr.dem
-share/doc/gnuplot/moli3.dat
-share/doc/gnuplot/multimsh.dem
-share/doc/gnuplot/multiplt.dem
-share/doc/gnuplot/param.dem
-share/doc/gnuplot/polar.dem
-share/doc/gnuplot/poldat.dem
-share/doc/gnuplot/prob.dem
-share/doc/gnuplot/prob2.dem
-share/doc/gnuplot/random.dem
-share/doc/gnuplot/reflect.fnc
-share/doc/gnuplot/reread.bor
-share/doc/gnuplot/scatter.dem
-share/doc/gnuplot/scatter2.dat
-share/doc/gnuplot/silver.dat
-share/doc/gnuplot/simple.dem
-share/doc/gnuplot/singulr.dem
-share/doc/gnuplot/sound.par
-share/doc/gnuplot/sound2.par
-share/doc/gnuplot/soundvel.dat
-share/doc/gnuplot/spline.dem
-share/doc/gnuplot/start.par
-share/doc/gnuplot/stat.inc
-share/doc/gnuplot/steps.dat
-share/doc/gnuplot/steps.dem
-share/doc/gnuplot/surface1.dem
-share/doc/gnuplot/surface2.dem
-share/doc/gnuplot/timedat.dat
-share/doc/gnuplot/timedat.dem
-share/doc/gnuplot/using.dat
-share/doc/gnuplot/using.dem
-share/doc/gnuplot/vector.dem
-share/doc/gnuplot/whale.dat
-share/doc/gnuplot/world.cor
-share/doc/gnuplot/world.dat
-share/doc/gnuplot/world.dem
-share/doc/gnuplot/binary1
-share/doc/gnuplot/binary2
-share/doc/gnuplot/binary3
-share/doc/gnuplot/README
-@dirrm share/doc/gnuplot
+bin/lasergnu
+@unexec install-info --delete%D/info/gnuplot.info %D/info.dir
+info/gnuplot.info
+@unexec install-info %D/info/gnuplot.info %D/info.dir
+%%PORTDOCS%%share/examples/gnuplot/1.dat
+%%PORTDOCS%%share/examples/gnuplot/2.dat
+%%PORTDOCS%%share/examples/gnuplot/3.dat
+%%PORTDOCS%%share/examples/gnuplot/airfoil.dem
+%%PORTDOCS%%share/examples/gnuplot/all.dem
+%%PORTDOCS%%share/examples/gnuplot/animate.dem
+%%PORTDOCS%%share/examples/gnuplot/battery.dat
+%%PORTDOCS%%share/examples/gnuplot/big_peak.dat
+%%PORTDOCS%%share/examples/gnuplot/binary.dem
+%%PORTDOCS%%share/examples/gnuplot/bivariat.dem
+%%PORTDOCS%%share/examples/gnuplot/borders.dem
+%%PORTDOCS%%share/examples/gnuplot/contours.dem
+%%PORTDOCS%%share/examples/gnuplot/controls.dem
+%%PORTDOCS%%share/examples/gnuplot/density.fnc
+%%PORTDOCS%%share/examples/gnuplot/discrete.dem
+%%PORTDOCS%%share/examples/gnuplot/electron.dem
+%%PORTDOCS%%share/examples/gnuplot/fit.dem
+%%PORTDOCS%%share/examples/gnuplot/glass.dat
+%%PORTDOCS%%share/examples/gnuplot/gnuplot.rot
+%%PORTDOCS%%share/examples/gnuplot/hemisphr.dat
+%%PORTDOCS%%share/examples/gnuplot/hexa.fnc
+%%PORTDOCS%%share/examples/gnuplot/hidden.dem
+%%PORTDOCS%%share/examples/gnuplot/klein.dat
+%%PORTDOCS%%share/examples/gnuplot/lcdemo.dat
+%%PORTDOCS%%share/examples/gnuplot/line.fnc
+%%PORTDOCS%%share/examples/gnuplot/mgr.dem
+%%PORTDOCS%%share/examples/gnuplot/moli3.dat
+%%PORTDOCS%%share/examples/gnuplot/multimsh.dem
+%%PORTDOCS%%share/examples/gnuplot/multiplt.dem
+%%PORTDOCS%%share/examples/gnuplot/param.dem
+%%PORTDOCS%%share/examples/gnuplot/polar.dem
+%%PORTDOCS%%share/examples/gnuplot/poldat.dem
+%%PORTDOCS%%share/examples/gnuplot/prob.dem
+%%PORTDOCS%%share/examples/gnuplot/prob2.dem
+%%PORTDOCS%%share/examples/gnuplot/random.dem
+%%PORTDOCS%%share/examples/gnuplot/reflect.fnc
+%%PORTDOCS%%share/examples/gnuplot/reread.bor
+%%PORTDOCS%%share/examples/gnuplot/scatter.dem
+%%PORTDOCS%%share/examples/gnuplot/scatter2.dat
+%%PORTDOCS%%share/examples/gnuplot/silver.dat
+%%PORTDOCS%%share/examples/gnuplot/simple.dem
+%%PORTDOCS%%share/examples/gnuplot/singulr.dem
+%%PORTDOCS%%share/examples/gnuplot/sound.par
+%%PORTDOCS%%share/examples/gnuplot/sound2.par
+%%PORTDOCS%%share/examples/gnuplot/soundvel.dat
+%%PORTDOCS%%share/examples/gnuplot/spline.dem
+%%PORTDOCS%%share/examples/gnuplot/start.par
+%%PORTDOCS%%share/examples/gnuplot/stat.inc
+%%PORTDOCS%%share/examples/gnuplot/steps.dat
+%%PORTDOCS%%share/examples/gnuplot/steps.dem
+%%PORTDOCS%%share/examples/gnuplot/surface1.dem
+%%PORTDOCS%%share/examples/gnuplot/surface2.dem
+%%PORTDOCS%%share/examples/gnuplot/timedat.dat
+%%PORTDOCS%%share/examples/gnuplot/timedat.dem
+%%PORTDOCS%%share/examples/gnuplot/using.dat
+%%PORTDOCS%%share/examples/gnuplot/using.dem
+%%PORTDOCS%%share/examples/gnuplot/vector.dem
+%%PORTDOCS%%share/examples/gnuplot/whale.dat
+%%PORTDOCS%%share/examples/gnuplot/world.cor
+%%PORTDOCS%%share/examples/gnuplot/world.dat
+%%PORTDOCS%%share/examples/gnuplot/world.dem
+%%PORTDOCS%%@dirrm share/examples/gnuplot
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports->chuckr 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Jan 11 16:49:40 PST 2003 
Responsible-Changed-Why:  
Over to maintainer 

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

From: KATO Tsuguru <tkato@prontomail.com>
To: freebsd-gnats-submit@FreeBSD.org
Cc:  
Subject: Re: ports/46945: Update port: math/gnuplot to 3.7.3
Date: Sun, 11 May 2003 11:19:26 +0900

 Here is an up-to-date patch.
 
 diff -urN /usr/ports/math/gnuplot/Makefile math/gnuplot/Makefile
 --- /usr/ports/math/gnuplot/Makefile	Tue Apr 15 04:48:15 2003
 +++ math/gnuplot/Makefile	Sat May 10 23:38:43 2003
 @@ -6,7 +6,7 @@
  #
  
  PORTNAME=	gnuplot
 -PORTVERSION=	3.7.2
 +PORTVERSION=	3.7.3
  CATEGORIES=	math graphics
  MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
  MASTER_SITE_SUBDIR=	${PORTNAME}
 @@ -14,49 +14,40 @@
  MAINTAINER=	chuckr@FreeBSD.org
  COMMENT=	A command-driven interactive function plotting program
  
 -LIB_DPEENDS=
 -.if !defined(WITHOUT_PNG)
 -LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
 -.endif
 -.if !defined(WITHOUT_PDF)
 -LIB_DEPENDS+=	pdf.4:${PORTSDIR}/print/pdflib4
 -.endif
 +GNU_CONFIGURE=	yes
 +CONFIGURE_ARGS=	--datadir=${PREFIX}/share \
 +		--without-linux-vga --without-gd \
 +		--with-readline=gnu --with-lasergnu
 +
 +MAN1=		gnuplot.1 lasergnu.1
  
  .if !defined(WITHOUT_X11)
  USE_XLIB=	yes
 +PLIST_SUB+=		X11:=""
 +.else
 +CONFIGURE_ARGS+=	--without-x
 +PLIST_SUB+=		X11:="@comment "
  .endif
  
 -GNU_CONFIGURE=	yes
 -CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include"
 -CONFIGURE_ARGS=	--exec-prefix=${PREFIX} \
 -		--includedir=${LOCALBASE}/include/ \
 -		--libdir=${LOCALBASE}/lib \
 -		--without-linux-vga --without-gd \
 -		--with-readline=gnu --with-lasergnu 
  .if !defined(WITHOUT_PNG)
 -CONFIGURE_ARGS+=--with-png=${LOCALBASE}
 -.else
 -CONFIGURE_ARGS+=--without-png
 -.endif
 -.if !defined(WITHOUT_PDF)
 -CONFIGURE_ARGS+=--with-pdf=${LOCALBASE}
 +LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
 +CONFIGURE_ARGS+=	--with-png=${LOCALBASE}
  .else
 -CONFIGURE_ARGS+=--without-pdf
 +CONFIGURE_ARGS+=	--without-png
  .endif
  
 -.if defined(WITHOUT_X11)
 -CONFIGURE_ARGS+=	--without-x
 -PLIST_SUB+=		X11:="@comment "
 +.if !defined(WITHOUT_PDF)
 +LIB_DEPENDS+=	pdf.4:${PORTSDIR}/print/pdflib
 +CONFIGURE_ARGS+=	--with-pdf=${LOCALBASE}
  .else
 -CONFIGURE_ARGS+=	--with-x
 -PLIST_SUB+=		X11:=""
 +CONFIGURE_ARGS+=	--without-pdf
  .endif
  
  post-install:
 -	${MKDIR} ${PREFIX}/share/doc/gnuplot
 -	(cd ${WRKSRC}/demo;for EXAMPLES in ${WRKSRC}/demo/*; do ${INSTALL_DATA} $${EXAMPLES} ${PREFIX}/share/doc/gnuplot;done)
 -	${INSTALL_DATA} ${FILESDIR}/README ${PREFIX}/share/doc/gnuplot
 -
 -MAN1=		gnuplot.1 lasergnu.1
 +.if !defined(NOPORTDOCS)
 +	@${MKDIR} ${EXAMPLESDIR}
 +	${INSTALL_DATA} ${FILESDIR}/README ${EXAMPLESDIR}
 +	${INSTALL_DATA} ${WRKSRC}/demo/* ${EXAMPLESDIR}
 +.endif
  
  .include <bsd.port.mk>
 diff -urN /usr/ports/math/gnuplot/distinfo math/gnuplot/distinfo
 --- /usr/ports/math/gnuplot/distinfo	Tue Nov  5 19:04:09 2002
 +++ math/gnuplot/distinfo	Sun Dec 22 18:06:55 2002
 @@ -1 +1 @@
 -MD5 (gnuplot-3.7.2.tar.gz) = 92f2ef0d6ab39a3fcaa0d008bf1b21c8
 +MD5 (gnuplot-3.7.3.tar.gz) = 07921c091153b1f52825fb291849d36d
 diff -urN /usr/ports/math/gnuplot/pkg-plist math/gnuplot/pkg-plist
 --- /usr/ports/math/gnuplot/pkg-plist	Fri Nov  8 21:24:47 2002
 +++ math/gnuplot/pkg-plist	Mon Dec 23 09:12:30 2002
 @@ -1,70 +1,68 @@
 -bin/lasergnu
  bin/gnuplot
  %%X11:%%bin/gnuplot_x11
 -share/gnuplot.gih
 -share/doc/gnuplot/1.dat
 -share/doc/gnuplot/2.dat
 -share/doc/gnuplot/3.dat
 -share/doc/gnuplot/airfoil.dem
 -share/doc/gnuplot/all.dem
 -share/doc/gnuplot/animate.dem
 -share/doc/gnuplot/battery.dat
 -share/doc/gnuplot/big_peak.dat
 -share/doc/gnuplot/binary.dem
 -share/doc/gnuplot/bivariat.dem
 -share/doc/gnuplot/borders.dem
 -share/doc/gnuplot/contours.dem
 -share/doc/gnuplot/controls.dem
 -share/doc/gnuplot/density.fnc
 -share/doc/gnuplot/discrete.dem
 -share/doc/gnuplot/electron.dem
 -share/doc/gnuplot/fit.dem
 -share/doc/gnuplot/glass.dat
 -share/doc/gnuplot/gnuplot.rot
 -share/doc/gnuplot/hemisphr.dat
 -share/doc/gnuplot/hexa.fnc
 -share/doc/gnuplot/hidden.dem
 -share/doc/gnuplot/klein.dat
 -share/doc/gnuplot/lcdemo.dat
 -share/doc/gnuplot/line.fnc
 -share/doc/gnuplot/mgr.dem
 -share/doc/gnuplot/moli3.dat
 -share/doc/gnuplot/multimsh.dem
 -share/doc/gnuplot/multiplt.dem
 -share/doc/gnuplot/param.dem
 -share/doc/gnuplot/polar.dem
 -share/doc/gnuplot/poldat.dem
 -share/doc/gnuplot/prob.dem
 -share/doc/gnuplot/prob2.dem
 -share/doc/gnuplot/random.dem
 -share/doc/gnuplot/reflect.fnc
 -share/doc/gnuplot/reread.bor
 -share/doc/gnuplot/scatter.dem
 -share/doc/gnuplot/scatter2.dat
 -share/doc/gnuplot/silver.dat
 -share/doc/gnuplot/simple.dem
 -share/doc/gnuplot/singulr.dem
 -share/doc/gnuplot/sound.par
 -share/doc/gnuplot/sound2.par
 -share/doc/gnuplot/soundvel.dat
 -share/doc/gnuplot/spline.dem
 -share/doc/gnuplot/start.par
 -share/doc/gnuplot/stat.inc
 -share/doc/gnuplot/steps.dat
 -share/doc/gnuplot/steps.dem
 -share/doc/gnuplot/surface1.dem
 -share/doc/gnuplot/surface2.dem
 -share/doc/gnuplot/timedat.dat
 -share/doc/gnuplot/timedat.dem
 -share/doc/gnuplot/using.dat
 -share/doc/gnuplot/using.dem
 -share/doc/gnuplot/vector.dem
 -share/doc/gnuplot/whale.dat
 -share/doc/gnuplot/world.cor
 -share/doc/gnuplot/world.dat
 -share/doc/gnuplot/world.dem
 -share/doc/gnuplot/binary1
 -share/doc/gnuplot/binary2
 -share/doc/gnuplot/binary3
 -share/doc/gnuplot/README
 -@dirrm share/doc/gnuplot
 +bin/lasergnu
 +@unexec install-info --delete%D/info/gnuplot.info %D/info.dir
 +info/gnuplot.info
 +@unexec install-info %D/info/gnuplot.info %D/info.dir
 +%%PORTDOCS%%share/examples/gnuplot/1.dat
 +%%PORTDOCS%%share/examples/gnuplot/2.dat
 +%%PORTDOCS%%share/examples/gnuplot/3.dat
 +%%PORTDOCS%%share/examples/gnuplot/airfoil.dem
 +%%PORTDOCS%%share/examples/gnuplot/all.dem
 +%%PORTDOCS%%share/examples/gnuplot/animate.dem
 +%%PORTDOCS%%share/examples/gnuplot/battery.dat
 +%%PORTDOCS%%share/examples/gnuplot/big_peak.dat
 +%%PORTDOCS%%share/examples/gnuplot/binary.dem
 +%%PORTDOCS%%share/examples/gnuplot/bivariat.dem
 +%%PORTDOCS%%share/examples/gnuplot/borders.dem
 +%%PORTDOCS%%share/examples/gnuplot/contours.dem
 +%%PORTDOCS%%share/examples/gnuplot/controls.dem
 +%%PORTDOCS%%share/examples/gnuplot/density.fnc
 +%%PORTDOCS%%share/examples/gnuplot/discrete.dem
 +%%PORTDOCS%%share/examples/gnuplot/electron.dem
 +%%PORTDOCS%%share/examples/gnuplot/fit.dem
 +%%PORTDOCS%%share/examples/gnuplot/glass.dat
 +%%PORTDOCS%%share/examples/gnuplot/gnuplot.rot
 +%%PORTDOCS%%share/examples/gnuplot/hemisphr.dat
 +%%PORTDOCS%%share/examples/gnuplot/hexa.fnc
 +%%PORTDOCS%%share/examples/gnuplot/hidden.dem
 +%%PORTDOCS%%share/examples/gnuplot/klein.dat
 +%%PORTDOCS%%share/examples/gnuplot/lcdemo.dat
 +%%PORTDOCS%%share/examples/gnuplot/line.fnc
 +%%PORTDOCS%%share/examples/gnuplot/mgr.dem
 +%%PORTDOCS%%share/examples/gnuplot/moli3.dat
 +%%PORTDOCS%%share/examples/gnuplot/multimsh.dem
 +%%PORTDOCS%%share/examples/gnuplot/multiplt.dem
 +%%PORTDOCS%%share/examples/gnuplot/param.dem
 +%%PORTDOCS%%share/examples/gnuplot/polar.dem
 +%%PORTDOCS%%share/examples/gnuplot/poldat.dem
 +%%PORTDOCS%%share/examples/gnuplot/prob.dem
 +%%PORTDOCS%%share/examples/gnuplot/prob2.dem
 +%%PORTDOCS%%share/examples/gnuplot/random.dem
 +%%PORTDOCS%%share/examples/gnuplot/reflect.fnc
 +%%PORTDOCS%%share/examples/gnuplot/reread.bor
 +%%PORTDOCS%%share/examples/gnuplot/scatter.dem
 +%%PORTDOCS%%share/examples/gnuplot/scatter2.dat
 +%%PORTDOCS%%share/examples/gnuplot/silver.dat
 +%%PORTDOCS%%share/examples/gnuplot/simple.dem
 +%%PORTDOCS%%share/examples/gnuplot/singulr.dem
 +%%PORTDOCS%%share/examples/gnuplot/sound.par
 +%%PORTDOCS%%share/examples/gnuplot/sound2.par
 +%%PORTDOCS%%share/examples/gnuplot/soundvel.dat
 +%%PORTDOCS%%share/examples/gnuplot/spline.dem
 +%%PORTDOCS%%share/examples/gnuplot/start.par
 +%%PORTDOCS%%share/examples/gnuplot/stat.inc
 +%%PORTDOCS%%share/examples/gnuplot/steps.dat
 +%%PORTDOCS%%share/examples/gnuplot/steps.dem
 +%%PORTDOCS%%share/examples/gnuplot/surface1.dem
 +%%PORTDOCS%%share/examples/gnuplot/surface2.dem
 +%%PORTDOCS%%share/examples/gnuplot/timedat.dat
 +%%PORTDOCS%%share/examples/gnuplot/timedat.dem
 +%%PORTDOCS%%share/examples/gnuplot/using.dat
 +%%PORTDOCS%%share/examples/gnuplot/using.dem
 +%%PORTDOCS%%share/examples/gnuplot/vector.dem
 +%%PORTDOCS%%share/examples/gnuplot/whale.dat
 +%%PORTDOCS%%share/examples/gnuplot/world.cor
 +%%PORTDOCS%%share/examples/gnuplot/world.dat
 +%%PORTDOCS%%share/examples/gnuplot/world.dem
 +%%PORTDOCS%%@dirrm share/examples/gnuplot

From: KATO Tsuguru <tkato@prontomail.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Cc: glewis@FreeBSD.org
Subject: Re: ports/46945: Update port: math/gnuplot to 3.7.3
Date: Fri, 23 May 2003 19:20:41 +0900

 Here is an up-to-date patch.
 
 diff -urN /usr/ports/math/gnuplot/Makefile math/gnuplot/Makefile
 --- /usr/ports/math/gnuplot/Makefile	Fri May 23 09:42:35 2003
 +++ math/gnuplot/Makefile	Fri May 23 19:08:55 2003
 @@ -14,49 +14,40 @@
  MAINTAINER=	chuckr@FreeBSD.org
  COMMENT=	A command-driven interactive function plotting program
  
 -LIB_DPEENDS=
 -.if !defined(WITHOUT_PNG)
 -LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
 -.endif
 -.if !defined(WITHOUT_PDF)
 -LIB_DEPENDS+=	pdf.4:${PORTSDIR}/print/pdflib4
 -.endif
 +GNU_CONFIGURE=	yes
 +CONFIGURE_ARGS=	--datadir=${PREFIX}/share \
 +		--without-linux-vga --without-gd \
 +		--with-readline=gnu --with-lasergnu
 +
 +MAN1=		gnuplot.1 lasergnu.1
  
  .if !defined(WITHOUT_X11)
  USE_XLIB=	yes
 +PLIST_SUB+=		X11:=""
 +.else
 +CONFIGURE_ARGS+=	--without-x
 +PLIST_SUB+=		X11:="@comment "
  .endif
  
 -GNU_CONFIGURE=	yes
 -CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include"
 -CONFIGURE_ARGS=	--exec-prefix=${PREFIX} \
 -		--includedir=${LOCALBASE}/include/ \
 -		--libdir=${LOCALBASE}/lib \
 -		--without-linux-vga --without-gd \
 -		--with-readline=gnu --with-lasergnu 
  .if !defined(WITHOUT_PNG)
 -CONFIGURE_ARGS+=--with-png=${LOCALBASE}
 -.else
 -CONFIGURE_ARGS+=--without-png
 -.endif
 -.if !defined(WITHOUT_PDF)
 -CONFIGURE_ARGS+=--with-pdf=${LOCALBASE}
 +LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
 +CONFIGURE_ARGS+=	--with-png=${LOCALBASE}
  .else
 -CONFIGURE_ARGS+=--without-pdf
 +CONFIGURE_ARGS+=	--without-png
  .endif
  
 -.if defined(WITHOUT_X11)
 -CONFIGURE_ARGS+=	--without-x
 -PLIST_SUB+=		X11:="@comment "
 +.if !defined(WITHOUT_PDF)
 +LIB_DEPENDS+=	pdf.4:${PORTSDIR}/print/pdflib
 +CONFIGURE_ARGS+=	--with-pdf=${LOCALBASE}
  .else
 -CONFIGURE_ARGS+=	--with-x
 -PLIST_SUB+=		X11:=""
 +CONFIGURE_ARGS+=	--without-pdf
  .endif
  
  post-install:
 -	${MKDIR} ${PREFIX}/share/doc/gnuplot
 -	(cd ${WRKSRC}/demo;for EXAMPLES in ${WRKSRC}/demo/*; do ${INSTALL_DATA} $${EXAMPLES} ${PREFIX}/share/doc/gnuplot;done)
 -	${INSTALL_DATA} ${FILESDIR}/README ${PREFIX}/share/doc/gnuplot
 -
 -MAN1=		gnuplot.1 lasergnu.1
 +.if !defined(NOPORTDOCS)
 +	@${MKDIR} ${EXAMPLESDIR}
 +	${INSTALL_DATA} ${FILESDIR}/README ${EXAMPLESDIR}
 +	${INSTALL_DATA} ${WRKSRC}/demo/* ${EXAMPLESDIR}
 +.endif
  
  .include <bsd.port.mk>
 diff -urN /usr/ports/math/gnuplot/pkg-plist math/gnuplot/pkg-plist
 --- /usr/ports/math/gnuplot/pkg-plist	Fri May 23 09:42:35 2003
 +++ math/gnuplot/pkg-plist	Fri May 23 19:19:11 2003
 @@ -1,71 +1,68 @@
 -bin/lasergnu
  bin/gnuplot
  %%X11:%%bin/gnuplot_x11
 +bin/lasergnu
 +@unexec install-info --delete %D/info/gnuplot.info %D/info.dir
  info/gnuplot.info
 -share/gnuplot.gih
 -share/doc/gnuplot/1.dat
 -share/doc/gnuplot/2.dat
 -share/doc/gnuplot/3.dat
 -share/doc/gnuplot/airfoil.dem
 -share/doc/gnuplot/all.dem
 -share/doc/gnuplot/animate.dem
 -share/doc/gnuplot/battery.dat
 -share/doc/gnuplot/big_peak.dat
 -share/doc/gnuplot/binary.dem
 -share/doc/gnuplot/bivariat.dem
 -share/doc/gnuplot/borders.dem
 -share/doc/gnuplot/contours.dem
 -share/doc/gnuplot/controls.dem
 -share/doc/gnuplot/density.fnc
 -share/doc/gnuplot/discrete.dem
 -share/doc/gnuplot/electron.dem
 -share/doc/gnuplot/fit.dem
 -share/doc/gnuplot/glass.dat
 -share/doc/gnuplot/gnuplot.rot
 -share/doc/gnuplot/hemisphr.dat
 -share/doc/gnuplot/hexa.fnc
 -share/doc/gnuplot/hidden.dem
 -share/doc/gnuplot/klein.dat
 -share/doc/gnuplot/lcdemo.dat
 -share/doc/gnuplot/line.fnc
 -share/doc/gnuplot/mgr.dem
 -share/doc/gnuplot/moli3.dat
 -share/doc/gnuplot/multimsh.dem
 -share/doc/gnuplot/multiplt.dem
 -share/doc/gnuplot/param.dem
 -share/doc/gnuplot/polar.dem
 -share/doc/gnuplot/poldat.dem
 -share/doc/gnuplot/prob.dem
 -share/doc/gnuplot/prob2.dem
 -share/doc/gnuplot/random.dem
 -share/doc/gnuplot/reflect.fnc
 -share/doc/gnuplot/reread.bor
 -share/doc/gnuplot/scatter.dem
 -share/doc/gnuplot/scatter2.dat
 -share/doc/gnuplot/silver.dat
 -share/doc/gnuplot/simple.dem
 -share/doc/gnuplot/singulr.dem
 -share/doc/gnuplot/sound.par
 -share/doc/gnuplot/sound2.par
 -share/doc/gnuplot/soundvel.dat
 -share/doc/gnuplot/spline.dem
 -share/doc/gnuplot/start.par
 -share/doc/gnuplot/stat.inc
 -share/doc/gnuplot/steps.dat
 -share/doc/gnuplot/steps.dem
 -share/doc/gnuplot/surface1.dem
 -share/doc/gnuplot/surface2.dem
 -share/doc/gnuplot/timedat.dat
 -share/doc/gnuplot/timedat.dem
 -share/doc/gnuplot/using.dat
 -share/doc/gnuplot/using.dem
 -share/doc/gnuplot/vector.dem
 -share/doc/gnuplot/whale.dat
 -share/doc/gnuplot/world.cor
 -share/doc/gnuplot/world.dat
 -share/doc/gnuplot/world.dem
 -share/doc/gnuplot/binary1
 -share/doc/gnuplot/binary2
 -share/doc/gnuplot/binary3
 -share/doc/gnuplot/README
 -@dirrm share/doc/gnuplot
 +@exec install-info %D/info/gnuplot.info %D/info.dir
 +%%PORTDOCS%%share/examples/gnuplot/1.dat
 +%%PORTDOCS%%share/examples/gnuplot/2.dat
 +%%PORTDOCS%%share/examples/gnuplot/3.dat
 +%%PORTDOCS%%share/examples/gnuplot/airfoil.dem
 +%%PORTDOCS%%share/examples/gnuplot/all.dem
 +%%PORTDOCS%%share/examples/gnuplot/animate.dem
 +%%PORTDOCS%%share/examples/gnuplot/battery.dat
 +%%PORTDOCS%%share/examples/gnuplot/big_peak.dat
 +%%PORTDOCS%%share/examples/gnuplot/binary.dem
 +%%PORTDOCS%%share/examples/gnuplot/bivariat.dem
 +%%PORTDOCS%%share/examples/gnuplot/borders.dem
 +%%PORTDOCS%%share/examples/gnuplot/contours.dem
 +%%PORTDOCS%%share/examples/gnuplot/controls.dem
 +%%PORTDOCS%%share/examples/gnuplot/density.fnc
 +%%PORTDOCS%%share/examples/gnuplot/discrete.dem
 +%%PORTDOCS%%share/examples/gnuplot/electron.dem
 +%%PORTDOCS%%share/examples/gnuplot/fit.dem
 +%%PORTDOCS%%share/examples/gnuplot/glass.dat
 +%%PORTDOCS%%share/examples/gnuplot/gnuplot.rot
 +%%PORTDOCS%%share/examples/gnuplot/hemisphr.dat
 +%%PORTDOCS%%share/examples/gnuplot/hexa.fnc
 +%%PORTDOCS%%share/examples/gnuplot/hidden.dem
 +%%PORTDOCS%%share/examples/gnuplot/klein.dat
 +%%PORTDOCS%%share/examples/gnuplot/lcdemo.dat
 +%%PORTDOCS%%share/examples/gnuplot/line.fnc
 +%%PORTDOCS%%share/examples/gnuplot/mgr.dem
 +%%PORTDOCS%%share/examples/gnuplot/moli3.dat
 +%%PORTDOCS%%share/examples/gnuplot/multimsh.dem
 +%%PORTDOCS%%share/examples/gnuplot/multiplt.dem
 +%%PORTDOCS%%share/examples/gnuplot/param.dem
 +%%PORTDOCS%%share/examples/gnuplot/polar.dem
 +%%PORTDOCS%%share/examples/gnuplot/poldat.dem
 +%%PORTDOCS%%share/examples/gnuplot/prob.dem
 +%%PORTDOCS%%share/examples/gnuplot/prob2.dem
 +%%PORTDOCS%%share/examples/gnuplot/random.dem
 +%%PORTDOCS%%share/examples/gnuplot/reflect.fnc
 +%%PORTDOCS%%share/examples/gnuplot/reread.bor
 +%%PORTDOCS%%share/examples/gnuplot/scatter.dem
 +%%PORTDOCS%%share/examples/gnuplot/scatter2.dat
 +%%PORTDOCS%%share/examples/gnuplot/silver.dat
 +%%PORTDOCS%%share/examples/gnuplot/simple.dem
 +%%PORTDOCS%%share/examples/gnuplot/singulr.dem
 +%%PORTDOCS%%share/examples/gnuplot/sound.par
 +%%PORTDOCS%%share/examples/gnuplot/sound2.par
 +%%PORTDOCS%%share/examples/gnuplot/soundvel.dat
 +%%PORTDOCS%%share/examples/gnuplot/spline.dem
 +%%PORTDOCS%%share/examples/gnuplot/start.par
 +%%PORTDOCS%%share/examples/gnuplot/stat.inc
 +%%PORTDOCS%%share/examples/gnuplot/steps.dat
 +%%PORTDOCS%%share/examples/gnuplot/steps.dem
 +%%PORTDOCS%%share/examples/gnuplot/surface1.dem
 +%%PORTDOCS%%share/examples/gnuplot/surface2.dem
 +%%PORTDOCS%%share/examples/gnuplot/timedat.dat
 +%%PORTDOCS%%share/examples/gnuplot/timedat.dem
 +%%PORTDOCS%%share/examples/gnuplot/using.dat
 +%%PORTDOCS%%share/examples/gnuplot/using.dem
 +%%PORTDOCS%%share/examples/gnuplot/vector.dem
 +%%PORTDOCS%%share/examples/gnuplot/whale.dat
 +%%PORTDOCS%%share/examples/gnuplot/world.cor
 +%%PORTDOCS%%share/examples/gnuplot/world.dat
 +%%PORTDOCS%%share/examples/gnuplot/world.dem
 +%%PORTDOCS%%@dirrm share/examples/gnuplot
State-Changed-From-To: open->closed 
State-Changed-By: glewis 
State-Changed-When: Tue Jun 3 09:16:59 PDT 2003 
State-Changed-Why:  
Committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=46945 
>Unformatted:
