summaryrefslogtreecommitdiff
path: root/devel/ruby-ncurses
diff options
context:
space:
mode:
authortaca <taca>2007-03-17 16:05:02 +0000
committertaca <taca>2007-03-17 16:05:02 +0000
commit8e57d4758ae5e5d41522f0139e634ebcb85df970 (patch)
treee01bc3cca843aa93a571616f3a0a24e1fd4b30f9 /devel/ruby-ncurses
parent8dc5b6c6f2a941dd573bb53403271775e1829213 (diff)
downloadpkgsrc-8e57d4758ae5e5d41522f0139e634ebcb85df970.tar.gz
Update ruby-ncurses package to 1.1.
ncurses-ruby-1.1 * Bugfixes by T. Sutherland in _tracef and _tracedump.
Diffstat (limited to 'devel/ruby-ncurses')
-rw-r--r--devel/ruby-ncurses/Makefile7
-rw-r--r--devel/ruby-ncurses/distinfo9
-rw-r--r--devel/ruby-ncurses/patches/patch-aa22
3 files changed, 7 insertions, 31 deletions
diff --git a/devel/ruby-ncurses/Makefile b/devel/ruby-ncurses/Makefile
index 3ab41a11506..8feb1940cb3 100644
--- a/devel/ruby-ncurses/Makefile
+++ b/devel/ruby-ncurses/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2007/01/14 04:14:51 taca Exp $
+# $NetBSD: Makefile,v 1.5 2007/03/17 16:05:02 taca Exp $
-DISTNAME= ncurses-ruby-1.0
+DISTNAME= ncurses-ruby-1.1
PKGNAME= ${DISTNAME:S/ncurses-ruby/${RUBY_PKGPREFIX}-ncurses/}
-PKGREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://download.berlios.de/ncurses-ruby/
EXTRACT_SUFX= .tar.bz2
@@ -12,7 +11,7 @@ HOMEPAGE= http://ncurses-ruby.berlios.de/
COMMENT= Ruby interface to ncurses
USE_RUBY_EXTCONF= yes
-USE_NCURSES= # mouse functions
+USE_NCURSES= yes # mouse functions
EXAMPLES= example.rb hello_ncurses.rb rain.rb read_line.rb \
tclock.rb test_scanw.rb
diff --git a/devel/ruby-ncurses/distinfo b/devel/ruby-ncurses/distinfo
index 535adcbc414..958ccff36e4 100644
--- a/devel/ruby-ncurses/distinfo
+++ b/devel/ruby-ncurses/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2006/02/08 15:50:19 joerg Exp $
+$NetBSD: distinfo,v 1.3 2007/03/17 16:05:02 taca Exp $
-SHA1 (ncurses-ruby-1.0.tar.bz2) = 99c42b2bb0a8fc096e4bc5f7f2ffdac81fe664ab
-RMD160 (ncurses-ruby-1.0.tar.bz2) = 17102c384ca44c21f5be8ca71a2ba558bd17a423
-Size (ncurses-ruby-1.0.tar.bz2) = 46328 bytes
-SHA1 (patch-aa) = c59399a7338cdd5a8e91d7d896055401369161e6
+SHA1 (ncurses-ruby-1.1.tar.bz2) = f50a6eaec836845cdebd116760ab0e1ce5c1d75b
+RMD160 (ncurses-ruby-1.1.tar.bz2) = d9076cbbc28046d5017203049f4c0e026403ebc4
+Size (ncurses-ruby-1.1.tar.bz2) = 46327 bytes
diff --git a/devel/ruby-ncurses/patches/patch-aa b/devel/ruby-ncurses/patches/patch-aa
deleted file mode 100644
index 53d18439505..00000000000
--- a/devel/ruby-ncurses/patches/patch-aa
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2006/02/08 15:50:20 joerg Exp $
-
---- ncurses_wrap.c.orig 2006-02-07 17:28:43.000000000 +0000
-+++ ncurses_wrap.c
-@@ -2362,7 +2362,7 @@ static VALUE rbncurs_wprintw(int argc, V
-
- /* Debugging : use with libncurses_g.a */
- #ifdef HAVE__TRACEF
--static VALUE rbncurs_tracef(int argc, VALUE * argv, VALUE)
-+static VALUE rbncurs_tracef(int argc, VALUE * argv, VALUE dummy)
- {
- if (argc < 1) {
- rb_raise(rb_eArgError, "function needs at least 1 argument");
-@@ -2374,7 +2374,7 @@ static VALUE rbncurs_tracef(int argc, VA
- }
- #endif /* HAVE__TRACEF */
- #ifdef HAVE__TRACEDUMP
--static VALUE rbncurs_tracedump(VALUE dummy, VALUE rb_label, label rb_win)
-+static VALUE rbncurs_tracedump(VALUE dummy, VALUE rb_label, VALUE rb_win)
- {
- _tracedump(STR2CSTR(rb_label), get_window(rb_win));
- }