diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2020-04-14 15:49:36 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2020-04-14 15:49:36 +0000 |
commit | beb1c1fe19992999ef068d0dcb07c0d02f4aea71 (patch) | |
tree | 464f76d8fe2b9fd7499e26491ee739bfe0a5444e /dns/knot-resolver | |
parent | 496124accdd4d4221bb883770cd6fe27184bfc96 (diff) | |
download | freebsd-ports-beb1c1fe19992999ef068d0dcb07c0d02f4aea71.zip |
USES=lua gained flavors.
Ports using USES=lua:module or lua:flavors will be flavored. A range of
supported lua versions can be set using XX-YY (or XX-, or -YY, or simply ZZ)
for ports not supporting all lua versions.
USES=lua sets LUA_FLAVOR that needs to be used on all dependencies of
flavored lua ports, in a similar way as PHP or Python flavors.
PR: 245038
Submitted by: andrew tao11 riddles org uk
Reviewed by: mat, kevans, russ haley gmail com
Approved by: mat (portmgr)
Differential Revision: https://reviews.freebsd.org/D16494
Diffstat (limited to 'dns/knot-resolver')
-rw-r--r-- | dns/knot-resolver/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dns/knot-resolver/Makefile b/dns/knot-resolver/Makefile index ffc1cf877933..6f6a81c04952 100644 --- a/dns/knot-resolver/Makefile +++ b/dns/knot-resolver/Makefile @@ -96,8 +96,8 @@ DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen \ TRUSTANCHOR_DESC= Trust anchor bootstrapping and stats TRUSTANCHOR_USES= lua -TRUSTANCHOR_BUILD_DEPENDS= ${LUA_PKGNAMEPREFIX}luasocket>=0:net/luasocket \ - ${LUA_PKGNAMEPREFIX}luasec>=0:security/luasec +TRUSTANCHOR_BUILD_DEPENDS= ${LUA_PKGNAMEPREFIX}luasocket>=0:net/luasocket@${LUA_FLAVOR} \ + ${LUA_PKGNAMEPREFIX}luasec>=0:security/luasec@${LUA_FLAVOR} .include <bsd.port.options.mk> |