Bug 113443 - [NEW PORT] devel/luabind: Library that helps you create bindings between C++ and Lua
Summary: [NEW PORT] devel/luabind: Library that helps you create bindings between C++ ...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Philip Paeps
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-07 08:40 UTC by Dmitry Marakasov
Modified: 2007-06-07 10:17 UTC (History)
0 users

See Also:


Attachments
luabind-0.7.shar (6.63 KB, text/plain)
2007-06-07 08:40 UTC, Dmitry Marakasov
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Dmitry Marakasov 2007-06-07 08:40:03 UTC
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
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2007-06-07 08:40:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->philip

philip@ wants to have LUA PRs
Comment 2 dfilter service freebsd_committer freebsd_triage 2007-06-07 10:09:17 UTC
philip      2007-06-07 09:09:09 UTC

  FreeBSD ports repository

  Modified files:
    devel                Makefile 
  Added files:
    devel/luabind        Makefile distinfo pkg-descr pkg-plist 
    devel/luabind/files  patch-src-makefile 
  Log:
  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>
  
  Revision  Changes    Path
  1.2779    +1 -0      ports/devel/Makefile
  1.1       +46 -0     ports/devel/luabind/Makefile (new)
  1.1       +3 -0      ports/devel/luabind/distinfo (new)
  1.1       +17 -0     ports/devel/luabind/files/patch-src-makefile (new)
  1.1       +19 -0     ports/devel/luabind/pkg-descr (new)
  1.1       +76 -0     ports/devel/luabind/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Philip Paeps freebsd_committer freebsd_triage 2007-06-07 10:17:26 UTC
State Changed
From-To: open->closed

New port added. Thanks!