blob: 73bfb5736642d47bd54c63b1f94d218efa11f200 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# $NetBSD: options.mk,v 1.4 2005/05/31 16:20:43 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.musicpd
PKG_SUPPORTED_OPTIONS= aac audiofile flac iconv id3 ogg
PKG_SUGGESTED_OPTIONS= aac audiofile flac iconv id3 ogg
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Maac)
. include "../../audio/faad2/buildlink3.mk"
CONFIGURE_ARGS+= --with-faad=${BUILDLINK_PREFIX.faad2}
.else
CONFIGURE_ARGS+= --disable-aac
.endif
.if !empty(PKG_OPTIONS:Maudiofile)
. include "../../audio/libaudiofile/buildlink3.mk"
CONFIGURE_ARGS+= --with-audiofile=${BUILDLINK_PREFIX.audiofile}
CONFIGURE_ENV+= ac_cv_lib_iconv_iconv_open=yes
.else
CONFIGURE_ARGS+= --disable-audiofile
.endif
.if !empty(PKG_OPTIONS:Mflac)
. include "../../audio/flac/buildlink3.mk"
CONFIGURE_ARGS+= --with-flac=${BUILDLINK_PREFIX.flac}
.else
CONFIGURE_ARGS+= --disable-flac
.endif
.if !empty(PKG_OPTIONS:Miconv)
. include "../../converters/libiconv/buildlink3.mk"
CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv}
.else
CONFIGURE_ARGS+= --disable-iconv
.endif
.if !empty(PKG_OPTIONS:Mid3)
. include "../../audio/libid3tag/buildlink3.mk"
CONFIGURE_ARGS+= --with-id3tag=${BUILDLINK_PREFIX.libid3tag}
.else
CONFIGURE_ARGS+= --disable-id3
.endif
.if !empty(PKG_OPTIONS:Mogg)
. include "../../audio/libvorbis/buildlink3.mk"
CONFIGURE_ARGS+= --with-ogg=${BUILDLINK_PREFIX.libvorbis}
.else
CONFIGURE_ARGS+= --disable-ogg
.endif
# when IPv6 support is enabled, mpd doesn't listen on an IPv4 address.
#.if !empty(PKG_OPTIONS:Minet6)
#CONFIGURE_ARGS+= --enable-ipv6
#.else
CONFIGURE_ARGS+= --disable-ipv6
#.endif
|