diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 02:05:45 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 02:05:45 +0000 |
commit | f404f0841ad32f3298f2e10999012f6a10dc4890 (patch) | |
tree | 0b7a50ccd20ca41f736ac9fa78e4738900337c51 /app-i18n/fcitx | |
parent | Fix use invocation (diff) | |
download | historical-f404f0841ad32f3298f2e10999012f6a10dc4890.tar.gz historical-f404f0841ad32f3298f2e10999012f6a10dc4890.tar.bz2 historical-f404f0841ad32f3298f2e10999012f6a10dc4890.zip |
Fix use invocation
Diffstat (limited to 'app-i18n/fcitx')
-rw-r--r-- | app-i18n/fcitx/ChangeLog | 6 | ||||
-rw-r--r-- | app-i18n/fcitx/fcitx-1.8.5.ebuild | 6 | ||||
-rw-r--r-- | app-i18n/fcitx/fcitx-2.0.1.ebuild | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/app-i18n/fcitx/ChangeLog b/app-i18n/fcitx/ChangeLog index 33eed19f8fe4..b92d47f1091f 100644 --- a/app-i18n/fcitx/ChangeLog +++ b/app-i18n/fcitx/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-i18n/fcitx # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.2 2004/02/07 09:46:08 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.3 2004/06/02 02:05:45 agriffis Exp $ + + 01 Jun 2004; Aron Griffis <agriffis@gentoo.org> fcitx-1.8.5.ebuild, + fcitx-2.0.1.ebuild: + Fix use invocation *fcitx-2.0.1 (07 Feb 2004) diff --git a/app-i18n/fcitx/fcitx-1.8.5.ebuild b/app-i18n/fcitx/fcitx-1.8.5.ebuild index 4984370a2886..168575ae8e65 100644 --- a/app-i18n/fcitx/fcitx-1.8.5.ebuild +++ b/app-i18n/fcitx/fcitx-1.8.5.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-i18n/fcitx/fcitx-1.8.5.ebuild,v 1.3 2003/09/06 22:19:21 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-1.8.5.ebuild,v 1.4 2004/06/02 02:05:45 agriffis Exp $ DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method" HOMEPAGE="http://www.fcitx.org/" @@ -17,7 +17,7 @@ DEPEND="virtual/x11 S=${WORKDIR}/${P} src_compile() { - if [ -n "`use truetype`" ]; then + if use truetype; then make -f Makefile.xft || die "xft make failed" else make || die "make failed" diff --git a/app-i18n/fcitx/fcitx-2.0.1.ebuild b/app-i18n/fcitx/fcitx-2.0.1.ebuild index 341c4720a591..691793e76119 100644 --- a/app-i18n/fcitx/fcitx-2.0.1.ebuild +++ b/app-i18n/fcitx/fcitx-2.0.1.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-i18n/fcitx/fcitx-2.0.1.ebuild,v 1.1 2004/02/07 09:46:08 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-2.0.1.ebuild,v 1.2 2004/06/02 02:05:45 agriffis Exp $ DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method" HOMEPAGE="http://www.fcitx.org/" @@ -24,7 +24,7 @@ src_unpack() { } src_compile() { - if [ -z "`use truetype`" ]; then + if ! use truetype; then make -f Makefile.noxft || die "xft make failed" else make || die "make failed" |