blob: b9efef41568af43edb7f9ed40d5b55748188d017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PV="${PV}_pub_rev_20190614"
inherit autotools
DESCRIPTION="A C++ based modeling platform for VLSI and system-level co-design"
HOMEPAGE="
https://accellera.org/community/systemc
https://github.com/accellera-official/systemc
"
if [[ "${PV}" == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/accellera-official/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/accellera-official/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
S="${WORKDIR}/${PN}-${MY_PV}"
fi
LICENSE="Apache-2.0"
SLOT="0"
IUSE="debug static-libs test"
RESTRICT="!test? ( test )"
DOCS=(AUTHORS.md CONTRIBUTING.md INSTALL.md LICENSE NOTICE README.md RELEASENOTES)
src_prepare() {
default
eautoconf --force
}
src_configure() {
econf CXX=$(tc-getCXX) \
$(use_enable debug) \
$(use_enable static-libs static) \
--with-unix-layout
}
pkg_postinst() {
elog "If you want to run the examples, you need to :"
elog " tar xvfz ${PORTAGE_ACTUAL_DISTDIR}/${A}"
elog " cd ${PN}-${MY_PV}"
elog " mkdir build && cd build"
elog " cmake .."
elog " cd examples"
elog " make check"
}
|