From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3812D139084 for ; Mon, 25 Dec 2017 14:43:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62E23E0DEE; Mon, 25 Dec 2017 14:43:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46461E0DEE for ; Mon, 25 Dec 2017 14:43:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38E1233DDA5 for ; Mon, 25 Dec 2017 14:43:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F086EAE96 for ; Mon, 25 Dec 2017 14:43:18 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514212931.a7d432a61be60ab70c9bf3c1d5b502bb2a4ea05f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ima-evm-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild X-VCS-Directories: app-crypt/ima-evm-utils/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a7d432a61be60ab70c9bf3c1d5b502bb2a4ea05f X-VCS-Branch: master Date: Mon, 25 Dec 2017 14:43:18 +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: 8b999e8d-a29b-4c95-b1fc-3a4bcc957dff X-Archives-Hash: 1f27376f1f4f346cb73ba7f4a1c20534 commit: a7d432a61be60ab70c9bf3c1d5b502bb2a4ea05f Author: David Seifert gentoo org> AuthorDate: Mon Dec 25 13:19:43 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Dec 25 14:42:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7d432a6 app-crypt/ima-evm-utils: [QA] Port to git-r3 Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild | 33 +++++++++++++++-------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild b/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild index a7366acbcaa..6252285e3f1 100644 --- a/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild +++ b/app-crypt/ima-evm-utils/ima-evm-utils-9999.ebuild @@ -1,21 +1,32 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -EGIT_REPO_URI="git://git.code.sf.net/p/linux-ima/ima-evm-utils" -EGIT_BOOTSTRAP="autogen.sh" - -inherit git-2 eutils +inherit autotools git-r3 DESCRIPTION="Supporting tools for IMA and EVM" HOMEPAGE="http://linux-ima.sourceforge.net" -SRC_URI="" +EGIT_REPO_URI="git://git.code.sf.net/p/linux-ima/ima-evm-utils" -DEPEND="sys-apps/keyutils" -RDEPEND="${DEPEND}" +RDEPEND=" + dev-libs/openssl:0= + sys-apps/keyutils" +DEPEND="${RDEPEND} + app-text/docbook-xsl-stylesheets" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" -IUSE="" +IUSE="debug" + +src_prepare() { + default + + sed -i '/^MANPAGE_DOCBOOK_XSL/s:/usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook.xsl:/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl:' Makefile.am || die + + eautoreconf +} + +src_configure() { + econf $(use_enable debug) +}