cbdc61b86a
Inspirerd by PR#39887. Pkgsrc changes: * Allow NetBSD>=5 cuurses * LICENS=gnu-gpl-v2 Changes: i(not available for 1.5.11, but it seems small changes). Version 1.5.10 released 2008-07-28, 09:40 GMT - shift+t now force reloads a selected feed, ignoring the last modified value - Added a lot of OpenBSD supplied patches (Martynas Venckus) - net-support.c: HTTP header only needs to be ASCII in the token - conversions.c: Determine output charset with nl_langinfo() - xmlparse.c: Convert feed title to target charset, too. Should probaly be in interface.c - main.c, interface.h, interface.c: Add a signal handler for resizing to work on many other ncurses implementations
18 lines
508 B
Makefile
18 lines
508 B
Makefile
# $NetBSD: options.mk,v 1.3 2009/06/01 11:56:43 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.snownews
|
|
PKG_SUPPORTED_OPTIONS= wide-curses
|
|
PKG_OPTIONS_LEGACY_OPTS+= ncursesw:wide-curses
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Wide curses support; otherwise, default to using narrow curses.
|
|
###
|
|
INCOMPAT_CURSES= NetBSD-[0-4].*-* #WA_BOLD, WA_REVERSE, KEY_RESIZE
|
|
|
|
.if !empty(PKG_OPTIONS:Mwide-curses)
|
|
. include "../../devel/ncursesw/buildlink3.mk"
|
|
.else
|
|
. include "../../devel/ncurses/buildlink3.mk"
|
|
.endif
|