blob: c1e38d357b87e7fc814f851a9e1123499f2292db (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/ng-spice-rework/ng-spice-rework-15.ebuild,v 1.1 2004/02/01 17:48:17 plasmaroo Exp $
S=${WORKDIR}/${P}
DESCRIPTION="NGSpice - The Next Generation Spice (Circuit Emulator)"
SRC_URI="http://www.geda.seul.org/dist/ngspice-rework${PV}.tgz"
HOMEPAGE="http://ngspice.sourceforge.net"
SLOT="0"
LICENSE="BSD GPL-2"
KEYWORDS="~x86"
DEPEND=">=sys-libs/glibc-2.1.3"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc COPYING COPYRIGHT CREDITS ChangeLog README
}
|