blob: 075291d30bd9f9edb8aaa41117789b6c16a72e33 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnetman/gnetman-0.0.1_pre20060522.ebuild,v 1.1 2006/07/11 19:13:32 calchan Exp $
MY_PV="22May06"
DESCRIPTION="gnetman - A GNU Netlist Manipulation Library"
SRC_URI="http://www.viasic.com/opensource/gnetman-${MY_PV}.tar.gz"
HOMEPAGE="http://www.viasic.com/opensource/"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
S="${WORKDIR}/${PN}-${MY_PV}"
DEPEND=">=dev-lang/tk-8.3"
src_compile() {
econf || die "Configuration failed"
emake || die "Compilation failed"
}
src_install () {
make DESTDIR=${D} install || die "Installation failed"
dodoc AUTHORS ChangeLog NEWS README
}
|