diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-11-30 15:33:53 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-11-30 15:33:53 +0000 |
commit | 9e1eefdda0fc818c3ce346dec28232e0bf18ae76 (patch) | |
tree | d1b1a20ae2c28dcbbcd629443cd7c52e68d64d66 /www/lynx/options.mk | |
parent | bdf703ee0112e97875ed8387f639f9301dad80a5 (diff) | |
download | pkgsrc-9e1eefdda0fc818c3ce346dec28232e0bf18ae76.tar.gz |
Forgot to change LYNX_SCREEN_LIB, this should be fixed now.
Diffstat (limited to 'www/lynx/options.mk')
-rw-r--r-- | www/lynx/options.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/lynx/options.mk b/www/lynx/options.mk index 80c9eca3f84..c215bcdf769 100644 --- a/www/lynx/options.mk +++ b/www/lynx/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2004/11/27 08:44:35 xtraeme Exp $ +# $NetBSD: options.mk,v 1.5 2004/11/30 15:33:53 xtraeme Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.lynx PKG_SUPPORTED_OPTIONS= curses inet6 ncurses slang socks4 socks5 @@ -20,12 +20,15 @@ PKG_FAIL_REASON+= "SOCKS may not be enabled together with the \"slang\"" \ ### Set the screen library to "slang", "ncurses", or plain "curses". ### .if !empty(PKG_OPTIONS:Mslang) +SCREENTYPE= slang . include "../../devel/libslang/buildlink3.mk" .elif !empty(PKG_OPTIONS:Mncurses) +SCREENTYPE= ncurses USE_NCURSES= color . include "../../devel/ncurses/buildlink3.mk" CONFIGURE_ARGS+= --enable-color-style .elif !empty(PKG_OPTIONS:Mcurses) +SCREENTYPE= curses . include "../../mk/curses.buildlink3.mk" . if !empty(MACHINE_PLATFORM:MNetBSD-1.[56]*-i386) CONFIGURE_ARGS+= --enable-color-style |