40 lines
725 B
Bash
40 lines
725 B
Bash
# 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/.
|
|
}
|