| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.1.3-r1 | 8 | ~amd64 ~x86 | 0 |
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-{2,3} )
inherit lua-single toolchain-funcs multiprocessing
MYP=${PN}-v${PV}
DESCRIPTION="Network Server for Lua Applications"
HOMEPAGE="https://www.public-software-group.org/moonbridge"
SRC_URI="https://www.public-software-group.org/pub/projects/${PN}/v${PV}/${MYP}.tar.gz
https://dev.gentoo.org/~tupone/distfiles/${MYP}.tar.gz"
S="${WORKDIR}"/${MYP}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
REQUIRED_USE="${LUA_REQUIRED_USE}"
DEPEND="
${LUA_DEPS}
dev-libs/libbsd"
RDEPEND="${DEPEND}"
BDEPEND="dev-build/pmake
sys-apps/lsb-release
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-1.1.2-gentoo.patch
"${FILESDIR}"/${PN}-1.0.1-fcntl.patch
)
DOCS=( README reference.txt )
src_compile() {
MAKEFLAGS="" pmake -j$(get_makeopts_jobs) \
CC=$(tc-getCC) LUA_INCLUDE="$(lua_get_include_dir)" \
MOONBR_LUA_PATH=/usr/lib/moonbridge/?.lua \
LUA_LIBRARY="$(lua_get_LIBS)" LUA_LIBDIR=/usr/$(get_libdir) \
all || die
}
src_install() {
einstalldocs
docinto examples
dodoc example_*
dodoc helloworld.lua
dobin ${PN}
insinto /usr/lib/${PN}
doins moonbridge_http.lua
docompress -x /usr/share/doc/${PF}/examples
}
${LUA_DEPS}
dev-libs/libbsd
${LUA_DEPS}
dev-libs/libbsd
dev-build/pmake sys-apps/lsb-release virtual/pkgconfig