Diff systemc-2.3.4-r1 with a systemc-2.3.4-r2

/usr/portage/sci-electronics/systemc/systemc-2.3.4-r2.ebuild 2023-10-09 14:52:35.048368490 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
MY_PV="${PV}_pub_rev_20190614"
7 7

  
8
inherit autotools
8
inherit autotools toolchain-funcs
9 9

  
10 10
DESCRIPTION="A C++ based modeling platform for VLSI and system-level co-design"
11 11
HOMEPAGE="
12
	https://accellera.org/community/systemc
12
	https://systemc.org
13 13
	https://github.com/accellera-official/systemc
14 14
"
15 15

  
......
18 18
	inherit git-r3
19 19
else
20 20
	SRC_URI="https://github.com/accellera-official/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
21
	KEYWORDS="amd64 ~arm ~arm64 ~x86"
21
	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
22 22
	S="${WORKDIR}/${PN}-${MY_PV}"
23 23
fi
24 24

  
25 25
LICENSE="Apache-2.0"
26 26
SLOT="0"
27
IUSE="debug doc examples static-libs test"
27
IUSE="debug doc examples static-libs"
28 28
REQUIRED_USE="examples? ( doc )"
29
RESTRICT="!test? ( test )"
30 29

  
31 30
src_prepare() {
32 31
	default
......
51 50
	else
52 51
		rm -r "${ED}"/usr/share/doc/"${PF}" || die
53 52
	fi
53

  
54
	if ! use static-libs; then
55
		find "${ED}" -name "*.la" -delete || die
56
	fi
54 57
}
Thank you!