Sat Sep 8 18:58:43 2012 UTC ()
Add option "arts" disabled by default


(cheusov)
diff -r1.2 -r1.3 pkgsrc/audio/esound/options.mk

cvs diff -r1.2 -r1.3 pkgsrc/audio/esound/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/audio/esound/Attic/options.mk 2012/06/12 15:45:54 1.2
+++ pkgsrc/audio/esound/Attic/options.mk 2012/09/08 18:58:43 1.3
@@ -1,13 +1,19 @@ @@ -1,13 +1,19 @@
1# $NetBSD: options.mk,v 1.2 2012/06/12 15:45:54 wiz Exp $ 1# $NetBSD: options.mk,v 1.3 2012/09/08 18:58:43 cheusov Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.esound 3PKG_OPTIONS_VAR= PKG_OPTIONS.esound
4PKG_SUPPORTED_OPTIONS= inet6 4PKG_SUPPORTED_OPTIONS= inet6 arts
5PKG_SUGGESTED_OPTIONS= inet6 5PKG_SUGGESTED_OPTIONS= inet6
6 6
7.include "../../mk/bsd.options.mk" 7.include "../../mk/bsd.options.mk"
8 8
9.if !empty(PKG_OPTIONS:Minet6) 9.if !empty(PKG_OPTIONS:Minet6)
10CONFIGURE_ARGS+= --enable-ipv6 10CONFIGURE_ARGS+= --enable-ipv6
11.else 11.else
12CONFIGURE_ARGS+= --disable-ipv6 12CONFIGURE_ARGS+= --disable-ipv6
13.endif 13.endif
 14
 15.if !empty(PKG_OPTIONS:Marts)
 16.include "../../audio/arts/buildlink3.mk"
 17.else
 18CONFIGURE_ARGS+= --disable-arts --disable-artstest
 19.endif