blob: 3467b14d01bc14923a3234abc8034d230bc9d45d (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-lang/iverilog/iverilog-0.6.1.ebuild,v 1.1 2002/04/04 03:56:03 chadh Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GNU performance analyzer"
SRC_URI="ftp://icarus.com/pub/eda/verilog/v0.6/verilog-${PV}.tar.gz"
HOMEPAGE="http://www.icarus.com/eda/verilog/"
DEPEND="dev-util/gperf"
src_unpack() {
unpack ${A}
cd ${WORKDIR}
mv verilog-${PV} ${P}
}
src_install () {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc *.txt COPYING INSTALL examples/*
}
|