diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-27 17:13:25 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-27 17:13:25 +0000 |
commit | 20e298363e042fd99c70ba8cb3d7acc05e11e8f7 (patch) | |
tree | 7a30533f999e736d832ea2934a8bdf6a087241fb /sys-apps/groff/groff-1.18.1-r4.ebuild | |
parent | Clean up (diff) | |
download | historical-20e298363e042fd99c70ba8cb3d7acc05e11e8f7.tar.gz historical-20e298363e042fd99c70ba8cb3d7acc05e11e8f7.tar.bz2 historical-20e298363e042fd99c70ba8cb3d7acc05e11e8f7.zip |
QA - fix use invocation
Diffstat (limited to 'sys-apps/groff/groff-1.18.1-r4.ebuild')
-rw-r--r-- | sys-apps/groff/groff-1.18.1-r4.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys-apps/groff/groff-1.18.1-r4.ebuild b/sys-apps/groff/groff-1.18.1-r4.ebuild index 408d34ae76c8..8730b4c61b50 100644 --- a/sys-apps/groff/groff-1.18.1-r4.ebuild +++ b/sys-apps/groff/groff-1.18.1-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.18.1-r4.ebuild,v 1.4 2004/06/24 22:08:51 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.18.1-r4.ebuild,v 1.5 2004/06/27 17:11:35 agriffis Exp $ IUSE="X cjk" @@ -26,7 +26,7 @@ src_unpack() { unpack ${A} cd ${S} - if [ "`use cjk`" ]; then + if use cjk; then # multibyte patch contains no-color-segfault epatch ${WORKDIR}/${MB_PATCH}.diff epatch ${FILESDIR}/${MB_PATCH}-fix.patch @@ -86,7 +86,7 @@ src_compile() { # Only build X stuff if we have X installed, but do # not depend on it, else we get circular deps. - if [ -n "`use X`" ] && [ -x /usr/X11R6/bin/xmkmf ] + if use X && [ -x /usr/X11R6/bin/xmkmf ] then cd ${S}/src/xditview xmkmf || die @@ -102,7 +102,7 @@ src_install() { docdir=${D}/usr/share/doc/${PF} \ install || die - if [ -n "`use X`" ] && [ -x /usr/X11R6/bin/xmkmf ] + if use X && [ -x /usr/X11R6/bin/xmkmf ] then cd ${S}/src/xditview make DESTDIR=${D} \ |