diff options
-rw-r--r-- | sci-electronics/iverilog/iverilog-10.3-r2.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sci-electronics/iverilog/iverilog-10.3-r2.ebuild b/sci-electronics/iverilog/iverilog-10.3-r2.ebuild index 61d8fc371b2..5d2c037dbaa 100644 --- a/sci-electronics/iverilog/iverilog-10.3-r2.ebuild +++ b/sci-electronics/iverilog/iverilog-10.3-r2.ebuild @@ -24,7 +24,6 @@ fi LICENSE="LGPL-2.1" SLOT="0" -IUSE="examples" DEPEND=" sys-libs/readline:= @@ -50,7 +49,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 @@ -60,13 +60,12 @@ src_prepare() { src_install() { local DOCS=( *.txt ) + # Default build fails with parallel jobs, # https://github.com/steveicarus/iverilog/pull/294 - emake installdirs DESTDIR="${D}" + emake installdirs DESTDIR="${ED}" 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 } |