summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-10-10 09:20:13 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-10-10 09:20:13 +0000
commitf1512171ed7610ab090bb0aba745a88bdd5f2229 (patch)
treec7102a791a43754c550b278925a72493a5c2f624 /sci-electronics/xcircuit
parentAdded missing libXpm and pkgconfig dependancies. Closes bug #150654. (diff)
downloadgentoo-2-f1512171ed7610ab090bb0aba745a88bdd5f2229.tar.gz
gentoo-2-f1512171ed7610ab090bb0aba745a88bdd5f2229.tar.bz2
gentoo-2-f1512171ed7610ab090bb0aba745a88bdd5f2229.zip
Development branch version bump.
(Portage version: 2.1.2_pre2-r7)
Diffstat (limited to 'sci-electronics/xcircuit')
-rw-r--r--sci-electronics/xcircuit/ChangeLog8
-rw-r--r--sci-electronics/xcircuit/files/digest-xcircuit-3.6.593
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.6.59.ebuild45
3 files changed, 55 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index 6febe6996f96..9b81754e001e 100644
--- a/sci-electronics/xcircuit/ChangeLog
+++ b/sci-electronics/xcircuit/ChangeLog
@@ -1,6 +1,12 @@
# 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.24 2006/10/01 20:36:58 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.25 2006/10/10 09:20:13 calchan Exp $
+
+*xcircuit-3.6.59 (10 Oct 2006)
+
+ 10 Oct 2006; Denis Dupeyron <calchan@gentoo.org> -xcircuit-3.6.58.ebuild,
+ +xcircuit-3.6.59.ebuild:
+ Development branch version bump.
01 Oct 2006; Denis Dupeyron <calchan@gentoo.org> -xcircuit-3.4.21.ebuild,
-xcircuit-3.6.41.ebuild:
diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.6.59 b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.59
new file mode 100644
index 000000000000..173840e15787
--- /dev/null
+++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.59
@@ -0,0 +1,3 @@
+MD5 2dcf228f45f1c473bd56f27ba35f4b54 xcircuit-3.6.59.tgz 1422740
+RMD160 cea8b278ba3e6c7b59dd3a001c5453743e1d29f1 xcircuit-3.6.59.tgz 1422740
+SHA256 855c2daf796ff0d22383cbe12da754d075ce3f35848f672fd238830f8ae5f2d9 xcircuit-3.6.59.tgz 1422740
diff --git a/sci-electronics/xcircuit/xcircuit-3.6.59.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.59.ebuild
new file mode 100644
index 000000000000..b9abd75d2ba5
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.6.59.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.59.ebuild,v 1.1 2006/10/10 09:20:13 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."
+}