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.

40 lines
1.1 KiB

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit toolchain-funcs
DESCRIPTION="libevent bindings for Lua"
HOMEPAGE="http://luaforge.net/projects/luaevent"
SRC_URI="https://github.com/harningt/luaevent/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 arm ~arm64 x86"
RDEPEND="dev-lang/lua:0
dev-libs/libevent:0="
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
sed -i "s:^CFLAGS =:CFLAGS +=:" "${S}/Makefile" \
|| die "sed failed"
sed -i "s:^LDFLAGS =:LDFLAGS +=:" "${S}/Makefile" \
|| die "sed failed"
sed -i "/^LDFLAGS/a CC = $(tc-getCC)" "${S}/Makefile" \
|| die "sed failed"
sed -i "s:^LUA_INC_DIR ?=.*:LUA_INC_DIR ?= $(pkg-config --variable INSTALL_INC lua):" "${S}/Makefile" \
|| die "sed failed"
sed -i "s:^INSTALL_DIR_LUA ?=.*:INSTALL_DIR_LUA ?= $(pkg-config --variable INSTALL_LMOD lua):" "${S}/Makefile" \
|| die "sed failed"
sed -i "s:^INSTALL_DIR_BIN ?=.*:INSTALL_DIR_BIN ?= $(pkg-config --variable INSTALL_CMOD lua):" "${S}/Makefile" \
|| die "sed failed"
eapply_user
}
src_install() {
emake DESTDIR="${D}" install
}