summaryrefslogtreecommitdiff
blob: 07d56e0910d6c0d3e9d326c8187e4f94aa26eba3 (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-2024 Gentoo Authors
# 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="
	app-alternatives/lex
	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/.
}