blob: 7584d367ec644e2d0f2fe1ef1db84811ffa84b2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/luabind/luabind-6-r1.ebuild,v 1.5 2005/06/30 21:44:29 rphillips Exp $
S=${WORKDIR}/luabind
DESCRIPTION="C++ library that aids in creating bindings for Lua"
HOMEPAGE="http://luabind.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-b${PV}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="x86 ppc ~sparc"
IUSE=""
DEPEND="dev-lang/lua
=dev-libs/boost-1.31*"
src_compile() {
sed -i 's:cd test.*::g' makefile
emake
}
src_install() {
dodoc doc/*
insinto /usr/include/luabind
doins luabind/*
insinto /usr/include/luabind/detail
doins luabind/detail/*
insinto /usr/lib
doins lib/*
}
|