blob: e81b59b210fc6d28f37258314a46d2c2e435cb5f (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/lua/lua-5.1.1.ebuild,v 1.5 2006/11/27 23:02:36 mabi Exp $
inherit eutils portability
DESCRIPTION="A powerful light-weight programming language designed for extending applications"
HOMEPAGE="http://www.lua.org/"
SRC_URI="http://www.lua.org/ftp/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~ppc ~ppc64 ~x86"
IUSE="readline static"
RDEPEND="readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-make.patch
epatch "${FILESDIR}"/${P}-module_paths.patch
sed -i -e 's:\(/README\)\("\):\1.gz\2:g' doc/readme.html
if ! use readline ; then
epatch "${FILESDIR}"/${P}-readline.patch
fi
# Using dynamic linked lua is not recommended upstream for performance
# reasons. http://article.gmane.org/gmane.comp.lang.lua.general/18519
# Mainly, this is of concern if your arch is poor with GPRs, like x86
# Note that the lua compiler is build statically anyway
if use static ; then
epatch "${FILESDIR}"/${P}-make_static.patch
fi
}
src_compile() {
myflags=
# what to link to liblua
liblibs="-lm"
if use ppc-macos; then
mycflags="${mycflags} -DLUA_USE_MACOSX"
else # building for standard linux (and bsd too)
mycflags="${mycflags} -DLUA_USE_LINUX"
liblibs="${liblibs} -ldl"
fi
# what to link to the executables
mylibs=
if use readline; then
mylibs="-lreadline"
fi
cd src
emake CFLAGS="${mycflags} ${CFLAGS}" \
RPATH="/usr/$(get_libdir)/" \
LUA_LIBS="${mylibs}" \
LIB_LIBS="${liblibs}" \
V=${PV} \
gentoo_all || die "emake failed"
mv lua_test ../test/lua.static
}
src_install() {
emake INSTALL_TOP="${D}/usr/" V=${PV} gentoo_install \
|| die "emake install gentoo_install failed"
dodoc HISTORY README
dohtml doc/*.html doc/*.gif
insinto /usr/share/pixmaps
doins etc/lua.ico
insinto /usr/$(get_libdir)/pkgconfig
doins etc/lua.pc
}
src_test() {
local positive="bisect cf echo env factorial fib fibfor hello printf sieve
sort trace-calls trace-globals"
local negative="readonly"
local test
cd "${S}"
for test in ${positive}; do
test/lua.static test/${test}.lua &> /dev/null || die "test $test failed"
done
for test in ${negative}; do
test/lua.static test/${test}.lua &> /dev/null && die "test $test failed"
done
}
|