diff options
author | Alastair Tse <liquidx@gentoo.org> | 2004-02-07 09:46:08 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2004-02-07 09:46:08 +0000 |
commit | 5f043f29a0a2448403f2b910990a661bf46e9083 (patch) | |
tree | ed06092e58551e5cce26e08ad73f5636bfea270e /app-i18n | |
parent | a unicode/iso10646 compatible chinese font from the hong kong government (diff) | |
download | historical-5f043f29a0a2448403f2b910990a661bf46e9083.tar.gz historical-5f043f29a0a2448403f2b910990a661bf46e9083.tar.bz2 historical-5f043f29a0a2448403f2b910990a661bf46e9083.zip |
add workaround for gnutls-1.0 incompatibility
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/fcitx/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/fcitx/Manifest | 4 | ||||
-rw-r--r-- | app-i18n/fcitx/fcitx-2.0.1.ebuild | 49 | ||||
-rw-r--r-- | app-i18n/fcitx/files/digest-fcitx-2.0.1 | 1 |
4 files changed, 61 insertions, 3 deletions
diff --git a/app-i18n/fcitx/ChangeLog b/app-i18n/fcitx/ChangeLog index 59620c26b10b..33eed19f8fe4 100644 --- a/app-i18n/fcitx/ChangeLog +++ b/app-i18n/fcitx/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-i18n/fcitx -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/fcitx/ChangeLog,v 1.1 2003/05/25 15:10:52 liquidx Exp $ +# 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 $ + +*fcitx-2.0.1 (07 Feb 2004) + + 07 Feb 2004; Alastair Tse <liquidx@gentoo.org> fcitx-2.0.1.ebuild: + version bump. added CFLAGS support, updated SRC_URI and added final comments + to pkg_postinst() *fcitx-1.8.5 (25 May 2003) diff --git a/app-i18n/fcitx/Manifest b/app-i18n/fcitx/Manifest index 73e83b295fe3..325ee0840592 100644 --- a/app-i18n/fcitx/Manifest +++ b/app-i18n/fcitx/Manifest @@ -1,4 +1,6 @@ -MD5 1c9ec85a8d00d5871a4b683de0ef5c21 ChangeLog 346 +MD5 ddcd93895263122b1e669311c71e39b9 ChangeLog 543 MD5 b558ceb1c9fbdaf8262d35498969c2aa fcitx-1.8.5.ebuild 782 +MD5 a2e4557ba34c067f2362e53c0b24ae93 fcitx-2.0.1.ebuild 1149 MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156 MD5 9ae1f3d5714643599037127042dfb979 files/digest-fcitx-1.8.5 64 +MD5 61e196222f31b91faeaf1fc68de9ea32 files/digest-fcitx-2.0.1 65 diff --git a/app-i18n/fcitx/fcitx-2.0.1.ebuild b/app-i18n/fcitx/fcitx-2.0.1.ebuild new file mode 100644 index 000000000000..341c4720a591 --- /dev/null +++ b/app-i18n/fcitx/fcitx-2.0.1.ebuild @@ -0,0 +1,49 @@ +# 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 $ + +DESCRIPTION="Free Chinese Input Toy for X. Another Chinese XIM Input Method" +HOMEPAGE="http://www.fcitx.org/" +SRC_URI="http://www.fcitx.org/download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="truetype" + +DEPEND="virtual/x11 + truetype? ( virtual/xft )" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + cd ${S} + make clean || die "unable to clean" + sed -e "s:-O2:${CFLAGS}:" -i Makefile Makefile.noxft +} + +src_compile() { + if [ -z "`use truetype`" ]; then + make -f Makefile.noxft || die "xft make failed" + else + make || die "make failed" + fi +} + +src_install() { + dobin fcitx + insinto /usr/share/fcitx + doins data/*.mb + dodoc doc/*.txt + dohtml doc/*.htm +} + +pkg_postinst() { + einfo "You should export the following variables to use fcitx" + einfo " export XMODIFIERS=@im=fcitx" + einfo " export XIM=fcitx" + einfo " export XIM_PROGRAM=fcitx" + einfo " " + einfo "Note that fcitx only works in the zh_CN locale." +} diff --git a/app-i18n/fcitx/files/digest-fcitx-2.0.1 b/app-i18n/fcitx/files/digest-fcitx-2.0.1 new file mode 100644 index 000000000000..9242a0062e3f --- /dev/null +++ b/app-i18n/fcitx/files/digest-fcitx-2.0.1 @@ -0,0 +1 @@ +MD5 2f1c710d60e25364ed36223adfc9e7d2 fcitx-2.0.1.tar.bz2 1133775 |