diff options
author | Sam James <sam@gentoo.org> | 2020-09-14 18:36:37 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-14 18:36:37 +0000 |
commit | 0adc7a3e612b9d167f7eda095035cf6732e03685 (patch) | |
tree | 853d133e26c4eded3d953570e725cf748067c7eb /sci-electronics | |
parent | app-crypt/scrypt: fix tests (diff) | |
download | gentoo-0adc7a3e612b9d167f7eda095035cf6732e03685.tar.gz gentoo-0adc7a3e612b9d167f7eda095035cf6732e03685.tar.bz2 gentoo-0adc7a3e612b9d167f7eda095035cf6732e03685.zip |
sci-electronics/iverilog: install examples unconditionally
"The size of the examples is 104 kB (compressed - bz2) / 144 kB (uncompressed)."
"Total size of the package is about 6.3M."
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-electronics')
-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 61d8fc371b2f..5d2c037dbaa9 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 } |