commit: 8d534439e781edbe048078fb67cf2561e687fefc Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org> AuthorDate: Thu Oct 29 23:05:46 2015 +0000 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org> CommitDate: Thu Oct 29 23:05:58 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d534439
dev-lua/lua-zlib: Use proper mycmakeargs variable Gentoo-Bug: #563892 Package-Manager: portage-2.2.23 dev-lua/lua-zlib/lua-zlib-0.4-r1.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-lua/lua-zlib/lua-zlib-0.4-r1.ebuild b/dev-lua/lua-zlib/lua-zlib-0.4-r1.ebuild new file mode 100644 index 0000000..3a9bc37 --- /dev/null +++ b/dev-lua/lua-zlib/lua-zlib-0.4-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="Lua bindings to zlib" +HOMEPAGE="https://github.com/brimworks/lua-zlib" +SRC_URI="https://github.com/brimworks/${PN}/tarball/v${PV} -> ${P}.tgz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND="dev-lang/lua:0 + sys-libs/zlib" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_unpack() { + unpack ${A} + mv *-${PN}-* "${S}" || die +} + +src_configure() { + local mycmakeargs="-DINSTALL_CMOD='$(pkg-config --variable INSTALL_CMOD lua)'" + cmake-utils_src_configure +}
