diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-04-26 16:13:47 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-04-26 16:13:47 +0000 |
commit | 2da17e0db7e74892113aceff1e0d7f98e61a00c2 (patch) | |
tree | 83eac1a31d26cbaecac9f6841c8b6c9e620dc0a7 /app-sci/xcircuit | |
parent | Fix bug 44646 (mozilla-firefox ebuild with native forward/back mouse button s... (diff) | |
download | gentoo-2-2da17e0db7e74892113aceff1e0d7f98e61a00c2.tar.gz gentoo-2-2da17e0db7e74892113aceff1e0d7f98e61a00c2.tar.bz2 gentoo-2-2da17e0db7e74892113aceff1e0d7f98e61a00c2.zip |
Add die following econf for bug 48950
Diffstat (limited to 'app-sci/xcircuit')
-rw-r--r-- | app-sci/xcircuit/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/xcircuit/xcircuit-3.1.31.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-sci/xcircuit/ChangeLog b/app-sci/xcircuit/ChangeLog index a10b909a9891..37588d26ad47 100644 --- a/app-sci/xcircuit/ChangeLog +++ b/app-sci/xcircuit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/xcircuit # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/ChangeLog,v 1.14 2004/04/21 06:12:28 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/ChangeLog,v 1.15 2004/04/26 16:13:46 agriffis Exp $ + + 26 Apr 2004; Aron Griffis <agriffis@gentoo.org> xcircuit-3.1.31.ebuild: + Add die following econf for bug 48950 21 Apr 2004; Patrick Kursawe <phosphan@gentoo.org> xcircuit-3.1.31.ebuild: Changed IUSE to correct value diff --git a/app-sci/xcircuit/xcircuit-3.1.31.ebuild b/app-sci/xcircuit/xcircuit-3.1.31.ebuild index 52cff6665192..fa2ee8b3369d 100644 --- a/app-sci/xcircuit/xcircuit-3.1.31.ebuild +++ b/app-sci/xcircuit/xcircuit-3.1.31.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/xcircuit-3.1.31.ebuild,v 1.3 2004/04/21 06:12:28 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/xcircuit/xcircuit-3.1.31.ebuild,v 1.4 2004/04/26 16:13:47 agriffis Exp $ DESCRIPTION="Circuit drawing and schematic capture program." SRC_URI="http://xcircuit.ece.jhu.edu/archive/${P}.tgz" @@ -21,9 +21,9 @@ src_compile() { aclocal && autoconf || die "Could not recreate configuration files!" if [ `use tcltk` ]; then - econf --with-tcl --with-tk + econf --with-tcl --with-tk || die "econf failed" else - econf + econf || die "econf failed" fi if [ `use tcltk` ]; then |