luacompat-5.1r5, okay jolan@

This commit is contained in:
pedro 2006-03-21 21:32:25 +00:00
parent 7ad76707e0
commit ad625866d0
3 changed files with 9 additions and 27 deletions

View File

@ -1,15 +1,15 @@
# $OpenBSD: Makefile,v 1.4 2006/01/07 15:10:53 bernd Exp $
# $OpenBSD: Makefile,v 1.5 2006/03/21 21:32:25 pedro Exp $
COMMENT= "compatibility module for lua 5.1"
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
DISTNAME= compat-5.1r4
PKGNAME= luacompat-5.1r4
DISTNAME= compat-5.1r5
PKGNAME= luacompat-5.1r5
SHARED_LIBS= luacompat 5.1
DIST_SUBDIR= luacompat-5.1r4
DIST_SUBDIR= luacompat-5.1r5
CATEGORIES= devel
MASTER_SITES= http://luaforge.net/frs/download.php/952/
MASTER_SITES= http://luaforge.net/frs/download.php/1410/
HOMEPAGE= http://www.keplerproject.org/compat/
MAINTAINER= Pedro Martelletto <pedro@openbsd.org>

View File

@ -1,4 +1,4 @@
MD5 (luacompat-5.1r4/compat-5.1r4.tar.gz) = 7cfd21ed28b02ef78b6f9034406a8322
RMD160 (luacompat-5.1r4/compat-5.1r4.tar.gz) = 07a97a8eeebcb7348f02f81eb884ef3dbbf7f1dc
SHA1 (luacompat-5.1r4/compat-5.1r4.tar.gz) = 00d20857482f4dc7b49478c644aa3869cf122e42
SIZE (luacompat-5.1r4/compat-5.1r4.tar.gz) = 2790
MD5 (luacompat-5.1r5/compat-5.1r5.tar.gz) = 30d50d173ab236e96c4b969347163eb7
RMD160 (luacompat-5.1r5/compat-5.1r5.tar.gz) = 46067be16204ac73a2975b926948d3ed3c28deeb
SHA1 (luacompat-5.1r5/compat-5.1r5.tar.gz) = 9c263af490ade39a16041752439896c657494593
SIZE (luacompat-5.1r5/compat-5.1r5.tar.gz) = 2977

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-compat-5_1_lua,v 1.2 2005/09/06 13:09:27 pedro Exp $
--- compat-5.1.lua.orig Sat Sep 3 10:15:56 2005
+++ compat-5.1.lua Sat Sep 3 10:17:12 2005
@@ -26,11 +26,11 @@ package.path = LUA_PATH or os.getenv("LU
"/usr/local/share/lua/5.0/?/?.lua;" ..
"/usr/local/share/lua/5.0/?/init.lua" )
-package.cpath = os.getenv("LUA_CPATH") or
- "./?.so;" ..
+package.cpath = LUA_CPATH or os.getenv("LUA_CPATH") or
+ ("./?.so;" ..
"./l?.so;" ..
"/usr/local/lib/lua/5.0/?.so;" ..
- "/usr/local/lib/lua/5.0/l?.so"
+ "/usr/local/lib/lua/5.0/l?.so")
--
-- make sure require works with standard libraries