1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/lang/lua53/Makefile
Kubilay Kocak ea394acd25 lang/lua53: Add new MAINTAINER, Add bug fix patches
The Lua team maintains a list of bugs found in each release of Lua since
4.0 [1] with examples that show the bug and a patch when the fix is
available.

This patch adds all three bug fixes available so far. A fourth bug fix
should be made available soon to fix a recently-found bug in coroutines.

To make it easier to track changes for each patch, a GitHub repository
[2] has been created with the Lua distribution and patches so they can
be referenced by commit id.

- Pass MAINTAINER'ship to Submitter, who is also a member of the NetBSD
  Lua team. (Thanks!)

[1] https://www.lua.org/bugs.html
[2] https://github.com/salazar/lua

PR:		213658
Submitted by:	Guilherme Salazar <gmesalazar gmail com>
MFH:		2014Q4
2016-10-25 12:48:42 +00:00

86 lines
2.7 KiB
Makefile

# Created by: GreenDog <fiziologus@gmail.com>
# $FreeBSD$
PORTNAME= lua
PORTVERSION= 5.3.3
PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= http://www.lua.org/ftp/
PKGNAMESUFFIX= 53
PATCH_SITES= https://github.com/salazar/lua/commit/:bugfixes
PATCHFILES= fac3159120c9967f32c1147f894bd4a319d45425.diff:-p1:bugfixes \
a555c584bb33989cc49017837903331ad1c5aa97.diff:-p1:bugfixes \
8ee844d13671a5c41d70f87709b3ea35fc8a4fd1.diff:-p1:bugfixes
MAINTAINER= gmesalazar@gmail.com
COMMENT= Small, compilable scripting language providing easy access to C code
LICENSE= MIT
USES= libedit
LUA_VER= 5.3
USE_LDCONFIG= yes
# Overriding __MAKE_CONF makes sure that we don't re-parse
# /etc/make.conf during do-build, which would jeopardize the build
# if, for instance, the user set CFLAGS=mumble
# NOTE: /etc/make.conf is read BEFORE Makefile, so we already
# have its settings when we get here.
# See http://wiki.freebsd.org/MatthiasAndree/LuaLessonsLearnt
MAKE_ARGS= __MAKE_CONF=${NONEXISTENT}
# liblua.so requires libm, so make sure it has an explicit dependency
# so that applications need not second-guess lua's dependencies.
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -lm -pthread
BUILD_WRKSRC= ${WRKSRC}/src
MAKE_ARGS+= MYCFLAGS="${CFLAGS} ${CPPFLAGS} -DLUA_USE_LINUX" \
MYLDFLAGS="${LDFLAGS}" \
MYLIBS="-Wl,-E -L${LOCALBASE}/lib -ledit" \
CC="${CC}" \
LUA_T=lua53 \
LUAC_T=luac53 \
LUA_A=liblua-${LUA_VER}.a \
LUA_SO=liblua-${LUA_VER}.so \
LUA_SONAME=liblua-${LUA_VER}.so \
TO_BIN="lua53 luac53" \
TO_LIB="liblua-${LUA_VER}.a liblua-${LUA_VER}.so" \
INSTALL_TOP=${STAGEDIR}${PREFIX} \
INSTALL_INC=${STAGEDIR}${PREFIX}/include/lua53 \
INSTALL_EXEC="${INSTALL_PROGRAM}"
# Cope with the lack of support for Lua 5.2 in bsd.lua.mk. These
# overrides, which are required below, should be removed once bsd.lua.mk
# understands this lua version.
LUA_PREFIX?= ${PREFIX}
LUA_SUBDIR?= lua${PKGNAMESUFFIX}
LUA_INCDIR?= ${LUA_PREFIX}/include/${LUA_SUBDIR}
LUA_LIBDIR?= ${LUA_PREFIX}/lib
SUB_FILES= lua-${LUA_VER}.pc
SUB_LIST= version=${PORTVERSION} \
includedir=${LUA_INCDIR} \
libdir=${LUA_LIBDIR} \
soname=lua-${LUA_VER}
CFLAGS+= -fPIC
post-patch:
@${REINPLACE_CMD} -e 's,rand *(,random(,g' \
${WRKSRC}/src/lmathlib.c
@${REINPLACE_CMD} -e "/LUA_ROOT/s|/usr/local|${LUA_PREFIX}| ; \
s,readline/,editline/,g ; \
/history\.h/d" \
${WRKSRC}/src/luaconf.h ${WRKSRC}/src/lua.c
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblua-${LUA_VER}.so
@${MV} ${STAGEDIR}${PREFIX}/man/man1/lua.1 \
${STAGEDIR}${PREFIX}/man/man1/lua53.1
@${MV} ${STAGEDIR}${PREFIX}/man/man1/luac.1 \
${STAGEDIR}${PREFIX}/man/man1/luac53.1
${INSTALL_DATA} ${WRKDIR}/lua-${LUA_VER}.pc \
${STAGEDIR}${PREFIX}/libdata/pkgconfig
.include <bsd.port.mk>