You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lua/luasocket/luasocket-2.0.2.ebuild

50 lines
1.2 KiB

# 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
}