summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Jones <cretin@gentoo.org>2003-08-04 09:36:12 +0000
committerStefan Jones <cretin@gentoo.org>2003-08-04 09:36:12 +0000
commit70ff9910324e1d0cae1319e48943360aae9a50ef (patch)
treee96c90f19b3a35a1883aba476ae20812427949b2 /app-sci
parentAdded support for ipv6. (diff)
downloadgentoo-2-70ff9910324e1d0cae1319e48943360aae9a50ef.tar.gz
gentoo-2-70ff9910324e1d0cae1319e48943360aae9a50ef.tar.bz2
gentoo-2-70ff9910324e1d0cae1319e48943360aae9a50ef.zip
Initial commit to portage
Diffstat (limited to 'app-sci')
-rw-r--r--app-sci/tclspice/ChangeLog8
-rw-r--r--app-sci/tclspice/Manifest3
-rw-r--r--app-sci/tclspice/files/digest-tclspice-0.2.131
-rw-r--r--app-sci/tclspice/tclspice-0.2.13.ebuild37
4 files changed, 49 insertions, 0 deletions
diff --git a/app-sci/tclspice/ChangeLog b/app-sci/tclspice/ChangeLog
new file mode 100644
index 000000000000..beceb549691a
--- /dev/null
+++ b/app-sci/tclspice/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-sci/tclspice
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/tclspice/ChangeLog,v 1.1 2003/08/04 09:36:12 cretin Exp $
+
+*tclspice-0.2.13 (04 Aug 2003)
+
+ 04 Aug 2003; Stefan Jones <cretin@gentoo.org> :
+ Initial addition to portage.
diff --git a/app-sci/tclspice/Manifest b/app-sci/tclspice/Manifest
new file mode 100644
index 000000000000..dfb0eef4dcce
--- /dev/null
+++ b/app-sci/tclspice/Manifest
@@ -0,0 +1,3 @@
+MD5 4a6c9f3311ce5525076dbf509a814411 tclspice-0.2.13.ebuild 686
+MD5 438c7c3e913d847ef05cfdc24d6570da ChangeLog 238
+MD5 88ea7287a24a641e17d35620c8c4e442 files/digest-tclspice-0.2.13 68
diff --git a/app-sci/tclspice/files/digest-tclspice-0.2.13 b/app-sci/tclspice/files/digest-tclspice-0.2.13
new file mode 100644
index 000000000000..01f225079e2a
--- /dev/null
+++ b/app-sci/tclspice/files/digest-tclspice-0.2.13
@@ -0,0 +1 @@
+MD5 782c5b0b4b56d15c28c673aa0f131407 tclspice-0.2.13.tar.gz 3008906
diff --git a/app-sci/tclspice/tclspice-0.2.13.ebuild b/app-sci/tclspice/tclspice-0.2.13.ebuild
new file mode 100644
index 000000000000..feba5954323d
--- /dev/null
+++ b/app-sci/tclspice/tclspice-0.2.13.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/tclspice/tclspice-0.2.13.ebuild,v 1.1 2003/08/04 09:36:12 cretin Exp $
+
+DESCRIPTION="Spice circuit simulator with TCL scipting language and GUI"
+
+HOMEPAGE="http://tclspice.sf.net/"
+
+SRC_URI="mirror://sourceforge/tclspice/${P}.tar.gz"
+
+LICENSE="BSD"
+
+SLOT="0"
+
+KEYWORDS="x86 ~sparc ~ppc ~alpha"
+
+IUSE=""
+
+DEPEND="dev-lang/tk
+ dev-tcltk/blt
+ dev-tcltk/tclreadline"
+
+S=${WORKDIR}/${PN}
+
+src_compile() {
+ econf --enable-xspice --enable-experimental --with-tcl
+ 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
+}