pkgsrc/textproc/hunspell/options.mk
jlam fd0712a4c9 + Rename the "ncursesw" option to "wide-curses" and get rid of the
"ncurses" option.  "wide-curses" now just toggles whether we use
  wide or narrow curses, which is a much simpler knob for users.

Bump the PKGREVISION to 2.
2008-02-22 17:04:34 +00:00

16 lines
407 B
Makefile

# $NetBSD: options.mk,v 1.2 2008/02/22 17:04:34 jlam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.hunspell
PKG_SUPPORTED_OPTIONS= wide-curses
PKG_SUGGESTED_OPTIONS= # empty
PKG_LEGACY_OPTS+= ncursesw:wide-curses
.include "../../mk/bsd.options.mk"
USE_NCURSES= yes
.if !empty(PKG_OPTIONS:Mwide-curses)
. include "../../devel/ncursesw/buildlink3.mk"
.else
. include "../../devel/ncurses/buildlink3.mk"
.endif