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 3AC5C138359 for ; Sun, 11 Oct 2020 09:30:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABD84E0B97; Sun, 11 Oct 2020 09:30:22 +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 6AD25E0B9B for ; Sun, 11 Oct 2020 09:30:22 +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 A6DCF340D8A for ; Sun, 11 Oct 2020 09:30:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 941903B2 for ; Sun, 11 Oct 2020 09:30:16 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1602408597.90f5be862e2ceba2c998bdf4a3e1ac1da69b2bea.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/iverilog/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/iverilog/iverilog-9999.ebuild X-VCS-Directories: sci-electronics/iverilog/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 90f5be862e2ceba2c998bdf4a3e1ac1da69b2bea X-VCS-Branch: master Date: Sun, 11 Oct 2020 09:30:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b5b5e759-5d8b-4274-8e74-9d1a4d60ab11 X-Archives-Hash: 25b6e6a033d57961f47d324b9936632e commit: 90f5be862e2ceba2c998bdf4a3e1ac1da69b2bea Author: Huang Rui gmail com> AuthorDate: Mon Oct 5 13:58:46 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Oct 11 09:29:57 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90f5be86 sci-electronics/iverilog: fix ebuild from 11.0 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Huang Rui gmail.com> Closes: https://github.com/gentoo/gentoo/pull/17801 Signed-off-by: Joonas Niilola gentoo.org> sci-electronics/iverilog/iverilog-9999.ebuild | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/sci-electronics/iverilog/iverilog-9999.ebuild b/sci-electronics/iverilog/iverilog-9999.ebuild index eb85629d9e8..2261c277e8c 100644 --- a/sci-electronics/iverilog/iverilog-9999.ebuild +++ b/sci-electronics/iverilog/iverilog-9999.ebuild @@ -24,14 +24,14 @@ fi LICENSE="LGPL-2.1" SLOT="0" -IUSE="examples" DEPEND=" sys-libs/readline:= sys-libs/zlib " RDEPEND="${DEPEND}" -BDEPEND="dev-util/gperf +BDEPEND=" + dev-util/gperf sys-devel/bison sys-devel/flex " @@ -44,7 +44,8 @@ src_prepare() { # > sh autoconf.sh # Autoconf in root ... - eautoconf --force + eautoconf + # Precompiling lexor_keyword.gperf gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die # Precompiling vhdlpp/lexor_keyword.gperf @@ -54,13 +55,9 @@ src_prepare() { src_install() { local DOCS=( *.txt ) - # Default build fails with parallel jobs, - # https://github.com/steveicarus/iverilog/pull/294 - emake installdirs DESTDIR="${D}" + default - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples }