diff options
author | 2004-06-02 02:08:45 +0000 | |
---|---|---|
committer | 2004-06-02 02:08:45 +0000 | |
commit | 6082c9a053169ccf6314170fd480d38956991f81 (patch) | |
tree | 52a5ace6be3895911f3de1d8e92266f0bdd3ba5f /app-misc/sl/sl-3.03.ebuild | |
parent | Fix use invocation (Manifest recommit) (diff) | |
download | gentoo-2-6082c9a053169ccf6314170fd480d38956991f81.tar.gz gentoo-2-6082c9a053169ccf6314170fd480d38956991f81.tar.bz2 gentoo-2-6082c9a053169ccf6314170fd480d38956991f81.zip |
Fix use invocation
Diffstat (limited to 'app-misc/sl/sl-3.03.ebuild')
-rw-r--r-- | app-misc/sl/sl-3.03.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-misc/sl/sl-3.03.ebuild b/app-misc/sl/sl-3.03.ebuild index ee55d13f123f..1a08e983aa3f 100644 --- a/app-misc/sl/sl-3.03.ebuild +++ b/app-misc/sl/sl-3.03.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sl/sl-3.03.ebuild,v 1.2 2003/09/27 08:14:28 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/sl/sl-3.03.ebuild,v 1.3 2004/06/02 02:07:22 agriffis Exp $ inherit eutils @@ -39,7 +39,7 @@ src_unpack() { src_compile() { emake CFLAGS="${CFLAGS}" LDFLAGS="-lncurses" || die - if [ -n "`use cjk`" ]; then + if use cjk; then nkf -e sl.1 > sl.ja.1 fi } @@ -49,7 +49,7 @@ src_install() { dobin sl newman sl.en.1 sl.1 dodoc README* sl.txt - if [ -n "`use cjk`" ] ; then + if use cjk ; then insinto /usr/share/man/ja/man1 newins sl.ja.1 sl.1 fi |