mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 09:48:00 -04:00
18 lines
459 B
Makefile
18 lines
459 B
Makefile
# $NetBSD: options.mk,v 1.2 2010/02/24 18:08:12 drochner Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ncmpc
|
|
PKG_SUPPORTED_OPTIONS= wide-curses
|
|
PKG_SUGGESTED_OPTIONS= wide-curses
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Wide curses support; otherwise, default to using narrow curses.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mwide-curses)
|
|
. include "../../devel/ncursesw/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-wide
|
|
. include "../../devel/ncurses/buildlink3.mk"
|
|
.endif
|