diff options
author | asau <asau@pkgsrc.org> | 2012-10-25 08:51:58 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2012-10-25 08:51:58 +0000 |
commit | 8d814b465361a5119978bf0d84cdf3d8ecace4fe (patch) | |
tree | bbc0db80681a461ad7186acc344512fe035b9bc7 /math/grace | |
parent | 5671d353a8638b927e54a5954102087a3e3c3a72 (diff) | |
download | pkgsrc-8d814b465361a5119978bf0d84cdf3d8ecace4fe.tar.gz |
Update to Grace 5.1.23
Changes in 5.1.23
Bug fixes
* [ES] removed *86 specific optimizations (rep. #2154)
* [ES] renamed RMS per cent error -> relative error (rep. #2192)
* [ES] a workaround for a bug in recent Xorg not releasing grab of popup menus
* [ES] accept -graphtype chart instead of bar. List possible values in the
help output
* [TK] fix building against png-1.5
* [SM] a grace_np fix
* [ES] IsoLatin5.enc was not included in the distribution
Diffstat (limited to 'math/grace')
-rw-r--r-- | math/grace/Makefile | 6 | ||||
-rw-r--r-- | math/grace/PLIST | 3 | ||||
-rw-r--r-- | math/grace/distinfo | 9 | ||||
-rw-r--r-- | math/grace/patches/patch-ac | 24 |
4 files changed, 8 insertions, 34 deletions
diff --git a/math/grace/Makefile b/math/grace/Makefile index 3a2afcd506c..8aba05f20f3 100644 --- a/math/grace/Makefile +++ b/math/grace/Makefile @@ -1,8 +1,6 @@ -# $NetBSD: Makefile,v 1.53 2012/09/11 23:04:21 asau Exp $ -# +# $NetBSD: Makefile,v 1.54 2012/10/25 08:51:58 asau Exp $ -DISTNAME= grace-5.1.22 -PKGREVISION= 7 +DISTNAME= grace-5.1.23 CATEGORIES= math graphics x11 MASTER_SITES= ftp://plasma-gate.weizmann.ac.il/pub/grace/src/stable/ \ ftp://ftp.fu-berlin.de/unix/graphics/grace/src/stable/ \ diff --git a/math/grace/PLIST b/math/grace/PLIST index 64d60d49a1e..d4c50f7f592 100644 --- a/math/grace/PLIST +++ b/math/grace/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2009/06/14 18:05:44 joerg Exp $ +@comment $NetBSD: PLIST,v 1.6 2012/10/25 08:51:59 asau Exp $ bin/xmgrace grace/auxiliary/README grace/auxiliary/convcal.c @@ -91,6 +91,7 @@ grace/fonts/FontDataBase grace/fonts/enc/CP1251.enc grace/fonts/enc/IsoLatin1.enc grace/fonts/enc/IsoLatin2.enc +grace/fonts/enc/IsoLatin5.enc grace/fonts/enc/IsoLatin7.enc grace/fonts/enc/IsoLatin9.enc grace/fonts/enc/KOI8-R.enc diff --git a/math/grace/distinfo b/math/grace/distinfo index 6c7705d680c..a89751fc057 100644 --- a/math/grace/distinfo +++ b/math/grace/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.11 2011/01/29 23:01:50 wiz Exp $ +$NetBSD: distinfo,v 1.12 2012/10/25 08:51:59 asau Exp $ -SHA1 (grace-5.1.22.tar.gz) = 3ce88c7c264d2de73b8935f835a1c1f8e368c78f -RMD160 (grace-5.1.22.tar.gz) = ca7b1abe240de7cd3dbdc52d5182020c410b9772 -Size (grace-5.1.22.tar.gz) = 2516576 bytes +SHA1 (grace-5.1.23.tar.gz) = 0bd9cd6e76c97210658098f3533b5cf6c037d0bd +RMD160 (grace-5.1.23.tar.gz) = c990d0f0b836eb6d6e3080c47015a86aca074494 +Size (grace-5.1.23.tar.gz) = 2501364 bytes SHA1 (patch-aa) = 5ccd1cc8bbf449c92b2216a52f1e6b9d6bd4cfce SHA1 (patch-ab) = 60a7657a4d191b76dae97ba0a7d8ba378da2a748 -SHA1 (patch-ac) = c312703604541f4cd14ce530d5a166cbc7004534 diff --git a/math/grace/patches/patch-ac b/math/grace/patches/patch-ac deleted file mode 100644 index d99ba3e45ab..00000000000 --- a/math/grace/patches/patch-ac +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ac,v 1.2 2011/01/29 23:01:50 wiz Exp $ - -Fix build with png-1.5. -http://plasma-gate.weizmann.ac.il/Grace/phpbb/viewtopic.php?f=3&t=2080&p=4606#p4606 - ---- src/rstdrv.c.orig 2004-07-03 20:47:46.000000000 +0000 -+++ src/rstdrv.c -@@ -54,6 +54,7 @@ - - #ifdef HAVE_LIBPNG - # include <png.h> -+# include <zlib.h> - #endif - - #ifndef NONE_GUI -@@ -885,7 +886,7 @@ static void rstImagePng(gdImagePtr ihand - return; - } - -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - png_destroy_write_struct(&png_ptr, &info_ptr); - return; - } |