diff options
author | jtb <jtb@pkgsrc.org> | 2003-07-10 08:27:38 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2003-07-10 08:27:38 +0000 |
commit | c9cfc1c60dc5109434a6b191ca2ef6a0c823436a (patch) | |
tree | 3d38356bd40c9c013a036a7540325fa15703cfb8 /graphics/gri/Makefile | |
parent | dd7bfd462cb7e3ca487d9209f0b0e338155385cd (diff) | |
download | pkgsrc-c9cfc1c60dc5109434a6b191ca2ef6a0c823436a.tar.gz |
Update to version 2.12.5.
This only lists new features, there are many bugfixes.
* Apply a patch provided Kawamura Masao, relating to (a) errors in
the documentation of file locations and (b) a programming error
hidden behind an unset precompiler flag.
* Add `sed' RPN operator, to work on strings
* Add `skewness' and `kurtosis' RPN operators, to work on columns
* In the documentation, change the names of some variables to be
clearer: `ll_x' is now written `xleft', etc.
* Add RPN binary operators `and', `or' for logical operations,
along with negation operator `not'
* Add `draw arc' command
* Add `set x axis labels' and `set y axis labels' commands.
* Permit specification of `pt' units for `draw label', `draw box',
`draw symbol at', and `draw line from'.
* Add `set clip to curve' command. _Caution:_
this needs extension, and may have a bug if called twice in
succession [but is this with an intervening `set clip off']
* Add `group' and `end group' commands, in preparation for SVG
output. So far these commands do nothing, and are basically just a
signal that users should not create commands with these names
since Gri will need them soon.
* Add `..xinc..' and `..yinc..' builtin variables.
* Make the `open' command accept URLs as filenames.
Diffstat (limited to 'graphics/gri/Makefile')
-rw-r--r-- | graphics/gri/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/graphics/gri/Makefile b/graphics/gri/Makefile index 29056723e42..7a06b01baac 100644 --- a/graphics/gri/Makefile +++ b/graphics/gri/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2003/07/03 16:24:28 seb Exp $ +# $NetBSD: Makefile,v 1.9 2003/07/10 08:27:38 jtb Exp $ -DISTNAME= gri-2.8.7 +DISTNAME= gri-2.12.5 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gri/} EXTRACT_SUFX= .tgz @@ -11,17 +11,17 @@ COMMENT= language for scientific graphics applications BUILD_DEPENDS+= ImageMagick-[0-9]*:../../graphics/ImageMagick -GNU_CONFIGURE= # defined -USE_X11= # defined -USE_GMAKE= # defined -USE_BUILDLINK2= # defined -INFO_FILES= gri.info +GNU_CONFIGURE= yes +USE_X11= yes +USE_GMAKE= yes +USE_BUILDLINK2= yes +INFO_FILES= yes USE_PERL5= build REPLACE_PERL= gri_merge gri_unpage -USE_NEW_TEXINFO= YES -USE_MAKEINFO= YES -INFO_FILES= gri.info +USE_NEW_TEXINFO= yes +USE_MAKEINFO= yes +INFO_FILES= gri.info .include "../../devel/netcdf/buildlink2.mk" .include "../../mk/ghostscript.mk" |