summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2008-03-18 18:12:43 +0000
committerDenis Dupeyron <calchan@gentoo.org>2008-03-18 18:12:43 +0000
commitd707b190ca8fe93005ec053869e596c15316c427 (patch)
tree8eedf24a224d4b9dde4103391a2f0a7c70a1ed6b /sci-electronics
parentBump kphotoalbum to 3.1.1. (diff)
downloadgentoo-2-d707b190ca8fe93005ec053869e596c15316c427.tar.gz
gentoo-2-d707b190ca8fe93005ec053869e596c15316c427.tar.bz2
gentoo-2-d707b190ca8fe93005ec053869e596c15316c427.zip
Experimental branch version bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/xcircuit/ChangeLog7
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.6.130.ebuild43
2 files changed, 49 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index b315cb4992f8..43a1c0baa3b7 100644
--- a/sci-electronics/xcircuit/ChangeLog
+++ b/sci-electronics/xcircuit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/xcircuit
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.35 2008/03/18 17:36:34 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.36 2008/03/18 18:12:43 calchan Exp $
+
+*xcircuit-3.6.130 (18 Mar 2008)
+
+ 18 Mar 2008; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.6.130.ebuild:
+ Experimental branch version bump.
*xcircuit-3.4.28 (18 Mar 2008)
diff --git a/sci-electronics/xcircuit/xcircuit-3.6.130.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.130.ebuild
new file mode 100644
index 000000000000..01c3d180b509
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.6.130.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/xcircuit-3.6.130.ebuild,v 1.1 2008/03/18 18:12:43 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"
+
+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."
+}