blob: 2ff01ef6af5b9836bf89477bf55ff206f62a5106 (
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
39
40
41
42
43
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/tclspice/tclspice-0.2.14.ebuild,v 1.7 2004/06/24 22:19:15 agriffis Exp $
inherit eutils
DESCRIPTION="Spice circuit simulator with TCL scipting language and GUI"
HOMEPAGE="http://tclspice.sourceforge.net/"
SRC_URI="mirror://sourceforge/tclspice/${P}.tar.gz
readline? ( http://www.brorson.com/gEDA/ngspice/${P}.sdb.diff )"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~sparc"
IUSE="readline"
DEPEND="dev-lang/tk
>=dev-tcltk/blt-2.4z
>=dev-tcltk/tclreadline-2.1.0"
RDEPEND="${DEPEND}
readline? ( sys-libs/readline )"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
use readline && epatch ${DISTDIR}/${P}.sdb.diff
}
src_compile() {
econf --enable-xspice --enable-experimental --with-tcl || die "econf failed"
emake tcl || die
}
src_install() {
make DESTDIR=${D} install-tcl || die
cd ${S}
dodoc README README.Tcl ChangeLog
cd src/tcl
docinto tcl
dodoc ChangeLog README
}
|