blob: 383b1b6e0360bd546a301048940758d721df789e (
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
|
# $NetBSD: options.mk,v 1.5 2022/08/08 10:29:33 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnucash
PKG_SUPPORTED_OPTIONS= libdbi libofx gnucash-finance-quote python
PKG_SUGGESTED_OPTIONS= libdbi libofx gnucash-finance-quote python
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mgnucash-finance-quote)
DEPENDS+= p5-Finance-Quote-[0-9]*:../../finance/p5-Finance-Quote
DEPENDS+= p5-Date-Manip-[0-9]*:../../devel/p5-Date-Manip
.endif
.if !empty(PKG_OPTIONS:Mlibofx)
CMAKE_ARGS+= -DWITH_OFX=ON
PLIST_SRC+= PLIST.ofx
.include "../../finance/libofx/buildlink3.mk"
.else
CMAKE_ARGS+= -DWITH_OFX=OFF
.endif
.if !empty(PKG_OPTIONS:Mlibdbi)
CMAKE_ARGS+= -DWITH_SQL=ON
PLIST_SRC+= PLIST.dbi
BUILD_DEPENDS+= libdbi-driver-sqlite3-[0-9]*:../../databases/libdbi-driver-sqlite3
.include "../../databases/libdbi/buildlink3.mk"
.else
CMAKE_ARGS+= -DWITH_SQL=OFF
.endif
.if !empty(PKG_OPTIONS:Mpython)
CMAKE_ARGS+= -DWITH_PYTHON=ON
PYTHON_VERSIONS_INCOMPATIBLE= 27
REPLACE_PYTHON+= bindings/python/example_scripts/*.py
REPLACE_PYTHON+= bindings/python/example_scripts/rest-api/*.py
REPLACE_PYTHON+= gnucash/python/pycons/*.py
PY_PATCHPLIST= yes
PLIST_SRC+= PLIST.python
# /usr/pkg/share/gnucash/python/pycons/console.py imports readline
DEPENDS+= ${PYPKGPREFIX}-readline-[0-9]*:../../devel/py-readline
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
.else
CMAKE_ARGS+= -DWITH_PYTHON=OFF
.endif
|