blob: 7d7107eec346935171790bc32a9c1beca1ad4d44 (
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
|
# $NetBSD: options.mk,v 1.1 2013/05/15 00:41:42 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libkate
PKG_SUPPORTED_OPTIONS= debug doc oggz python valgrind vorbis
PKG_SUGGESTED_OPTIONS+= oggz vorbis
PLIST_VARS+= doc python
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
.if !empty(PKG_OPTIONS:Mdoc)
PLIST.doc= yes
.else
CONFIGURE_ARGS+= --disable-doc
.endif
.if !empty(PKG_OPTIONS:Moggz)
.include "../../multimedia/liboggz/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mpython)
REPLACE_PYTHON= tools/KateDJ/KateDJ
PY_PATCHPLIST= yes
.include "../../x11/py-wxWidgets/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
PLIST.python= yes
.else
CONFIGURE_ARGS+= HAVE_PYTHON=no
.endif
.if !empty(PKG_OPTIONS:Mvalgrind)
BUILD_DEPENDS+= valgrind-[0-9]*:../../devel/valgrind
.endif
.if !empty(PKG_OPTIONS:Mvorbis)
BUILD_DEPENDS+= vorbis-tools-[0-9]*:../../audio/vorbis-tools
.endif
|