Package: libncurses-ruby1.8
Version: 1.1-2
Severity: wishlist
Tags: patch

Ruby ncurses can handle UTF8 easily if the attached patch is applied which 
enables wide character spport.

Micah

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-vserver-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libncurses-ruby1.8 depends on:
ii  libc6                     2.7-10         GNU C Library: Shared libraries
ii  libncurses5               5.6+20080419-1 Shared libraries for terminal hand
ii  libruby1.8                1.8.6.114-2    Libraries necessary to run Ruby 1.
ii  ruby1.8                   1.8.6.114-2    Interpreter of object-oriented scr

libncurses-ruby1.8 recommends no packages.

-- no debconf information
--- extconf.rb.o        2007-10-09 15:08:42.000000000 +0200
+++ extconf.rb  2007-10-09 15:07:54.000000000 +0200
@@ -35,8 +35,8 @@
   raise "ncurses header file not found"
 end

-if have_library("ncurses", "wmove")
-  curses_lib = "ncurses"
+if have_library("ncursesw", "wmove")
+  curses_lib = "ncursesw"
 elsif have_library("pdcurses", "wmove")
   curses_lib = "pdcurses"
 else
@@ -120,11 +120,11 @@

 puts "checking for the panel library..."
 if have_header("panel.h")
-  have_library("panel", "panel_hidden")
+  have_library("panelw", "panel_hidden")
 end
 puts "checking for the form library..."
 if have_header("form.h")
-  have_library("form", "new_form")
+  have_library("formw", "new_form")
 end

 create_makefile('ncurses')

Reply via email to