blob: f1a34537dab110d6bbb075de02469ccf23f17e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: options.mk,v 1.1 2009/05/26 20:26:58 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.rhythmbox
PKG_SUPPORTED_OPTIONS= hal
PKG_SUGGESTED_OPTIONS= hal
PLIST_VARS+= hal
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mhal)
CONFIGURE_ARGS+= --with-ipod
.include "../../audio/libgpod/buildlink3.mk"
# needs a newer libmtp
#CONFIGURE_ARGS+= --with-mtp
#.include "../../devel/libmtp/buildlink3.mk"
CONFIGURE_ARGS+= --with-hal
PLIST.hal= yes
.include "../../sysutils/hal/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-hal
.endif
|