summaryrefslogtreecommitdiff
path: root/lang/lua/Makefile
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2004-04-05 02:31:06 +0000
committerxtraeme <xtraeme>2004-04-05 02:31:06 +0000
commit56e78a41ec0a3ee7a96a85e7dde3e67caabce111 (patch)
tree810d73183f91354cbb4628a29b7c48a3963d930e /lang/lua/Makefile
parentf888dcc4053c0bc74b586d434f4359d4f7b5f5c4 (diff)
downloadpkgsrc-56e78a41ec0a3ee7a96a85e7dde3e67caabce111.tar.gz
Update lua to 5.0.2, from Bruce J.A. Nourish via tech-pkg@.
Lua 5.0.2 is a bugfix release, which contains the following fixes: src/ldo.c Attempt to resume running coroutine crashed Lua src/lgc.c C functions also may have stacks larger than current top Userdata to be collected still counted into new GC threshold src/lgc.h Userdata to be collected still counted into new GC threshold src/lparser.c Syntax `local function' did not increment stack size src/lvm.c `pc' address was invalidated when a coroutine was suspended Count hook might be called without being set src/lib/lbaselib.c Buffer overflow for unusual %p representation Wrong number of returns from chunks loaded from stdin src/lib/liolib.c `file.close()' could not be called without arguments Buffer overflow for unusual %p representation src/luac/luac.c Missing lock/unlock
Diffstat (limited to 'lang/lua/Makefile')
-rw-r--r--lang/lua/Makefile25
1 files changed, 8 insertions, 17 deletions
diff --git a/lang/lua/Makefile b/lang/lua/Makefile
index 281d14fa2fe..d648da6449e 100644
--- a/lang/lua/Makefile
+++ b/lang/lua/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2004/02/24 00:05:26 cube Exp $
+# $NetBSD: Makefile,v 1.13 2004/04/05 02:31:06 xtraeme Exp $
-DISTNAME= lua-5.0.1
-PKGREVISION= 1
+DISTNAME= lua-5.0.2
CATEGORIES= lang
MASTER_SITES= ftp://ftp.tecgraf.puc-rio.br/pub/lua/ \
ftp://ftp.ntua.gr/pub/lang/lua/ \
@@ -16,28 +15,20 @@ MASTER_SITES= ftp://ftp.tecgraf.puc-rio.br/pub/lua/ \
http://mirrors.sunsite.dk/lua/ \
http://ftp.chg.ru/pub/lang/lua/
-MAINTAINER= tech-pkg@NetBSD.org
+MAINTAINER= pkgsrc@bjan.freeshell.org
HOMEPAGE= http://www.lua.org/
COMMENT= Powerful light-weight language for extending applications
-USE_BUILDLINK3= yes
-MAKE_ENV+= NOGCCERROR=yes
-
-BUILD_DIRS= ${WRKSRC}/objdir
-
-post-extract:
- ${MKDIR} ${BUILD_DIRS}
-
-post-patch:
- ${CP} ${WRKSRC}/doc/lua.1 ${BUILD_DIRS}/lua
- ${CP} ${WRKSRC}/doc/luac.1 ${BUILD_DIRS}/luac
+USE_BUILDLINK3= yes
+ALL_TARGET= all so
+INSTALL_TARGET= install soinstall
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/lua
- cd ${WRKSRC}; ${INSTALL_DATA} README COPYRIGHT \
+ cd ${WRKSRC}; ${INSTALL_DATA} README COPYRIGHT \
HISTORY ${PREFIX}/share/doc/lua
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/lua
- cd ${WRKSRC}/doc; ${INSTALL_DATA} *.html *.gif \
+ cd ${WRKSRC}/doc; ${INSTALL_DATA} *.html *.gif \
${PREFIX}/share/doc/html/lua
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/lua
cd ${WRKSRC}/test && ${INSTALL_DATA} README *.lua \