aboutsummaryrefslogtreecommitdiff
path: root/lang/lua50
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
commit01a9f79f0a3692d8148990805beabc8593d3596d (patch)
tree99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /lang/lua50
parent8c307777eaf81af4195ae428b3ebbeba734fc5af (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_3_0'.release/4.3.0
Diffstat (limited to 'lang/lua50')
-rw-r--r--lang/lua50/Makefile44
-rw-r--r--lang/lua50/distinfo1
-rw-r--r--lang/lua50/files/patch-aa21
-rw-r--r--lang/lua50/pkg-comment1
-rw-r--r--lang/lua50/pkg-descr21
-rw-r--r--lang/lua50/pkg-plist13
6 files changed, 0 insertions, 101 deletions
diff --git a/lang/lua50/Makefile b/lang/lua50/Makefile
deleted file mode 100644
index 61964f909e39..000000000000
--- a/lang/lua50/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# New ports collection makefile for: lua
-# Date created: 27 June 1999
-# Whom: Richard Kiss <richard@homemail.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= lua
-PORTVERSION= 4.0
-CATEGORIES= lang
-MASTER_SITES= ftp://ftp.tecgraf.puc-rio.br/pub/lua/ \
- ftp://csg.uwaterloo.ca/pub/lhf/lua/ \
- ftp://ftp.freesoftware.com/pub/languages/lua/ \
- ftp://ftp.ntua.gr/pub/lang/lua/ \
- ftp://ftp.uni-trier.de/pub/languages/lua/ \
- ftp://ftp.gwdg.de/pub/languages/lua/
-DISTNAME= lua-4.0
-
-MAINTAINER= richard@homemail.com
-
-MAN1= luac.1
-WRKSRC= ${WRKDIR}/lua
-
-do-install:
- @ ${MKDIR} ${PREFIX}/share/doc/lua
- @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/lua ${PREFIX}/bin
- @ ${INSTALL_PROGRAM} ${WRKSRC}/bin/luac ${PREFIX}/bin
- @ ${INSTALL_MAN} ${WRKSRC}/doc/luac.1 ${PREFIX}/man/man1/luac.1
- @ ${INSTALL_DATA} ${WRKSRC}/doc/idx.html ${PREFIX}/share/doc/lua
- @ ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${PREFIX}/share/doc/lua
- @ ${INSTALL_DATA} ${WRKSRC}/doc/luac.html ${PREFIX}/share/doc/lua
- @ ${INSTALL_DATA} ${WRKSRC}/doc/manual.html ${PREFIX}/share/doc/lua
- @ ${INSTALL_DATA} ${WRKSRC}/include/lua.h ${PREFIX}/include
- @ ${INSTALL_DATA} ${WRKSRC}/include/luadebug.h ${PREFIX}/include
- @ ${INSTALL_DATA} ${WRKSRC}/include/lualib.h ${PREFIX}/include
- @ ${INSTALL_DATA} ${WRKSRC}/include/lauxlib.h ${PREFIX}/include
- @ ${INSTALL_DATA} ${WRKSRC}/lib/liblua.a ${PREFIX}/lib
- @ ${INSTALL_DATA} ${WRKSRC}/lib/liblualib.a ${PREFIX}/lib
-
-post-install:
- @strip ${PREFIX}/bin/lua
- @strip ${PREFIX}/bin/luac
-
-.include <bsd.port.mk>
diff --git a/lang/lua50/distinfo b/lang/lua50/distinfo
deleted file mode 100644
index a371d27024c6..000000000000
--- a/lang/lua50/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (lua-4.0.tar.gz) = be11522d46d33a931868c03694aaeeef
diff --git a/lang/lua50/files/patch-aa b/lang/lua50/files/patch-aa
deleted file mode 100644
index 5d05dcbac271..000000000000
--- a/lang/lua50/files/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
---- config Mon Nov 6 12:28:20 2000
-+++ config.new Tue Jan 2 15:51:57 2001
-@@ -28,7 +28,7 @@
- # ------------------------------------------------------------------ C compiler
-
- # You need an ANSI C compiler. gcc is a popular one.
--CC= gcc
-+CC?= gcc
- WARN= -ansi -pedantic -Wall
-
- # On IRIX, cc is a good ANSI compiler.
-@@ -93,7 +93,8 @@
- INCS= -I$(INC) $(EXTRA_INCS)
- DEFS= $(COMPAT) $(NUMBER) $(OLD_ANSI) $(EXTRA_DEFS)
-
--CFLAGS= -O2 $(WARN) $(INCS) $(DEFS)
-+CFLAGS?= -O2
-+CFLAGS+= -O2 $(WARN) $(INCS) $(DEFS)
-
- V=4.0
-
diff --git a/lang/lua50/pkg-comment b/lang/lua50/pkg-comment
deleted file mode 100644
index 2ba3321e13d8..000000000000
--- a/lang/lua50/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Small, compilable scripting language providing easy access to C code
diff --git a/lang/lua50/pkg-descr b/lang/lua50/pkg-descr
deleted file mode 100644
index a232582174e2..000000000000
--- a/lang/lua50/pkg-descr
+++ /dev/null
@@ -1,21 +0,0 @@
-Lua is a programming language originally designed for extending applications,
-but also frequently used as a general-purpose, stand-alone language. Lua
-combines simple procedural syntax (similar to Pascal) with powerful data
-description constructs based on associative arrays and extensible semantics.
-Lua is dynamically typed, interpreted from bytecodes, and has automatic memory
-management with garbage collection, making it ideal for configuration,
-scripting, and rapid prototyping.
-
-A fundamental concept in the design of Lua is to provide meta-mechanisms for
-implementing features, instead of providing a host of features directly in
-the language. For example, although Lua is not a pure object-oriented
-language, it does provide meta-mechanisms for implementing classes and
-inheritance. Lua's meta-mechanisms bring an economy of concepts and keep the
-language small, while allowing the semantics to be extended in unconventional
-ways. Extensible semantics is a distinguishing feature of Lua.
-
-Lua is implemented as a small library of C functions, written in ANSI C, and
-compiles unmodified in all known platforms. The implementation goals are
-simplicity, efficiency, portability, and low embedding cost.
-
-WWW: http://www.tecgraf.puc-rio.br/lua/
diff --git a/lang/lua50/pkg-plist b/lang/lua50/pkg-plist
deleted file mode 100644
index eeb818a5e377..000000000000
--- a/lang/lua50/pkg-plist
+++ /dev/null
@@ -1,13 +0,0 @@
-bin/lua
-bin/luac
-include/lauxlib.h
-include/lua.h
-include/luadebug.h
-include/lualib.h
-lib/liblua.a
-lib/liblualib.a
-share/doc/lua/idx.html
-share/doc/lua/index.html
-share/doc/lua/luac.html
-share/doc/lua/manual.html
-@dirrm share/doc/lua