diff options
author | jakllsch <jakllsch@pkgsrc.org> | 2009-02-07 18:45:15 +0000 |
---|---|---|
committer | jakllsch <jakllsch@pkgsrc.org> | 2009-02-07 18:45:15 +0000 |
commit | a3192a9bcca990a36b01437ecad64a47db273a1a (patch) | |
tree | b811ba8ec37cf21e97a55c3621852d4959d726d1 /audio | |
parent | 4999eface77c71ff08a86716b19e1c07ee206c6c (diff) | |
download | pkgsrc-a3192a9bcca990a36b01437ecad64a47db273a1a.tar.gz |
forgot options.mk in last commit.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/ncmpc/options.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/audio/ncmpc/options.mk b/audio/ncmpc/options.mk new file mode 100644 index 00000000000..ba29ed967f8 --- /dev/null +++ b/audio/ncmpc/options.mk @@ -0,0 +1,16 @@ +# $NetBSD: options.mk,v 1.1 2009/02/07 18:45:15 jakllsch 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 +. include "../../devel/ncurses/buildlink3.mk" +.endif |