summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorjakllsch <jakllsch@pkgsrc.org>2009-02-07 18:45:15 +0000
committerjakllsch <jakllsch@pkgsrc.org>2009-02-07 18:45:15 +0000
commita3192a9bcca990a36b01437ecad64a47db273a1a (patch)
treeb811ba8ec37cf21e97a55c3621852d4959d726d1 /audio
parent4999eface77c71ff08a86716b19e1c07ee206c6c (diff)
downloadpkgsrc-a3192a9bcca990a36b01437ecad64a47db273a1a.tar.gz
forgot options.mk in last commit.
Diffstat (limited to 'audio')
-rw-r--r--audio/ncmpc/options.mk16
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