diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:59:23 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 14:59:23 +0000 |
commit | 7000daa515239ffd36d6f7b634d7e8f4c3575b5c (patch) | |
tree | 4d721a44c91d943a41b9ae6db51b50bb7f7096b9 /app-shells/zsh | |
parent | Make clean on all arches, not just non-x86, so we can rebuild with our CFLAGS... (diff) | |
download | gentoo-2-7000daa515239ffd36d6f7b634d7e8f4c3575b5c.tar.gz gentoo-2-7000daa515239ffd36d6f7b634d7e8f4c3575b5c.tar.bz2 gentoo-2-7000daa515239ffd36d6f7b634d7e8f4c3575b5c.zip |
Fix use invocation
Diffstat (limited to 'app-shells/zsh')
-rw-r--r-- | app-shells/zsh/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.2.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-shells/zsh/ChangeLog b/app-shells/zsh/ChangeLog index 5ed7a310a45e..0b0e3de8e840 100644 --- a/app-shells/zsh/ChangeLog +++ b/app-shells/zsh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/zsh # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.49 2004/05/12 22:25:21 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.50 2004/06/02 14:55:43 agriffis Exp $ + + 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> zsh-4.2.0.ebuild: + Fix use invocation 12 May 2004; Gustavo Zacarias <gustavoz@gentoo.org> zsh-4.2.0.ebuild: Stable on hppa diff --git a/app-shells/zsh/zsh-4.2.0.ebuild b/app-shells/zsh/zsh-4.2.0.ebuild index 7929cf6d84ff..18274278a3ec 100644 --- a/app-shells/zsh/zsh-4.2.0.ebuild +++ b/app-shells/zsh/zsh-4.2.0.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-shells/zsh/zsh-4.2.0.ebuild,v 1.4 2004/05/12 22:25:21 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.2.0.ebuild,v 1.5 2004/06/02 14:55:43 agriffis Exp $ IUSE="maildir ncurses static doc pcre cap" @@ -61,7 +61,7 @@ src_compile() { `use_enable cap` \ ${myconf} || die "configure failed" - if [ -n "`use static`" ] ; then + if use static ; then # compile all modules statically, see Bug #27392 sed -i -e "s/link=no/link=static/g" \ -e "s/load=no/load=yes/g" \ @@ -97,7 +97,7 @@ src_install() { dodoc ChangeLog* META-FAQ README INSTALL LICENCE config.modules - if [ "`use doc`" ] ; then + if use doc ; then dohtml Doc/* insinto /usr/share/doc/${PF} doins Doc/zsh{.dvi,_us.ps,_a4.ps} |