summaryrefslogtreecommitdiff
path: root/lang/lua
AgeCommit message (Collapse)AuthorFilesLines
2010-05-28Apply Solaris build fix from Joern Clausen in PR 43350.dholland2-4/+16
2009-12-17Fix build with new libtool by specifying --tag=CC in all calls.jmmv3-19/+19
2009-11-05Override CC in the Makefiles as newer libtool does not handlejoerg1-1/+3
alternative compiler names without explicit tag.
2009-10-30Honour compiler selection.ahoka2-6/+8
2009-07-10Set LICENSE for lua.minskim1-1/+2
2009-06-14Remove @dirrm related logic.joerg1-11/+1
2009-06-14Replace @exec/@unexec with @pkgdir or drop it.joerg1-3/+3
2009-06-14Remove @dirrm entries from PLISTsjoerg1-8/+1
2009-05-30Unbreak shared library loading for cases when mk.conf explicitly setsjoerg1-4/+4
CFLAGS. Bump revision.
2009-05-20Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlibwiz2-2/+4
major change. Reported by Robert Elz in PR 41345.
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2009-01-24Add to PRINT_PLIST_AWK for LUA_LDIR and LUA_CDIR.obache1-1/+11
2009-01-20Use our INSTALL_DATA.sketch3-9/+19
2009-01-11Add module.mk for Lua packages.minskim3-2/+38
Suggested by Aleksey Cheusov on pkgsrc-users@.
2008-09-07Update to 5.1.4:wiz4-28/+33
Bugfix release.
2008-02-27The lua library definitely needs the readline library around whenjlam1-1/+3
linking, so include readline/buildlink3.mk in lua/buildlink3.mk.
2008-02-27+ Remove dependency on ncurses (!!) of all things -- lua doens't havejlam1-2/+2
any curses code in it. It only needs readline for the "io" module, and the readline/buildlink3.mk now handles pulling in any necessary dependencies for the terminal library that it uses. Bump the PKGREVISION to 1.
2008-02-11Changes 5.1.3:adam3-15/+14
* This is a bug-fix release.
2007-12-02Remove ex-MASTER_SITEs. From Zafer Aydogan.wiz1-4/+1
2007-07-02Override /usr/local as LUA_ROOT and ensure that the default search pathjoerg4-7/+31
matches the pkgsrc environment. Bump revision. From Simon Schubert via IRC.
2007-06-15Update lua to 5.1.2.obache5-27/+34
Patch provided by Holger Weiss in PR 36333. And specify more platform target. This release fixes all known bugs in 5.1.1.
2006-11-03DESTDIR support.joerg3-21/+24
2006-09-06update lua to 5.1.1nb1 - fix build on linux (and hopefully some others)abs3-11/+20
2006-09-02Fixed the path where the manual pages are installed.rillig2-6/+11
2006-08-14Update to 5.1.1. Almost all dependencies need adaptation -> bump API.wiz10-227/+135
Changes: * Changes from version 5.0 to 5.1 ------------------------------- Language: + new module system. + new semantics for control variables of fors. + new semantics for setn/getn. + new syntax/semantics for varargs. + new long strings and comments. + new `mod' operator (`%') + new length operator #t + metatables for all types API: + new functions: lua_createtable, lua_get(set)field, lua_push(to)integer. + user supplies memory allocator (lua_open becomes lua_newstate). + luaopen_* functionst must be called through Lua. Implementation: + new configuration scheme via luaconf.h. + incremental garbage collection. + better handling of end-of-line in the lexer. + fully reentrant parser (new Lua function `load') + better support for 64-bit machines. + native loadlib support for Mac OS X. + standard distribution in only one library (lualib.a merged into lua.a)
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-06-01On Linux, -ldl must be included into the libtool archive to make otherrillig6-35/+48
packages work, for example games/fillet-ng. This fixes PR 31171. Bumped PKGREVISION.
2006-05-26Use PKGMANDIR.reed2-8/+13
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-09-07Set maintainer to tech-pkg. Bruce is not maintaining thesereed1-2/+2
packages. Thank you Bruce for helping with pkgsrc.
2005-09-06Add ${BUILDLINK_LDADD.dl} to LIBS as lua has no configure script tojlam1-1/+2
detect and add "-ldl" (on systems that need it) by itself during the build. This addresses pkg/31171.
2005-09-04Libtoolize lua build. Since the shared library version has changed,jlam10-95/+179
bump the PKGREVISION to 4, and set BUILDLINK_RECOMMENDED.lua appropriately in the buildlink3.mk file.
2005-06-07Make libraries link against libdl if it is available. This fixes PRminskim3-8/+10
pkg/29389. Bump PKGREVISION.
2005-06-07Add BUILDLINK_LDADD.dl to LIBS instead of defining platform-specific LIBS.minskim1-4/+2
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2004-12-14"-ldl" is needed to build on Linux.minskim1-1/+2
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-10-23Add -fPIC to CFLAGS to make this work on more architectures.kristerw1-2/+3
Bump PKGREVISION. Thanks to Masao Uebayashi for the patch.
2004-10-15Needs -ldl on Interix.minskim1-1/+2
2004-10-02o Unconditionally enable popen() support.cube3-5/+17
o Enable pkgviews installation (hi cube, the one from pkgsrcCon 2004 who forgot to commit this) Bump PKGREVISION.
2004-06-12set ${MAKE_ENV} in the environment before calling ${MAKE}.grant1-2/+2
2004-06-12- don't hardcode CC=gccgrant3-6/+29
- don't hardcode RANLIB=ranlib - don't pass gcc specific -W flags - needs -ldl on Solaris
2004-05-09No longer used.snj1-25/+0
2004-05-02Disable LUA_COMPATUPSYNTAX and LUA_COMPATVALUES, which are causingxtraeme2-4/+4
trouble with some functions. This closes PR pkg/25248.
2004-04-05Increase BUILDLINK_DEPENDS to 5.0.2, because this is a known version thatxtraeme2-4/+4
works under !NetBSD platforms; suggested by Quentin Garnier.
2004-04-05Install bin2c binary located in ${WRKSRC}/etc, it's needed to buildxtraeme2-2/+7
some lua libraries; pointed out by pancake. No bump PKGREVISION this time.