diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2007-09-21 14:13:26 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2007-09-21 14:13:26 +0000 |
commit | 49fb884038577ec3793e3429e35af6babe137a18 (patch) | |
tree | 90872319b5c6fdfb69e9c4862896191e87980d63 /sci-electronics/xcircuit | |
parent | stable x86, bug 192626 (diff) | |
download | gentoo-2-49fb884038577ec3793e3429e35af6babe137a18.tar.gz gentoo-2-49fb884038577ec3793e3429e35af6babe137a18.tar.bz2 gentoo-2-49fb884038577ec3793e3429e35af6babe137a18.zip |
Stable branch version bump.
(Portage version: 2.1.3.9)
Diffstat (limited to 'sci-electronics/xcircuit')
-rw-r--r-- | sci-electronics/xcircuit/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/xcircuit/files/digest-xcircuit-3.4.27 | 3 | ||||
-rw-r--r-- | sci-electronics/xcircuit/xcircuit-3.4.27.ebuild | 41 |
3 files changed, 50 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog index ce8e0b6e6f77..d309ebbe9e00 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.30 2007/07/23 19:24:35 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.31 2007/09/21 14:13:25 calchan Exp $ + +*xcircuit-3.4.27 (21 Sep 2007) + + 21 Sep 2007; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.4.27.ebuild: + Stable branch version bump. *xcircuit-3.6.109 (23 Jul 2007) diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.4.27 b/sci-electronics/xcircuit/files/digest-xcircuit-3.4.27 new file mode 100644 index 000000000000..4d20c5845771 --- /dev/null +++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.4.27 @@ -0,0 +1,3 @@ +MD5 7b06f177807a5823476cb06e91e5e1a8 xcircuit-3.4.27.tgz 1055591 +RMD160 19b1c3d4a8ba4e0c1dcc2408d163fd1fb566854b xcircuit-3.4.27.tgz 1055591 +SHA256 3c14650a71fc993b793125dfa69df112dad3b0e1d203c942bf3e5a003cfe62aa xcircuit-3.4.27.tgz 1055591 diff --git a/sci-electronics/xcircuit/xcircuit-3.4.27.ebuild b/sci-electronics/xcircuit/xcircuit-3.4.27.ebuild new file mode 100644 index 000000000000..bc46cc029b23 --- /dev/null +++ b/sci-electronics/xcircuit/xcircuit-3.4.27.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/xcircuit-3.4.27.ebuild,v 1.1 2007/09/21 14:13:25 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 +} |