blob: e8aa21d3570fe0c8c4a040b25aa5a8fc49085dac (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/lua/lua-4.0.1.ebuild,v 1.9 2004/06/24 22:51:23 agriffis Exp $
inherit eutils
S=${WORKDIR}/lua-${PV}
DESCRIPTION="A powerful light-weight programming language designed for extending applications."
SRC_URI="http://www.lua.org/ftp/lua-${PV}.tar.gz"
HOMEPAGE="http://www.lua.org/"
IUSE=""
SLOT="0"
KEYWORDS="x86 ppc ~sparc"
LICENSE="lua"
DEPEND="virtual/glibc"
src_compile() {
epatch ${FILESDIR}/lua-4.0-config.patch
emake || die
make so || die
}
src_install () {
make \
INSTALL_BIN=${D}/usr/bin \
INSTALL_MAN=${D}/usr/share/man/man1 \
INSTALL_INC=${D}/usr/include \
INSTALL_LIB=${D}/usr/lib \
install || die
}
|