blob: 0f1a7fb63c72a24961c8c695666210d9bcdb33af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2005/06/01 14:29:58 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.allegro
PKG_SUPPORTED_OPTIONS= esound
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mesound)
CONFIGURE_ARGS+= --enable-esddigi
.include "../../audio/esound/buildlink3.mk"
PLIST_SUBST+= ESOUND=""
.else
PLIST_SUBST+= ESOUND="@comment "
.endif
|