blob: d1830a94ac8f9e0f929c1cadd75007bd803c4637 (
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
|
# $NetBSD: options.mk,v 1.2 2019/06/30 23:33:40 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.etlegacy
PKG_SUPPORTED_OPTIONS= lua ogg theora freetype sqlite3
PKG_SUGGESTED_OPTIONS= lua ogg theora freetype sqlite3
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mlua)
CMAKE_ARGS+= -DFEATURE_LUA=ON
.include "../../lang/lua53/buildlink3.mk"
.else
CMAKE_ARGS+= -DFEATURE_LUA=OFF
.endif
.if !empty(PKG_OPTIONS:Mogg)
CMAKE_ARGS+= -DFEATURE_OGG_VORBIS=ON
.include "../../audio/libvorbis/buildlink3.mk"
.else
CMAKE_ARGS+= -DFEATURE_OGG_VORBIS=OFF
.endif
.if !empty(PKG_OPTIONS:Mtheora)
CMAKE_ARGS+= -DFEATURE_THEORA=ON
.include "../../multimedia/libtheora/buildlink3.mk"
.else
CMAKE_ARGS+= -DFEATURE_THEORA=OFF
.endif
.if !empty(PKG_OPTIONS:Mfreetype)
CMAKE_ARGS+= -DFEATURE_FREETYPE=ON
.include "../../graphics/freetype2/buildlink3.mk"
.else
CMAKE_ARGS+= -DFEATURE_FREETYPE=OFF
.endif
.if !empty(PKG_OPTIONS:Msqlite3)
CMAKE_ARGS+= -DFEATURE_DBMS=ON
.include "../../databases/sqlite3/buildlink3.mk"
.else
CMAKE_ARGS+= -DFEATURE_DBMS=OFF
.endif
|