diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2006-05-12 20:57:47 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2006-05-12 20:57:47 +0000 |
commit | 19cd236d5edb02264859df40780a2ab89bd13fbc (patch) | |
tree | 2a7d0b31c7e33ccd815074dc63958cd5d637c710 /sci-electronics/xcircuit | |
parent | updated nagios-2.x masking rational (diff) | |
download | gentoo-2-19cd236d5edb02264859df40780a2ab89bd13fbc.tar.gz gentoo-2-19cd236d5edb02264859df40780a2ab89bd13fbc.tar.bz2 gentoo-2-19cd236d5edb02264859df40780a2ab89bd13fbc.zip |
Added development version (branch 3.6). Cleaned-up a bit.
(Portage version: 2.0.54-r2)
Diffstat (limited to 'sci-electronics/xcircuit')
-rw-r--r-- | sci-electronics/xcircuit/ChangeLog | 7 | ||||
-rw-r--r-- | sci-electronics/xcircuit/Manifest | 2 | ||||
-rw-r--r-- | sci-electronics/xcircuit/files/digest-xcircuit-3.6.22 | 1 | ||||
-rw-r--r-- | sci-electronics/xcircuit/xcircuit-3.6.22.ebuild | 42 |
4 files changed, 51 insertions, 1 deletions
diff --git a/sci-electronics/xcircuit/ChangeLog b/sci-electronics/xcircuit/ChangeLog index e91da356c770..cda42afc7558 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.10 2006/04/23 21:52:14 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/xcircuit/ChangeLog,v 1.11 2006/05/12 20:57:47 calchan Exp $ + +*xcircuit-3.6.22 (12 May 2006) + + 12 May 2006; Denis Dupeyron <calchan@gentoo.org> +xcircuit-3.6.22.ebuild: + Added development version (branch 3.6). Cleaned-up a bit. *xcircuit-3.4.21 (23 Apr 2006) diff --git a/sci-electronics/xcircuit/Manifest b/sci-electronics/xcircuit/Manifest index fc682953b4ba..1405207a036f 100644 --- a/sci-electronics/xcircuit/Manifest +++ b/sci-electronics/xcircuit/Manifest @@ -3,8 +3,10 @@ MD5 146d2d92da2234bcc466b2bb15645012 files/digest-xcircuit-3.1.31 238 MD5 c72462237357f0bf786da9cb69532827 files/digest-xcircuit-3.4.10 238 MD5 dd27e3844985ef141738b0a5d88603d6 files/digest-xcircuit-3.4.18 241 MD5 399980260b8f12cf258f5bb04961c8e0 files/digest-xcircuit-3.4.21 65 +MD5 3a2437fa384a3e700e5d1fd858244016 files/digest-xcircuit-3.6.22 65 MD5 e49bb02132d2cd74ad4e6ee291e102d9 metadata.xml 220 MD5 1f00675a2ac1187d9ae044e56efae4b5 xcircuit-3.1.31.ebuild 1235 MD5 3754490d822d455630bc82f722a23b5e xcircuit-3.4.10.ebuild 1347 MD5 8e1c2f6f6d958e049c358234506f4dbc xcircuit-3.4.18.ebuild 947 MD5 59f35c16998a461107f5b819ff6f726d xcircuit-3.4.21.ebuild 945 +MD5 78d9f6a91c4a72a1ba38083a4646b741 xcircuit-3.6.22.ebuild 1116 diff --git a/sci-electronics/xcircuit/files/digest-xcircuit-3.6.22 b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.22 new file mode 100644 index 000000000000..53e238f9cde8 --- /dev/null +++ b/sci-electronics/xcircuit/files/digest-xcircuit-3.6.22 @@ -0,0 +1 @@ +MD5 829069b10f95bc14cc9b9bee1ae512f5 xcircuit-3.6.22.tgz 1415423 diff --git a/sci-electronics/xcircuit/xcircuit-3.6.22.ebuild b/sci-electronics/xcircuit/xcircuit-3.6.22.ebuild new file mode 100644 index 000000000000..73474ac0b94b --- /dev/null +++ b/sci-electronics/xcircuit/xcircuit-3.6.22.ebuild @@ -0,0 +1,42 @@ +# 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.22.ebuild,v 1.1 2006/05/12 20:57:47 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="" + +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." +} |