mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
5b199c1481
Upstream releases do not currently build with Lua 5.4 due to lua_resume api changes, and upsteam master doesn't currently work properly with Lua 5.4. While here, appease stage-qa and fix the LIB_DEPENDS -- this port does directly depend on libffi. Also pet portclippy (reorganization). PORTREVISION bumped due to the dependency change. PR: 250460 Submitted by: Andrew Gierth <andrew tao11 riddles org uk> (maintainer)
39 lines
854 B
Makefile
39 lines
854 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= lgi
|
|
PORTVERSION= 0.9.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= andrew@tao11.riddles.org.uk
|
|
COMMENT= Lua bindings to libraries using GObject-Introspection
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS+= libffi.so:devel/libffi
|
|
|
|
USES= gmake gnome lua:-53,module pkgconfig
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= pavouk
|
|
|
|
USE_GNOME= introspection:build,run
|
|
|
|
MAKE_ARGS= PREFIX="${PREFIX}" LUA_LIBDIR="${LUA_MODLIBDIR}" \
|
|
LUA_INCDIR="${LUA_INCDIR}" LUA_VERSION="${LUA_VER}" \
|
|
CORE="corelgilua${LUA_VER_STR}.so" LUA="${LUA_CMD}"
|
|
MAKE_ENV= LUA_CFLAGS="-I${LUA_INCDIR}"
|
|
TEST_TARGET= check
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/51/${LUA_VER_STR}/g' \
|
|
${WRKSRC}/lgi/core.c \
|
|
${WRKSRC}/lgi/core.lua
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${LUA_MODLIBDIR}/lgi/*.so
|
|
|
|
.include <bsd.port.mk>
|