forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
toluapp-1.0.93.ebuild
51 lines (39 loc) · 1.07 KB
/
toluapp-1.0.93.ebuild
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="2"
inherit toolchain-funcs
MY_P=${P/pp/++}
DESCRIPTION="A tool to integrate C/C++ code with Lua"
HOMEPAGE="http://www.codenix.com/~tolua/"
SRC_URI="http://www.codenix.com/~tolua/${MY_P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
IUSE=""
RDEPEND=">=dev-lang/lua-5.1.1[deprecated]"
DEPEND="${RDEPEND}
dev-util/scons"
S=${WORKDIR}/${MY_P}
src_compile() {
echo "## BEGIN gentoo.py
LIBS = ['lua', 'dl', 'm']
## END gentoo.py" > ${S}/custom.py
scons \
CC="$(tc-getCC)" \
CCFLAGS="${CFLAGS} -ansi -Wall" \
CXX="$(tc-getCXX)" \
LINK="$(tc-getCC)" \
LINKFLAGS="${LDFLAGS}" \
shared=1 || die "scons failed"
}
src_install() {
dobin bin/tolua++ || die "dobin failed"
# dobin bin/tolua++_bootstrap || die "dobin failed"
# dolib.a lib/libtolua++_static.a || die "dolib.a failed"
dolib.so lib/libtolua++.so || die "dolib.so failed"
insinto /usr/include
doins include/tolua++.h || die "doins failed"
dodoc README
dohtml doc/*
}