diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-22 14:09:00 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2003-11-22 14:09:00 +0000 |
commit | 5f1f1a78d95abfa85a65b5061eda1e4402355a38 (patch) | |
tree | c8b16666673b46b5d2fa4c157dbfedc1ee69917d /app-sci | |
parent | fix deps (diff) | |
download | gentoo-2-5f1f1a78d95abfa85a65b5061eda1e4402355a38.tar.gz gentoo-2-5f1f1a78d95abfa85a65b5061eda1e4402355a38.tar.bz2 gentoo-2-5f1f1a78d95abfa85a65b5061eda1e4402355a38.zip |
Cleaned the ebuild up a little...
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/tclspice/Manifest | 2 | ||||
-rw-r--r-- | app-sci/tclspice/tclspice-0.2.14.ebuild | 15 |
2 files changed, 8 insertions, 9 deletions
diff --git a/app-sci/tclspice/Manifest b/app-sci/tclspice/Manifest index 169f5c736f74..0e3913d8919b 100644 --- a/app-sci/tclspice/Manifest +++ b/app-sci/tclspice/Manifest @@ -1,4 +1,4 @@ -MD5 02368a31880ae79d77a3405eb2a92496 tclspice-0.2.14.ebuild 788 MD5 b9a6ef2330e819f08951fc674b137045 ChangeLog 431 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 +MD5 5d5b21c0ad90e93f73ebebfed56af61d tclspice-0.2.14.ebuild 781 MD5 d62f61b6201e2be65948c87c0aaa98fa files/digest-tclspice-0.2.14 68 diff --git a/app-sci/tclspice/tclspice-0.2.14.ebuild b/app-sci/tclspice/tclspice-0.2.14.ebuild index e4c4894bab79..65d7b32a288c 100644 --- a/app-sci/tclspice/tclspice-0.2.14.ebuild +++ b/app-sci/tclspice/tclspice-0.2.14.ebuild @@ -1,37 +1,36 @@ # 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.14.ebuild,v 1.1 2003/08/31 14:04:25 cretin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/tclspice/tclspice-0.2.14.ebuild,v 1.2 2003/11/22 14:08:53 plasmaroo 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" + 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 + } |