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 /devel/lua-bitlib | |
parent | www/yarn: fix regression with global packages (diff) |
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
Notes
Notes:
svn path=/head/; revision=531700
Diffstat (limited to 'devel/lua-bitlib')
-rw-r--r-- | devel/lua-bitlib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/lua-bitlib/Makefile b/devel/lua-bitlib/Makefile index 5008b9b91ea2..b4fd46f08827 100644 --- a/devel/lua-bitlib/Makefile +++ b/devel/lua-bitlib/Makefile @@ -3,6 +3,7 @@ PORTNAME= bitlib PORTVERSION= 24 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://luaforge.net/frs/download.php/2715/ PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} @@ -10,7 +11,7 @@ PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Tiny library for bitwise operations -USES= lua +USES= lua:module PLIST_FILES= %%LUA_MODLIBDIR%%/bit.so |