aboutsummaryrefslogtreecommitdiff
path: root/textproc/luaexpat/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* - Switch textproc/luaexpat to default version of luaAntoine Brodin2017-02-181-2/+3
| | | | | | | | | | | | | - Introduce textproc/luaexpat-51 that uses lua 5.1 - Use textproc/luaexpat-51 in net-im/prosody This fixes the build of multimedia/libquvi-scripts09 (60 ports skipped, including gnome3) With hat: portmgr Notes: svn path=/head/; revision=434391
* Remove libexpat.so.6 compatibility link that was added in r374303 toTijl Coosemans2016-12-081-0/+1
| | | | | | | | prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428144
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Switch back to lua 5.1, the two consumers of those ports (audio/lua51-mpdAntoine Brodin2015-06-251-1/+1
| | | | | | | | | and net-im/prosody) need it Pointy hat: sunpoet Notes: svn path=/head/; revision=390588
* - Allow build with lua52 and lua53Sunpoet Po-Chuan Hsieh2015-06-211-1/+2
| | | | | | | | | PR: 200405 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 4 weeks) Notes: svn path=/head/; revision=390258
* Remove remnant USE_LUABaptiste Daroussin2014-06-211-1/+0
| | | | Notes: svn path=/head/; revision=358700
* Update to 1.3.0.David Thiel2014-06-091-2/+4
| | | | | | | | PR: 188230 Submitted by: dar Notes: svn path=/head/; revision=357225
* Convert to USES=luaBaptiste Daroussin2014-05-261-12/+3
| | | | Notes: svn path=/head/; revision=355392
* Fix build and STAGEify.David Thiel2014-01-281-1/+1
| | | | | | | | PR: ports/185899 Submitted by: ashish@ Notes: svn path=/head/; revision=341652
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | textproc) Notes: svn path=/head/; revision=327773
* Update to 1.2.0 and take maintainership.David Thiel2011-06-081-3/+4
| | | | | | | | PR: ports/157692 Submitted by: Andrew Lewis <freeghb@gmail.com> (current maintainer) Notes: svn path=/head/; revision=275245
* - Fix on amd64Dmitry Marakasov2009-07-151-4/+5
| | | | | | | | | | | - Respect CC - Check for lua version correctly PR: 136786, 136789 Submitted by: Andrew Lewis <freeghb@gmail.com> (maintainer) Notes: svn path=/head/; revision=237902
* - Update maintainer e-mail addressPhilip M. Gollucci2009-07-141-2/+2
| | | | | | | Requested by: private e-mail Notes: svn path=/head/; revision=237760
* LuaExpat is a SAX XML parser based on the Expat library. SAX is the Simple APIPhilip M. Gollucci2009-07-141-0/+32
for XML and allows programs to: * process a XML document incrementally, thus being able to handle huge documents without memory penalties; * register handler functions which are called by the parser during the processing of the document, handling the document elements or text. With an event-based API like SAX the XML document can be fed to the parser in chunks, and the parsing begins as soon as the parser receives the first document chunk. LuaExpat reports parsing events (such as the start and end of elements) directly to the application through callbacks. The parsing of huge documents can benefit from this piecemeal operation. WWW: http://www.keplerproject.org/luaexpat PR: ports/136265 Submitted by: Andrew Lewis <dru at silenceisdefeat.net> Notes: svn path=/head/; revision=237757