From owner-cvs-all@FreeBSD.ORG Thu Jun 7 09:09:09 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E455216A41F; Thu, 7 Jun 2007 09:09:09 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id D4BB613C44B; Thu, 7 Jun 2007 09:09:09 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l57999GZ003891; Thu, 7 Jun 2007 09:09:09 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l57999LN003890; Thu, 7 Jun 2007 09:09:09 GMT (envelope-from philip) Message-Id: <200706070909.l57999LN003890@repoman.freebsd.org> From: Philip Paeps Date: Thu, 7 Jun 2007 09:09:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/luabind Makefile distinfo pkg-descr pkg-plist ports/devel/luabind/files patch-src-makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jun 2007 09:09:10 -0000 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 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)