forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luasocket-2.0.2.ebuild
49 lines (39 loc) · 1.19 KB
/
luasocket-2.0.2.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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
inherit multilib toolchain-funcs flag-o-matic eutils
DESCRIPTION="Networking support library for the Lua language"
HOMEPAGE="http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/"
SRC_URI="http://luaforge.net/frs/download.php/2664/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~arm x86"
IUSE="debug"
RDEPEND=">=dev-lang/lua-5.1[deprecated]"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
# Unix socket support is needed by app-crypt/ekeyd, but upstream
# does not seem to enable it by default.
epatch "${FILESDIR}"/${P}-unixsocket.patch
}
src_compile() {
# We append flags here to avoid editing the config file
use debug && append-flags -DLUASOCKET_DEBUG
append-flags -fPIC
emake \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
CC="$(tc-getCC)" \
LD="$(tc-getCC) -shared" \
|| die
}
src_install() {
emake install \
INSTALL_TOP_SHARE="${D}/$(pkg-config --variable INSTALL_LMOD lua)" \
INSTALL_TOP_LIB="${D}/$(pkg-config --variable INSTALL_CMOD lua | sed -e "s:lib/:$(get_libdir)/:")" \
|| die
dodoc NEW README || die
dohtml doc/* || die
}