aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.lua.mk
Commit message (Collapse)AuthorAgeFilesLines
* - Remove emacs mode, -*- mode: ...; -*- [1]miwi2012-05-231-1/+1
| | | | | | | | | | | | | | | | - Comments for BUILD_ and RUN_DEPENDS fail to mention alternate means to specify dependencie [2] - Fix make reinstall [3] - Trivial comment change for PORTDATA [4] PR: 151954 [1] 161314 [2] 167085 [3] 167465 [4] Submitted by: Anonymous <swell.k@gmail.com> [1] dougb@ and Chris Rees <utisoft@gmail.com> [2] Garrett Cooper <yanegomi@gmail.com> [3] "Bryan Drewery" <bryan@shatow.net> [4] Tested via: phw
* Take over maintainership.mandree2011-12-311-1/+1
| | | | Approved by: alepulver (maintainer).
* - Respect WITH_LUA_VER.alepulver2011-01-071-1/+1
| | | | | PR: 153046 Submitted by: Jase Thew <freebsd@beardz.net>
* Add lua-alien 0.5.0, lua -> C FFI.philip2010-08-261-2/+4
| | | | | PR: ports/149983 Submitted by: Anonymous <swell.k-at-gmail.com>
* - Add support for lang/tolua++ (lang/tolua++50) in a way similar toalepulver2008-08-261-4/+14
| | | | | | | lang/tolua (lang/tolua50). PR: ports/126440 Submitted by: amdmi3
* - Merge patch-Makefile into patch-src-Makefile (both actually patch same file).alepulver2008-08-111-1/+21
| | | | | | | | | | - Patch lang/lua to behave as expected by the framework. - Add missing library dependency (only run before) when using lua 5.1. - Add notes in bsd.lua.mk for updating lang/lua* ports describing how they are integrated into the ports tree. PR: ports/126207 Submitted by: Daniel Roethlisberger <daniel@roe.ch>
* - Fix tolua dependency for version 5.0 (was using 5.1).alepulver2008-08-101-1/+2
| | | | | | | - Add tolua dependency for version 5.1. PR: ports/126350 Submitted by: amdmi3
* - Fix defining Lua include/library directories under PREFIX (last commit) [1].alepulver2008-02-191-5/+26
| | | | | | | | | | - Now LUA_PREFIX has 2 functions: for Lua ports indicate where to install, and for dependencies indicate where Lua is installed (check new comments inside bsd.lua.mk for more information). PR: ports/120277 Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> Reported by: Dmitry Marakasov <amdmi3@amdmi3.ru> [1]
* - Change LUA_PREFIX default value from LOCALBASE to PREFIX.alepulver2008-02-101-1/+1
| | | | | | | | | | | | Actually the Lua prefix should be recorded on each port and read from there (as with "*-config --prefix" scripts), instead of this assumption. But supporting PREFIX is a requirement, while supporting different custom combinations of a general PREFIX for dependencies and a different PREFIX for a specific port is not. Also the latter could be achieved by changing LOCALBASE too, or directly modifying LUA_PREFIX in this case. PR: ports/120277 Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp>
* - Update luasocket to 2.0.2, set luasocket port to lua 5.1pav2007-10-291-2/+3
| | | | | | | - Add lua 5.0 compatible slave port PR: ports/117168 Submitted by: Andrew Turner <andrew+ports@fubar.geek.nz> (maintainer)
* - Don't override the DEPTYPE of a component (accidentally introduced inalepulver2007-04-111-0/+2
| | | | | | version 1.11). Obtained from: Andrew Turner <andrew@fubar.geek.nz>
* - Change some spaces into tabs.alepulver2007-04-101-3/+3
|
* - Make autodetection work properly.alepulver2007-04-101-12/+12
|
* - Fix WANT_LUA (broken since autodetection commit).alepulver2007-01-051-0/+1
|
* - If multiple versions are allowed and some do not have the requiredalepulver2007-01-011-1/+42
| | | | | components, remove them instead of producing an error. - Do not add invalid dependencies in addition to setting IGNORE.
* - Fix component autodetection.alepulver2007-01-011-1/+1
|
* - Update comments after the last addition of Lua 5.0 and 5.1 ports.alepulver2006-12-311-30/+71
| | | | | | - Add autodetection of installed versions to use if the user/port has not expressed any preference (done using own WANT_LUA framework by itself). - Correctly indent the first .for loop to initialize component information.
* Add devel/lua-pty to work with Lua 5.0 and Lua 5.1 and turn devel/lua50-ptyphilip2006-12-061-0/+1
| | | | | | | | into a slave port of it. PR: ports/106347 Submitted by: Andrew Turner <andrew+ports@fubar.geek.nz> (maintainer) Repocopy by: marcus
* Add Lua 5.1 ports to bsd.lua.mk so they can be used in LUA_COMPS. Revertphilip2006-12-011-0/+4
| | | | | | | miwi's stopgap to devel/Makefile. This should make everything happy again. Submitted by: droso, Andrew Turner <andrew+ports@fubar.geek.nz> Pointy hat to: philip
* - Add LUA_CMD, LUAC_CMD and TOLUA_CMD variables.alepulver2006-11-121-1/+9
| | | | - Use "?=" instead of "=" for defining LUA_VER.
* - Swap description of LUA_MODLIBDIR and LUA_MODSHAREDIR variables.alepulver2006-11-101-2/+2
|
* - The whitespace police is back in town.alepulver2006-10-061-5/+6
| | | | | PR: ports/104017 Submitted by: Edwin Groothuis <edwin@mavetju.org>
* * Add PKGVERSION to bsd.port.mk [1]linimon2006-09-151-0/+420
* Add bsd.lua.mk to support for lua-based ports [2] * Remove DESTDIR from bsd.scons.mk [3] * Add some quotes in 'missing' target to improve handling of duplicate origins [4] PR: 98565 [1], 101612 [2], 101952 [3], 102100 [4] Submitted by: ahze [1], alepulver [2], alexbl [3], shaun [4]