diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2006-07-08 08:31:20 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2006-07-08 08:31:20 +0000 |
commit | e35b63bea79d18e44bbb2b1c502ce75f68e8a0cd (patch) | |
tree | a496a76a5a5e24ffb3eabf5156a4589ad0110df4 /sci-electronics/xcircuit | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-e35b63bea79d18e44bbb2b1c502ce75f68e8a0cd.tar.gz gentoo-2-e35b63bea79d18e44bbb2b1c502ce75f68e8a0cd.tar.bz2 gentoo-2-e35b63bea79d18e44bbb2b1c502ce75f68e8a0cd.zip |
Development branch version bump.
(Portage version: 2.1.1_pre2-r4)
Diffstat (limited to 'sci-electronics/xcircuit')
-rw-r--r-- | sci-electronics/xcircuit/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/xcircuit/files/digest-xcircuit-3.6.38 | 3 | ||||
-rw-r--r-- | sci-electronics/xcircuit/xcircuit-3.6.38.ebuild | 47 |
3 files changed, 56 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog index 40c807bd1171..d950c8126eba 100644 --- a/sci-electronics/xcircuit/ChangeLog +++ b/sci-electronics/xcircuit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-electronics/xcircuit # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.18 2006/07/07 19:52:44 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.19 2006/07/08 08:31:20 calchan Exp $ + +*xcircuit-3.6.38 (08 Jul 2006) + + 08 Jul 2006; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.6.38.ebuild: + Development branch version bump. 07 Jul 2006; Denis Dupeyron <calchan@gentoo.org> -xcircuit-3.1.31.ebuild: Removed now unsupported 3.1 branch. diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.6.38 b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.38 new file mode 100644 index 000000000000..2f6caf8c78dd --- /dev/null +++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.38 @@ -0,0 +1,3 @@ +MD5 147817805716e1172668278201c4ca18 xcircuit-3.6.38.tgz 1414609 +RMD160 5fa65076cbe1bf7d88329847c5139369d814bc18 xcircuit-3.6.38.tgz 1414609 +SHA256 abdd52a9f25f162ebd309b9b39858f53b1676fd2ac994efacada362e2f293a95 xcircuit-3.6.38.tgz 1414609 diff --git a/sci-electronics/xcircuit/xcircuit-3.6.38.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.38.ebuild new file mode 100644 index 000000000000..ff33b2e0c04f --- /dev/null +++ b/sci-electronics/xcircuit/xcircuit-3.6.38.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/xcircuit-3.6.38.ebuild,v 1.1 2006/07/08 08:31:20 calchan Exp $ + +DESCRIPTION="Circuit drawing and schematic capture program." +SRC_URI="http://opencircuitdesign.com/xcircuit/archive/${P}.tgz" +HOMEPAGE="http://opencircuitdesign.com/xcircuit" + +# This is a development version. Do not keyword without contacting maintainer as we add/remove these at random. +KEYWORDS="-*" +SLOT="0" +LICENSE="GPL-2" +IUSE="" + +DEPEND="virtual/ghostscript + dev-lang/tk + || ( x11-libs/libXt + virtual/x11 + )" + +src_compile() { + econf \ + --with-tcl \ + --with-ngspice \ + --disable-dependency-tracking \ + || die 'econf failed!' + emake || die 'emake failed!' +} + +src_install () { + make DESTDIR=${D} install || die "Installation failed" + dodoc CHANGES README* TODO + + doman ${D}/usr/lib/xcircuit-3.6/man/xcircuit.1 + rm ${D}/usr/lib/xcircuit-3.6/man -rf +} + +src_postinst() { + ewarn "You may want to emerge ng-spice-rework which integrates well with xcircuit." + ewarn "Note that in order for ngspice to work with xcircuit, you'll need at least" + ewarn "sci-electronics/ng-spice-rework-17-r1." +} + +src_test () { + # See bug #131024 + true +} |