diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-11-13 22:18:06 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-11-13 22:18:51 +0100 |
commit | a34ff1ecd522eab43186d0152c29757ed26d408c (patch) | |
tree | 97f4dc59ec58599b08b88c9dc1dfb6450cfeaa5a | |
parent | app-admin/aerospike-amc-community: remove unused files (diff) | |
download | gentoo-a34ff1ecd522eab43186d0152c29757ed26d408c.tar.gz gentoo-a34ff1ecd522eab43186d0152c29757ed26d408c.tar.bz2 gentoo-a34ff1ecd522eab43186d0152c29757ed26d408c.zip |
dev-lua/lua-zlib: migrate to lua eclass
Closes: https://bugs.gentoo.org/752630
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | dev-lua/lua-zlib/lua-zlib-1.2-r100.ebuild | 44 | ||||
-rw-r--r-- | profiles/package.mask | 1 |
2 files changed, 45 insertions, 0 deletions
diff --git a/dev-lua/lua-zlib/lua-zlib-1.2-r100.ebuild b/dev-lua/lua-zlib/lua-zlib-1.2-r100.ebuild new file mode 100644 index 000000000000..51adad6b25f7 --- /dev/null +++ b/dev-lua/lua-zlib/lua-zlib-1.2-r100.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..3} luajit ) + +inherit cmake lua + +DESCRIPTION="Simple streaming interface to zlib for Lua" +HOMEPAGE="https://github.com/brimworks/lua-zlib" +SRC_URI="https://github.com/brimworks/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND="sys-libs/zlib" +DEPEND="${RDEPEND}" + +lua_src_configure() { + local mycmakeargs=( + -DINSTALL_CMOD="$(lua_get_cmod_dir)" + -DUSE_LUA_VERSION="$(lua_get_version)" + ) + + if [[ ${ELUA} == luajit ]]; then + mycmakeargs+=( -DUSE_LUAJIT="ON" ) + fi + + cmake_src_configure +} + +src_configure() { + lua_foreach_impl lua_src_configure +} + +src_compile() { + lua_foreach_impl cmake_src_compile +} + +src_install() { + lua_foreach_impl cmake_src_install +} diff --git a/profiles/package.mask b/profiles/package.mask index 5d826a5dde98..bc5cdfd87381 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -337,6 +337,7 @@ dev-lua/luacrypto # Added sci-visualization/gnuplot. >=app-misc/worker-3.8.3-r100 =dev-libs/efl-1.25.1-r10 +>=dev-lua/lua-zlib-1.2-r100 >=dev-lua/luv-1.32.0.0-r100 >=dev-lua/luadbi-0.7.2-r100 >=dev-lua/lutok-0.4-r10 |