diff options
author | tv <tv@pkgsrc.org> | 1998-10-04 17:59:42 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 1998-10-04 17:59:42 +0000 |
commit | 092596ed731bc801b493b7210fd305f1f5de5312 (patch) | |
tree | 4193ffb68b5c4b0c82a070cd18ad69a4610bc8b8 | |
parent | 3efc2cc122b8c97b8c74fcd1b27a748f80bdbfd2 (diff) | |
download | pkgsrc-092596ed731bc801b493b7210fd305f1f5de5312.tar.gz |
Switch to using SLang (libslang) instead of ncurses. Advantages:
- better color support (slang used to be the only way to get color in Lynx)
- uses system-supplied termcap.db--works properly with terminal types
"screen" and "xterm"
- more optimized on most displays
-rw-r--r-- | www/lynx/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index d89df34721d..a0ad3d4eb3e 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 1998/08/20 15:17:30 tsarna Exp $ +# $NetBSD: Makefile,v 1.13 1998/10/04 17:59:42 tv Exp $ # DISTNAME= lynx2-8 @@ -12,10 +12,12 @@ HOMEPAGE= http://sol.slcc.edu/lynx/ CONFLICTS= lynx-2.8rel.2 -DEPENDS+= ncurses-1.9.9g:../../devel/ncurses +DEPENDS+= libslang-1.2.2:../../devel/libslang -CONFIGURE_ARGS+= --with-screen=ncurses --with-zlib --libdir="${PREFIX}/etc" +CONFIGURE_ARGS+= --with-screen=slang --with-zlib --libdir="${PREFIX}/etc" +CONFIGURE_ENV+= LIBS=-lm CPPFLAGS=-Dunix GNU_CONFIGURE= YES + INSTALL_TARGET= install install-help MAKEFILE= makefile |