summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2006-07-22 16:48:28 +0000
committerDenis Dupeyron <calchan@gentoo.org>2006-07-22 16:48:28 +0000
commite7bf13ba0a09b84bf9089579e1198f4024660011 (patch)
tree4c55386f97d10ce7ef29db3f9d3b8e4eec063f3d /sci-electronics
parentFix incorrect resolving of hostname, thanks to Bert Van Leeuwen, #141207. (diff)
downloadgentoo-2-e7bf13ba0a09b84bf9089579e1198f4024660011.tar.gz
gentoo-2-e7bf13ba0a09b84bf9089579e1198f4024660011.tar.bz2
gentoo-2-e7bf13ba0a09b84bf9089579e1198f4024660011.zip
Version bump.
(Portage version: 2.1.1_pre3-r1)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/xcircuit/ChangeLog7
-rw-r--r--sci-electronics/xcircuit/files/digest-xcircuit-3.4.263
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.4.26.ebuild43
3 files changed, 52 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index c1966d6b9d0d..eb6386956510 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.20 2006/07/18 20:54:18 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.21 2006/07/22 16:48:28 calchan Exp $
+
+*xcircuit-3.4.26 (22 Jul 2006)
+
+ 22 Jul 2006; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.4.26.ebuild:
+ Version bump.
*xcircuit-3.6.41 (18 Jul 2006)
diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.4.26 b/sci-electronics/xcircuit/files/digest-xcircuit-3.4.26
new file mode 100644
index 000000000000..631c91ff93d6
--- /dev/null
+++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.4.26
@@ -0,0 +1,3 @@
+MD5 ec6ec09e97d711f507e8f7c33c88b06b xcircuit-3.4.26.tgz 1054942
+RMD160 fd9beb37f16670505ee9aadc394d6e722947d645 xcircuit-3.4.26.tgz 1054942
+SHA256 a1e78e9c1fd674210860a5a5cae41a666f59216022c38ad4898ea24c5c7754c0 xcircuit-3.4.26.tgz 1054942
diff --git a/sci-electronics/xcircuit/xcircuit-3.4.26.ebuild b/sci-electronics/xcircuit/xcircuit-3.4.26.ebuild
new file mode 100644
index 000000000000..d923578297bd
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.4.26.ebuild
@@ -0,0 +1,43 @@
+# 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.4.26.ebuild,v 1.1 2006/07/22 16:48:28 calchan Exp $
+
+DESCRIPTION="Circuit drawing and schematic capture program."
+SRC_URI="http://opencircuitdesign.com/xcircuit/archive/${P}.tgz"
+HOMEPAGE="http://opencircuitdesign.com/xcircuit"
+
+KEYWORDS="~amd64 ~ppc ~x86"
+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_unpack() {
+ unpack ${A}
+ sed -i \
+ -e "s:\$(datadir):\$(libdir):" \
+ -e "s:\$(appmandir):\$(mandir)/man1:" \
+ ${S}/Makefile.in
+}
+
+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
+}