blob: 64c4a3b299e7cbbb45e958ae401390453b3044cf (
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
|
# $NetBSD: options.mk,v 1.3 2019/12/22 06:17:10 markd Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.rhythmbox
PKG_SUPPORTED_OPTIONS= hal daap
PKG_SUGGESTED_OPTIONS= hal
PLIST_VARS+= hal daap
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mhal)
CONFIGURE_ARGS+= --with-hal
PLIST.hal= yes
.include "../../devel/libmtp/buildlink3.mk"
.include "../../sysutils/hal/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-hal
.endif
.if !empty(PKG_OPTIONS:Mdaap)
.include "../../net/avahi/buildlink3.mk"
PLIST.daap= yes
.else
CONFIGURE_ARGS+= --disable-daap
.endif
|