diff options
author | roy <roy@pkgsrc.org> | 2017-01-04 16:50:31 +0000 |
---|---|---|
committer | roy <roy@pkgsrc.org> | 2017-01-04 16:50:31 +0000 |
commit | 2200ece93b0e96639a66fcd2467750451e155e9d (patch) | |
tree | 74ed6bb6d55b97e9f611f66e85972304ba3f4d9f /audio/ncmpc | |
parent | 2848deeca911724a107b52260ba94c71e7ca76ab (diff) | |
download | pkgsrc-2200ece93b0e96639a66fcd2467750451e155e9d.tar.gz |
Use the curses framework.
Diffstat (limited to 'audio/ncmpc')
-rw-r--r-- | audio/ncmpc/options.mk | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/audio/ncmpc/options.mk b/audio/ncmpc/options.mk index eadfa299de7..14f6fd50d44 100644 --- a/audio/ncmpc/options.mk +++ b/audio/ncmpc/options.mk @@ -1,17 +1,15 @@ -# $NetBSD: options.mk,v 1.2 2010/02/24 18:08:12 drochner Exp $ +# $NetBSD: options.mk,v 1.3 2017/01/04 16:54:33 roy Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.ncmpc PKG_SUPPORTED_OPTIONS= wide-curses PKG_SUGGESTED_OPTIONS= wide-curses .include "../../mk/bsd.options.mk" +.include "../../mk/curses.buildlink3.mk" ### ### Wide curses support; otherwise, default to using narrow curses. ### -.if !empty(PKG_OPTIONS:Mwide-curses) -. include "../../devel/ncursesw/buildlink3.mk" -.else +.if empty(PKG_OPTIONS:Mwide-curses) CONFIGURE_ARGS+= --disable-wide -. include "../../devel/ncurses/buildlink3.mk" .endif |