blob: 5e47d362531de4876acf4a624444aceb6bd94747 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $NetBSD: options.mk,v 1.2 2008/04/12 22:42:58 jlam Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.streamtuner
PKG_SUPPORTED_OPTIONS= streamtuner-local streamtuner-xiph python
PKG_SUGGESTED_OPTIONS= streamtuner-local streamtuner-xiph
.include "../../mk/bsd.options.mk"
PLIST_VARS+= local python xiph
.if !empty(PKG_OPTIONS:Mstreamtuner-local)
PLIST.local= yes
CONFIGURE_ARGS+= --enable-local
. include "../../audio/taglib/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-local
.endif
.if !empty(PKG_OPTIONS:Mstreamtuner-xiph)
PLIST.xiph= yes
CONFIGURE_ARGS+= --enable-xiph
. include "../../textproc/libxml2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-xiph
.endif
.if !empty(PKG_OPTIONS:Mpython)
PLIST.python= yes
CONFIGURE_ARGS+= --enable-python
. include "../../x11/py-gtk2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-python
.endif
|