summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-09-20 16:35:55 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-09-20 16:35:55 +0000
commit6ccc4f145e5f6556fecab440cc882c338bffdae2 (patch)
tree819ccf2019af292aca23f83e5e4a64c72498e1ef /sci-electronics
parentFixed doc installation. (diff)
downloadgentoo-2-6ccc4f145e5f6556fecab440cc882c338bffdae2.tar.gz
gentoo-2-6ccc4f145e5f6556fecab440cc882c338bffdae2.tar.bz2
gentoo-2-6ccc4f145e5f6556fecab440cc882c338bffdae2.zip
Development branch version bump.
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/xcircuit/ChangeLog7
-rw-r--r--sci-electronics/xcircuit/files/digest-xcircuit-3.6.583
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.6.58.ebuild45
3 files changed, 54 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index 0064e3a47ef2..0181d5a45412 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.22 2006/09/12 05:50:29 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.23 2006/09/20 16:35:55 calchan Exp $
+
+*xcircuit-3.6.58 (20 Sep 2006)
+
+ 20 Sep 2006; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.6.58.ebuild:
+ Development branch version bump.
12 Sep 2006; Denis Dupeyron <calchan@gentoo.org> -xcircuit-3.6.22.ebuild,
-xcircuit-3.6.38.ebuild:
diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.6.58 b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.58
new file mode 100644
index 000000000000..40359f018208
--- /dev/null
+++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.58
@@ -0,0 +1,3 @@
+MD5 ac64644425360be4541c3cb9a1fb766c xcircuit-3.6.58.tgz 1422820
+RMD160 768391eadfbde23642bde90e6573ad6c400920ba xcircuit-3.6.58.tgz 1422820
+SHA256 55975a8c56a0fe533fd99192f87c958a591c2d92f063d98dc6181d95db82964a xcircuit-3.6.58.tgz 1422820
diff --git a/sci-electronics/xcircuit/xcircuit-3.6.58.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.58.ebuild
new file mode 100644
index 000000000000..3f069d14ac6e
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.6.58.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.58.ebuild,v 1.1 2006/09/20 16:35:55 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."
+}