blob: 0c3b4dcf54c85b09f875aa382b373d3972f1a528 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="vbs - the Verilog Behavioral Simulator"
HOMEPAGE="http://www.geda.seul.org/tools/vbs/index.html"
SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ~x86"
IUSE=""
DEPEND="
sys-devel/flex
sys-devel/bison"
RDEPEND=""
S="${WORKDIR}/${P}/src"
PATCHES=(
"${FILESDIR}"/${P}-gcc-4.1.patch
"${FILESDIR}"/${P}-gcc-4.3.patch
"${FILESDIR}"/${P}-const_cast.patch
)
src_compile() {
emake -j1 vbs
}
src_install() {
dobin vbs
cd .. || die
einstalldocs
dodoc CHANGELOG* CONTRIBUTORS vbs.txt
insinto /usr/share/${PF}/examples
doins -r EXAMPLES/.
}
|