Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/iverilog/
Date: Mon, 14 Sep 2020 18:36:46
Message-Id: 1600108597.0adc7a3e612b9d167f7eda095035cf6732e03685.sam@gentoo
1 commit: 0adc7a3e612b9d167f7eda095035cf6732e03685
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 14 18:36:37 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 18:36:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0adc7a3e
7
8 sci-electronics/iverilog: install examples unconditionally
9
10 "The size of the examples is 104 kB (compressed - bz2) / 144 kB (uncompressed)."
11 "Total size of the package is about 6.3M."
12
13 Package-Manager: Portage-3.0.4, Repoman-3.0.1
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 sci-electronics/iverilog/iverilog-10.3-r2.ebuild | 13 ++++++-------
17 1 file changed, 6 insertions(+), 7 deletions(-)
18
19 diff --git a/sci-electronics/iverilog/iverilog-10.3-r2.ebuild b/sci-electronics/iverilog/iverilog-10.3-r2.ebuild
20 index 61d8fc371b2..5d2c037dbaa 100644
21 --- a/sci-electronics/iverilog/iverilog-10.3-r2.ebuild
22 +++ b/sci-electronics/iverilog/iverilog-10.3-r2.ebuild
23 @@ -24,7 +24,6 @@ fi
24
25 LICENSE="LGPL-2.1"
26 SLOT="0"
27 -IUSE="examples"
28
29 DEPEND="
30 sys-libs/readline:=
31 @@ -50,7 +49,8 @@ src_prepare() {
32 # > sh autoconf.sh
33
34 # Autoconf in root ...
35 - eautoconf --force
36 + eautoconf
37 +
38 # Precompiling lexor_keyword.gperf
39 gperf -o -i 7 -C -k 1-4,6,9,\$ -H keyword_hash -N check_identifier -t ./lexor_keyword.gperf > lexor_keyword.cc || die
40 # Precompiling vhdlpp/lexor_keyword.gperf
41 @@ -60,13 +60,12 @@ src_prepare() {
42
43 src_install() {
44 local DOCS=( *.txt )
45 +
46 # Default build fails with parallel jobs,
47 # https://github.com/steveicarus/iverilog/pull/294
48 - emake installdirs DESTDIR="${D}"
49 + emake installdirs DESTDIR="${ED}"
50 default
51
52 - if use examples; then
53 - dodoc -r examples
54 - docompress -x /usr/share/doc/${PF}/examples
55 - fi
56 + dodoc -r examples
57 + docompress -x /usr/share/doc/${PF}/examples
58 }