summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2008-03-18 17:36:34 +0000
committerDenis Dupeyron <calchan@gentoo.org>2008-03-18 17:36:34 +0000
commitc66df332d0e5f953c2e45764c3c9290b2a0faa79 (patch)
tree9cdc6c7a75e3649a5c782f9d6bb20e069ed7e928 /sci-electronics
parentSlotmove xulrunner-1.8* again (diff)
downloadgentoo-2-c66df332d0e5f953c2e45764c3c9290b2a0faa79.tar.gz
gentoo-2-c66df332d0e5f953c2e45764c3c9290b2a0faa79.tar.bz2
gentoo-2-c66df332d0e5f953c2e45764c3c9290b2a0faa79.zip
Stable branch version bump.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-electronics')
-rw-r--r--sci-electronics/xcircuit/ChangeLog9
-rw-r--r--sci-electronics/xcircuit/xcircuit-3.4.28.ebuild41
2 files changed, 48 insertions, 2 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog
index 257a02632dcd..b315cb4992f8 100644
--- a/sci-electronics/xcircuit/ChangeLog
+++ b/sci-electronics/xcircuit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/xcircuit
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.34 2007/12/09 10:45:50 calchan Exp $
+# 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 $
+
+*xcircuit-3.4.28 (18 Mar 2008)
+
+ 18 Mar 2008; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.4.28.ebuild:
+ Stable branch version bump.
09 Dec 2007; Denis Dupeyron <calchan@gentoo.org> -xcircuit-3.4.26.ebuild,
-xcircuit-3.6.125.ebuild:
diff --git a/sci-electronics/xcircuit/xcircuit-3.4.28.ebuild b/sci-electronics/xcircuit/xcircuit-3.4.28.ebuild
new file mode 100644
index 000000000000..fd93dd212674
--- /dev/null
+++ b/sci-electronics/xcircuit/xcircuit-3.4.28.ebuild
@@ -0,0 +1,41 @@
+# 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.4.28.ebuild,v 1.1 2008/03/18 17:36:34 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"
+
+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
+}