diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-01-06 17:16:20 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-01-06 17:16:20 +0000 |
commit | a577a71f67a632729abe845af2eb4fddef4ef5bd (patch) | |
tree | d3528a0754bca881a239c6d95ee5ef2268b2ef0c /app-i18n/fcitx/fcitx-3.1.1.ebuild | |
parent | ppc stable, bug #253871 (diff) | |
download | gentoo-2-a577a71f67a632729abe845af2eb4fddef4ef5bd.tar.gz gentoo-2-a577a71f67a632729abe845af2eb4fddef4ef5bd.tar.bz2 gentoo-2-a577a71f67a632729abe845af2eb4fddef4ef5bd.zip |
Version bumped, bug #253962. Replaced use flag from truetype to xft, bug #253910.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28-gentoo x86_64)
Diffstat (limited to 'app-i18n/fcitx/fcitx-3.1.1.ebuild')
-rw-r--r-- | app-i18n/fcitx/fcitx-3.1.1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-i18n/fcitx/fcitx-3.1.1.ebuild b/app-i18n/fcitx/fcitx-3.1.1.ebuild index 781ea0f1b9cd..4ed5a5262d00 100644 --- a/app-i18n/fcitx/fcitx-3.1.1.ebuild +++ b/app-i18n/fcitx/fcitx-3.1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-3.1.1.ebuild,v 1.11 2009/01/04 22:34:30 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/fcitx-3.1.1.ebuild,v 1.12 2009/01/06 17:16:19 matsuu Exp $ DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method" HOMEPAGE="http://fcitx.net/" @@ -9,18 +9,18 @@ SRC_URI="http://mirrors.redv.com/fcitx/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~ppc x86" -IUSE="truetype" +IUSE="xft" RDEPEND="x11-libs/libX11 x11-libs/libXpm x11-libs/libXrender x11-libs/libXt - truetype? ( x11-libs/libXft )" + xft? ( x11-libs/libXft )" DEPEND="${RDEPEND}" src_compile() { myconf= - if use truetype ; then + if use xft ; then myconf=" --with-xft " else myconf=" --disable-xft " |