blob: c036cf99b4493aaae6dfbdafcab2eb40aef14778 (
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-2005 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_pre20041222.ebuild,v 1.3 2005/05/17 18:21:39 hansmi Exp $
MY_PV="22Dec04"
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="ppc ~x86"
S="${WORKDIR}/${PN}-${MY_PV}"
DEPEND=">=dev-lang/tk-8.3"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog NEWS README
}
|