blob: e4c5b4e55064813b653335361a953479f3536edf (
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
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/toluapp/toluapp-1.0.2.ebuild,v 1.2 2004/05/10 12:57:08 dholm Exp $
inherit eutils
MY_PN=${PN/toluapp/tolua++}
MY_P=${MY_PN}-${PV}
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"
KEYWORDS="~x86 ~ppc"
LICENSE="as-is"
SLOT="0"
IUSE=""
S=${WORKDIR}/${MY_P}
DEPEND=">=dev-lang/lua-5
dev-util/scons
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/toluapp-1.0.2-gentoo.patch
}
src_compile() {
scons CC="${CC}" CCFLAGS="${CFLAGS}" LINK="${CC}" all
}
src_install() {
dobin bin/tolua++
dolib.a lib/libtolua++.a
insinto /usr/include
doins include/tolua++.h
dodoc INSTALL README
dohtml doc/*
}
|