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/tcsh | |
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/tcsh')
-rw-r--r-- | app-shells/tcsh/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/tcsh/tcsh-6.12-r2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-shells/tcsh/ChangeLog b/app-shells/tcsh/ChangeLog index f393c3accd7f..852cfe518e9b 100644 --- a/app-shells/tcsh/ChangeLog +++ b/app-shells/tcsh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/tcsh # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.22 2004/05/12 20:13:59 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.23 2004/06/02 14:59:23 agriffis Exp $ + + 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> tcsh-6.12-r2.ebuild: + Fix use invocation 12 May 2004; Bryan Østergaard <kloeri@gentoo.org> tcsh-6.12-r3.ebuild: Stable on alpha. diff --git a/app-shells/tcsh/tcsh-6.12-r2.ebuild b/app-shells/tcsh/tcsh-6.12-r2.ebuild index ce8b52b55570..735ae77ae14a 100644 --- a/app-shells/tcsh/tcsh-6.12-r2.ebuild +++ b/app-shells/tcsh/tcsh-6.12-r2.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/tcsh/tcsh-6.12-r2.ebuild,v 1.9 2004/04/26 16:21:21 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.12-r2.ebuild,v 1.10 2004/06/02 14:59:23 agriffis Exp $ MY_P="${PN}-${PV}.00" DESCRIPTION="Enhanced version of the Berkeley C shell (csh)" @@ -22,7 +22,7 @@ src_unpack() { unpack ${A} cd ${S} patch -p0 < ${FILESDIR}/${P}-tc.os.h-gentoo.diff || die - if [ "`use cjk`" ] + if use cjk then patch -p0 < ${FILESDIR}/tcsh_enable_kanji.diff || die fi @@ -36,7 +36,7 @@ src_compile() { src_install() { make DESTDIR=${D} install install.man || die - if [ "`use perl`" ] ; then + if use perl ; then perl tcsh.man2html || die dohtml tcsh.html/*.html fi |