blob: bc5cb26efb3a3b842330d453bd1257eb3a8b4f65 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# $NetBSD: module.mk,v 1.14 2022/03/06 09:13:44 nia Exp $
#
# This Makefile fragment is intended to be included by packages that
# install Lua modules.
#
# === Package-settable variables ===
#
# LUA_LINKER_MAGIC
# This appends LDFLAGS to properly link Lua modules on non-ELF
# linkers.
#
# You probably want to set this to "no" if the package links
# binaries that are not Lua modules.
#
# Possible values: yes no
# Default: yes
#
# LUA_USE_BUSTED
# Use busted to run tests and provide a do-test target.
#
# Possible values: yes no
# Default: no
#
# LUA_BUSTED_ARGS
# Arguments to pass to the busted command when LUA_USE_BUSTED.
#
# === Defined variables ===
#
# LUA_LDIR
# Path where Lua modules are installed.
#
# LUA_CDIR
# Path where Lua C modules are installed. Not defined if
# NO_BUILD variable is set to "yes".
#
# LUA_DOCDIR
# Path where documentation files are installed.
#
# LUA_EXAMPLESDIR
# Path where example files are installed.
#
# Keywords: lua
#
.if !defined(LUA_MODULE_MK)
LUA_MODULE_MK= # defined
.if !defined(LUA_LUAVERSION_MK)
.include "../../lang/lua/luaversion.mk"
.endif
LUA_LDIR= share/lua/${_LUA_DOT_VERSION}
PLIST_SUBST+= LUA_LDIR=${LUA_LDIR}
PRINT_PLIST_AWK+= /^${LUA_LDIR:S|/|\\/|g}/ \
{ gsub(/${LUA_LDIR:S|/|\\/|g}/, "$${LUA_LDIR}") }
.if defined(NO_BUILD) && empty(NO_BUILD:M[Nn][Oo])
DEPENDS+= ${LUA_BASEDEPENDS}
.else
LUA_CDIR= lib/lua/${_LUA_DOT_VERSION}
PLIST_SUBST+= LUA_CDIR=${LUA_CDIR}
PRINT_PLIST_AWK+= /^${LUA_CDIR:S|/|\\/|g}/ \
{ gsub(/${LUA_CDIR:S|/|\\/|g}/, "$${LUA_CDIR}") }
.include "${LUA_PKGSRCDIR}/buildlink3.mk"
.endif
LUA_DOCDIR= share/doc/${PKGBASE}
PLIST_SUBST+= LUA_DOCDIR=${LUA_DOCDIR}
PRINT_PLIST_AWK+= /^${LUA_DOCDIR:S|/|\\/|g}/ \
{ gsub(/${LUA_DOCDIR:S|/|\\/|g}/, "$${LUA_DOCDIR}") }
LUA_EXAMPLESDIR= share/examples/${PKGBASE}
PLIST_SUBST+= LUA_EXAMPLESDIR=${LUA_EXAMPLESDIR}
LUA_LINKER_MAGIC?= yes
.if !empty(LUA_LINKER_MAGIC:M[yY][eE][sS])
BUILDLINK_TRANSFORM.Darwin+= rm:-shared
LDFLAGS.Cygwin+= -llua${LUA_VERSION_MAJOR}.${LUA_VERSION_MINOR}
LDFLAGS.Darwin+= -bundle -undefined dynamic_lookup
.endif
.if ${_LUA_VERSION} != "51" && ${_LUA_VERSION} != "52"
# Any Lua>=5.3 module using these flags is invalid,
# since Lua 5.3 and newer require "long long".
BUILDLINK_TRANSFORM+= rm:-ansi
BUILDLINK_TRANSFORM+= rm:-std=c89
BUILDLINK_TRANSFORM+= rm:-std=c90
.endif
LUA_USE_BUSTED?= no
.if !empty(LUA_USE_BUSTED:M[yY][eE][sS])
TEST_DEPENDS+= ${LUA_PKGPREFIX}-busted-[0-9]*:../../devel/lua-busted
do-test:
cd ${WRKSRC} && ${TEST_ENV} \
${PREFIX}/bin/busted${_LUA_DOT_VERSION} \
${LUA_BUSTED_ARGS}
.endif # LUA_USE_BUSTED
.endif # LUA_MODULE_MK
|