summaryrefslogtreecommitdiff
path: root/lang/yabasic
diff options
context:
space:
mode:
Diffstat (limited to 'lang/yabasic')
-rw-r--r--lang/yabasic/Makefile5
-rw-r--r--lang/yabasic/distinfo9
-rw-r--r--lang/yabasic/patches/patch-graphic.c31
3 files changed, 7 insertions, 38 deletions
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,