summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-02 02:08:45 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-02 02:08:45 +0000
commit6082c9a053169ccf6314170fd480d38956991f81 (patch)
tree52a5ace6be3895911f3de1d8e92266f0bdd3ba5f /app-i18n/fcitx
parentFix use invocation (Manifest recommit) (diff)
downloadgentoo-2-6082c9a053169ccf6314170fd480d38956991f81.tar.gz
gentoo-2-6082c9a053169ccf6314170fd480d38956991f81.tar.bz2
gentoo-2-6082c9a053169ccf6314170fd480d38956991f81.zip
Fix use invocation
Diffstat (limited to 'app-i18n/fcitx')
-rw-r--r--app-i18n/fcitx/ChangeLog6
-rw-r--r--app-i18n/fcitx/fcitx-1.8.5.ebuild6
-rw-r--r--app-i18n/fcitx/fcitx-2.0.1.ebuild4
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"