summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2007-04-01 13:08:01 +0000
committerDenis Dupeyron <calchan@gentoo.org>2007-04-01 13:08:01 +0000
commit6dc9b2d0cd6859fe134de911bd1fce1ae49705c9 (patch)
tree1d6568986af273792a1ed5f752542d9bc242b64f /sci-electronics
parentfix Makefile (bug 171035) (diff)
downloadgentoo-2-6dc9b2d0cd6859fe134de911bd1fce1ae49705c9.tar.gz
gentoo-2-6dc9b2d0cd6859fe134de911bd1fce1ae49705c9.tar.bz2
gentoo-2-6dc9b2d0cd6859fe134de911bd1fce1ae49705c9.zip
Development branch version bump.
(Portage version: 2.1.2.2)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/xcircuit/ChangeLog7
-rw-r--r--sci-electronics/xcircuit/files/digest-xcircuit-3.6.863
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.6.86.ebuild45
3 files changed, 54 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index b74379973625..8ae336e70f6e 100644
--- a/sci-electronics/xcircuit/ChangeLog
+++ b/sci-electronics/xcircuit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/xcircuit
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.26 2007/01/31 18:07:40 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.27 2007/04/01 13:08:01 calchan Exp $
+
+*xcircuit-3.6.86 (01 Apr 2007)
+
+ 01 Apr 2007; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.6.86.ebuild:
+ Development branch version bump.
31 Jan 2007; Denis Dupeyron <calchan@gentoo.org> xcircuit-3.6.59.ebuild:
Fixed KEYWORDS, see bug #160519.
diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.6.86 b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.86
new file mode 100644
index 000000000000..d38917da04a5
--- /dev/null
+++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.86
@@ -0,0 +1,3 @@
+MD5 ea9f304fc3ca91c06439a35054b6a94d xcircuit-3.6.86.tgz 1429654
+RMD160 dc7229eaa2486c446957c5de663efef9e5ce10d2 xcircuit-3.6.86.tgz 1429654
+SHA256 bcaad40d3114e450a87916c0b2bde977bbba5a938606184dcc834a6c51200868 xcircuit-3.6.86.tgz 1429654
diff --git a/sci-electronics/xcircuit/xcircuit-3.6.86.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.86.ebuild
new file mode 100644
index 000000000000..79e7ca1ff5db
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.6.86.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/xcircuit-3.6.86.ebuild,v 1.1 2007/04/01 13:08:01 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=""
+
+# Disable tests, see bug #131024
+RESTRICT="test"
+
+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."
+}