summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-07-18 20:54:18 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-07-18 20:54:18 +0000
commiteb32d07d62f00859a11b85cd19e17514e6f31128 (patch)
tree82da143b1380efcc4aa279d9f4a59fbb8d49d3a5 /sci-electronics
parentÂFixes compilation in FreeBSD wrt #138123. (diff)
downloadgentoo-2-eb32d07d62f00859a11b85cd19e17514e6f31128.tar.gz
gentoo-2-eb32d07d62f00859a11b85cd19e17514e6f31128.tar.bz2
gentoo-2-eb32d07d62f00859a11b85cd19e17514e6f31128.zip
Development branch version bump.
(Portage version: 2.1.1_pre3)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/xcircuit/ChangeLog7
-rw-r--r--sci-electronics/xcircuit/files/digest-xcircuit-3.6.413
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.6.41.ebuild45
3 files changed, 54 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index d950c8126eba..c1966d6b9d0d 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.19 2006/07/08 08:31:20 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.20 2006/07/18 20:54:18 calchan Exp $
+
+*xcircuit-3.6.41 (18 Jul 2006)
+
+ 18 Jul 2006; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.6.41.ebuild:
+ Development branch version bump.
*xcircuit-3.6.38 (08 Jul 2006)
diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.6.41 b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.41
new file mode 100644
index 000000000000..ee4556777964
--- /dev/null
+++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.41
@@ -0,0 +1,3 @@
+MD5 dffe2922d842a610e7ccfc4d5e0cc428 xcircuit-3.6.41.tgz 1397347
+RMD160 9c7da778660ab353d899e593bad0395abbe53cb3 xcircuit-3.6.41.tgz 1397347
+SHA256 b6c561ff41868591a2751e9df96f87594877f440909c27ef56544a0c9bb6b817 xcircuit-3.6.41.tgz 1397347
diff --git a/sci-electronics/xcircuit/xcircuit-3.6.41.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.41.ebuild
new file mode 100644
index 000000000000..1d95376c7981
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.6.41.ebuild
@@ -0,0 +1,45 @@
+# 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.41.ebuild,v 1.1 2006/07/18 20:54:18 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."
+}