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 C523D1382C5 for ; Tue, 3 Apr 2018 18:42:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D21E1E0A8F; Tue, 3 Apr 2018 18:42:12 +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 9D5C7E0A8F for ; Tue, 3 Apr 2018 18:42:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E8F93335D6C for ; Tue, 3 Apr 2018 18:42:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E00E26D for ; Tue, 3 Apr 2018 18:42:09 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1522780911.74184ff1c25cfb35e55db808ae91a3ae602bbba3.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/rnv/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/rnv/rnv-1.7.11-r1.ebuild X-VCS-Directories: app-text/rnv/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 74184ff1c25cfb35e55db808ae91a3ae602bbba3 X-VCS-Branch: master Date: Tue, 3 Apr 2018 18:42:09 +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: 7c27b34f-ea86-4c71-949a-d955654d4514 X-Archives-Hash: db43a95db0608c8cefbd19e416272537 commit: 74184ff1c25cfb35e55db808ae91a3ae602bbba3 Author: Pacho Ramos gentoo org> AuthorDate: Tue Apr 3 18:37:40 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Apr 3 18:41:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74184ff1 app-text/rnv: Fix missing IUSE (#651854) Package-Manager: Portage-2.3.27, Repoman-2.3.9 app-text/rnv/rnv-1.7.11-r1.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app-text/rnv/rnv-1.7.11-r1.ebuild b/app-text/rnv/rnv-1.7.11-r1.ebuild index 86f7b1c4986..b9d07984f43 100644 --- a/app-text/rnv/rnv-1.7.11-r1.ebuild +++ b/app-text/rnv/rnv-1.7.11-r1.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" - +EAPI=6 inherit unpacker toolchain-funcs DESCRIPTION="A lightweight Relax NG Compact Syntax validator" @@ -12,18 +11,22 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="" -RDEPEND="dev-libs/expat - dev-scheme/scm[libscm]" +RDEPEND=" + dev-libs/expat + dev-scheme/scm[libscm] +" DEPEND="${RDEPEND}" src_prepare() { + default sed -i -e "/^AR/s/ar/$(tc-getAR)/" Makefile.in || die 'sed on Makefile.in failed' } src_configure() { LIBS="-ldl -lm" \ - econf $(use_with scheme scm /usr) + econf --with-scm="/usr" } src_install() {