You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-electronics/vbs/vbs-1.4.0.ebuild

41 lines
725 B

# 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/.
}