blob: d7cf0e3a5a9a1263554843ebdf6591d648a6262a (
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
|
# Copyright 1999-2007 Gentoo Foundation and Tim Yamin <plasmaroo@gentoo.org> <plasmaroo@squirrelsoft.org.uk>
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/vbs/vbs-1.4.0.ebuild,v 1.3 2007/03/09 22:34:48 calchan Exp $
inherit eutils
HOMEPAGE="http://www.geda.seul.org/tools/vbs/index.html"
DESCRIPTION="vbs - the Verilog Behavioral Simulator"
SRC_URI="http://www.geda.seul.org/dist/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
IUSE="examples"
KEYWORDS="ppc ~x86"
DEPEND=">=sys-devel/flex-2.3
>=sys-devel/bison-1.22"
src_unpack () {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc-4.1.patch
}
src_compile () {
cd src
econf || die "Configuration failed"
emake -j1 vbs || die "Compilation failed"
}
src_install () {
dodoc BUGS CHANGELOG* CONTRIBUTORS COPYRIGHT FAQ README vbs.txt
dobin src/vbs
if use examples ; then
insinto /usr/share/${PF}/examples
doins EXAMPLES/*
fi
}
|