From 22cea97839a3f512490cfdb2a5727d7ca4f1f85e Mon Sep 17 00:00:00 2001 From: wen Date: Fri, 11 Apr 2014 15:24:34 +0000 Subject: Update to 2.767 Remove the patch which included in upstream source Upstream changes: 2.767 (March 15, 2014) Fixed a bug which caused yabasic under Windows to freeze on syntax errors 2.766 (March 15, 2014) Fixed some bugs related with ncurses under linux 2.765 (January 30, 2014) Added support for later versions of ncurses and 64 bit Systems Avoided forks for inkey$ under Unix Fixed a bug related with break and continue 2.764 (January 22, 2014) - Added support for later versions of ncurses and 64 bit Systems - Avoided forks for inkey$ --- lang/yabasic/Makefile | 5 +++-- lang/yabasic/distinfo | 9 ++++----- lang/yabasic/patches/patch-graphic.c | 31 ------------------------------- 3 files changed, 7 insertions(+), 38 deletions(-) delete mode 100644 lang/yabasic/patches/patch-graphic.c (limited to 'lang') diff --git a/lang/yabasic/Makefile b/lang/yabasic/Makefile index e8e09c08820..cc374e04c6f 100644 --- a/lang/yabasic/Makefile +++ b/lang/yabasic/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2012/10/02 20:11:57 asau Exp $ +# $NetBSD: Makefile,v 1.16 2014/04/11 15:24:34 wen Exp $ -DISTNAME= yabasic-2.763 +DISTNAME= yabasic-2.767 CATEGORIES= lang MASTER_SITES= http://www.yabasic.de/download/ @@ -10,6 +10,7 @@ COMMENT= Yet another Basic for Unix and Windows LICENSE= artistic OR gnu-gpl-v2 GNU_CONFIGURE= YES +USE_NCURSES= YES INSTALLATION_DIRS+= share/doc/html/yabasic diff --git a/lang/yabasic/distinfo b/lang/yabasic/distinfo index 712a8346c28..b6f1229e17b 100644 --- a/lang/yabasic/distinfo +++ b/lang/yabasic/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.6 2012/12/20 21:49:06 joerg Exp $ +$NetBSD: distinfo,v 1.7 2014/04/11 15:24:34 wen Exp $ -SHA1 (yabasic-2.763.tar.gz) = 1cf663d20be64d7ca90157cabfdc09d95b0e43d4 -RMD160 (yabasic-2.763.tar.gz) = 745734f06c81be50799c5b7678ad625bb3882d3b -Size (yabasic-2.763.tar.gz) = 538760 bytes -SHA1 (patch-graphic.c) = cc881048f609f0eb3ead673419a4c8a63c47b1d3 +SHA1 (yabasic-2.767.tar.gz) = 39b5f060e951e805d0b0acdad139d552e3513082 +RMD160 (yabasic-2.767.tar.gz) = e54d4aabb4c2fc2d7b2f7560203c0c643935b079 +Size (yabasic-2.767.tar.gz) = 572140 bytes diff --git a/lang/yabasic/patches/patch-graphic.c b/lang/yabasic/patches/patch-graphic.c deleted file mode 100644 index 0faed1f23fd..00000000000 --- a/lang/yabasic/patches/patch-graphic.c +++ /dev/null @@ -1,31 +0,0 @@ -$NetBSD: patch-graphic.c,v 1.1 2012/12/20 21:49:07 joerg Exp $ - ---- graphic.c.orig 2012-12-20 12:19:11.000000000 +0000 -+++ graphic.c -@@ -748,7 +748,7 @@ grafinit (void) - &visualinfo)) - { - error (ERROR, "Could not get any TrueColor visual"); -- return; -+ return FALSE; - } - - /* convert color masks in more convenient values */ -@@ -790,7 +790,7 @@ grafinit (void) - sprintf (string, "Could not find foreground color '%s'\n", - background); - error (ERROR, string); -- return; -+ return FALSE; - } - forepixel = - rgb_to_pixel (best_match.red >> 8, best_match.green >> 8, -@@ -806,7 +806,7 @@ grafinit (void) - sprintf (string, "Could not find background color '%s'\n", - background); - error (ERROR, string); -- return; -+ return FALSE; - } - backpixel = - rgb_to_pixel (best_match.red >> 8, best_match.green >> 8, -- cgit v1.2.3