CVS log for ports/devel/luabind/Makefile
Up to [FreeBSD] / ports / devel / luabind
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Sep 23 22:22:09 2011 UTC (4 months, 2 weeks ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_9_0_0, HEAD
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav
Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Jun 11 08:05:07 2011 UTC (8 months ago) by amdmi3
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2 lines
- Update to 0.9.1 - Drop maintainership
Revision 1.7: download - view: text, markup, annotated - select for diffs
Wed Sep 8 02:53:28 2010 UTC (17 months ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_7_4_0, RELEASE_6_EOL
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +20 -21 lines
- Update to 0.9
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Aug 22 00:18:16 2009 UTC (2 years, 5 months ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_8_1_0, RELEASE_8_0_0, RELEASE_7_3_0
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1 lines
- Switch SourceForge ports to the new File Release System: categories starting with D
Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Jul 28 11:44:52 2009 UTC (2 years, 6 months ago) by pav
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2 lines
- Update boost to 1.39 - Split boost port to separate components, with boost-all metaport PR: ports/137054 Submitted by: Alexander Churanov <churanov.port.maintainer@gmail.com> (maintainer)
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat Mar 21 00:26:47 2009 UTC (2 years, 10 months ago) by amdmi3
Branches: MAIN
CVS tags: RELEASE_7_2_0
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -0 lines
- Fix for upcoming boost 1.37.0
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Jul 25 09:38:43 2008 UTC (3 years, 6 months ago) by pav
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_6_4_0
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -2 lines
- Remove duplicates from MAKE_ENV after inclusion of CC and CXX in default MAKE_ENV
Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Jun 19 17:28:02 2008 UTC (3 years, 7 months ago) by amdmi3
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
Update my email address in 132 ports. Approved by: miwi (mentor)
Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Jun 7 09:09:09 2007 UTC (4 years, 8 months ago) by philip
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0, RELEASE_5_EOL
Luabind is a library that helps you create bindings between C++ and Lua. It has the ability to expose functions and classes, written in C++, to Lua. It will also supply the functionality to define classes in lua and let them derive from other lua classes or C++ classes. Lua classes can override virtual functions from their C++ baseclasses. It is written towards Lua 5.x, and does not work with Lua 4. It is implemented utilizing template meta programming. That means that you don't need an extra preprocess pass to compile your project (it is done by the compiler). It also means you don't (usually) have to know the exact signature of each function you register, since the library will generate code depending on the compile-time type of the function (which includes the signature). The main drawback of this approach is that the compilation time will increase for the file that does the registration, it is therefore recommended that you register everything in the same cpp-file. WWW: http://www.rasterbar.com/products/luabind.html PR: ports/113443 Submitted by: Dmitry Marakasov <amdmi3 at amdmi3.ru>
