summaryrefslogtreecommitdiff
path: root/audio/esound
diff options
context:
space:
mode:
authorcheusov <cheusov@pkgsrc.org>2012-09-08 18:58:43 +0000
committercheusov <cheusov@pkgsrc.org>2012-09-08 18:58:43 +0000
commit21e8e8322e4eff12826cb7aa2e875e816af584f1 (patch)
treec2df35a69eda63f04fcd005bc8961617dff156de /audio/esound
parent21154b64ae1c2a8b32466478ec2ecb915e314402 (diff)
downloadpkgsrc-21e8e8322e4eff12826cb7aa2e875e816af584f1.tar.gz
Add option "arts" disabled by default
Diffstat (limited to 'audio/esound')
-rw-r--r--audio/esound/options.mk10
1 files changed, 8 insertions, 2 deletions
diff --git a/audio/esound/options.mk b/audio/esound/options.mk
index 8ea11126379..ea63c0974d6 100644
--- a/audio/esound/options.mk
+++ b/audio/esound/options.mk
@@ -1,7 +1,7 @@
-# $NetBSD: options.mk,v 1.2 2012/06/12 15:45:54 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2012/09/08 18:58:43 cheusov Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.esound
-PKG_SUPPORTED_OPTIONS= inet6
+PKG_SUPPORTED_OPTIONS= inet6 arts
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
@@ -11,3 +11,9 @@ CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
+
+.if !empty(PKG_OPTIONS:Marts)
+.include "../../audio/arts/buildlink3.mk"
+.else
+CONFIGURE_ARGS+= --disable-arts --disable-artstest
+.endif