From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8038D13888F for ; Thu, 29 Oct 2015 23:06:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 410CEE081D; Thu, 29 Oct 2015 23:06:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DAB95E081D for ; Thu, 29 Oct 2015 23:06:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9E354340C08 for ; Thu, 29 Oct 2015 23:06:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 533F41A61 for ; Thu, 29 Oct 2015 23:06:11 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1446159958.8d534439e781edbe048078fb67cf2561e687fefc.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-zlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/lua-zlib/lua-zlib-0.4-r1.ebuild X-VCS-Directories: dev-lua/lua-zlib/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 8d534439e781edbe048078fb67cf2561e687fefc X-VCS-Branch: master Date: Thu, 29 Oct 2015 23:06:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 77fb729c-a3a3-44fa-b49f-e99ec05a6e2c X-Archives-Hash: 6c2be4c0dc759e69b249cded809bdfa4 commit: 8d534439e781edbe048078fb67cf2561e687fefc Author: Manuel Rüger gentoo org> AuthorDate: Thu Oct 29 23:05:46 2015 +0000 Commit: Manuel Rüger gentoo 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 +}