blob: f5ea334d99a71be125d94eeaf9f8fe97c25d1500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $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
|