diff options
author | itojun <itojun@pkgsrc.org> | 2003-10-02 01:07:52 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2003-10-02 01:07:52 +0000 |
commit | 0bd53e2a59ccae15f3ea6308a9c9f03c4ef82d3b (patch) | |
tree | 958592e22b6ae0b64cdd64773055694686e08c18 /textproc | |
parent | f8cea7046f04cb6f718471b068af6f987287f87a (diff) | |
download | pkgsrc-0bd53e2a59ccae15f3ea6308a9c9f03c4ef82d3b.tar.gz |
work around to remove dependency to ncurses on netbsd. PR pkg/22992
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/aspell/Makefile | 7 | ||||
-rw-r--r-- | textproc/aspell/distinfo | 3 | ||||
-rw-r--r-- | textproc/aspell/patches/patch-ac | 14 |
3 files changed, 18 insertions, 6 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile index 123aecef80c..92061330de2 100644 --- a/textproc/aspell/Makefile +++ b/textproc/aspell/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.14 2003/09/28 09:13:59 jlam Exp $ +# $NetBSD: Makefile,v 1.15 2003/10/02 01:07:52 itojun Exp $ # DISTNAME= aspell-0.50.3 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU:=aspell/} @@ -19,9 +19,6 @@ USE_GMAKE= yes USE_LIBTOOL= yes LIBTOOL_OVERRIDE= ${WRKSRC}/libtool -# halfdelay() -INCOMPAT_CURSES= NetBSD-1.[45]*-* NetBSD-1.6[-_.]* NetBSD-1.6[A-L]-* - CONFIGURE_ARGS+= --enable-doc-dir=${PREFIX}/share/doc/aspell CONFIGURE_ARGS+= --enable-curses=ncurses diff --git a/textproc/aspell/distinfo b/textproc/aspell/distinfo index dd9acff821b..e32dba8d87a 100644 --- a/textproc/aspell/distinfo +++ b/textproc/aspell/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.6 2003/09/30 17:26:58 mycroft Exp $ +$NetBSD: distinfo,v 1.7 2003/10/02 01:07:52 itojun Exp $ SHA1 (aspell-0.50.3.tar.gz) = aea3c1e47c10bf2f189dbff91c3c137170af6a72 Size (aspell-0.50.3.tar.gz) = 939063 bytes SHA1 (patch-aa) = ec9eff280bdb169814e134f541dee7c879a58fdd SHA1 (patch-ab) = 9b3e6dfbdf27b9bc0a10384be057685fba734aa7 +SHA1 (patch-ac) = 2a83265b7738bc9ed24de163cfee32ee13bbd231 diff --git a/textproc/aspell/patches/patch-ac b/textproc/aspell/patches/patch-ac new file mode 100644 index 00000000000..8d5c8bde825 --- /dev/null +++ b/textproc/aspell/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.3 2003/10/02 01:07:52 itojun Exp $ + +--- prog/check_funs.cpp- 2003-10-02 09:59:27.000000000 +0900 ++++ prog/check_funs.cpp 2003-10-02 09:59:39.000000000 +0900 +@@ -205,7 +205,8 @@ + choice_w = 0; + nonl(); + noecho(); +- halfdelay(1); ++ cbreak(); ++ timeout(100); + keypad(stdscr, true); + clear(); + int height, width; |