diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-07-05 04:33:11 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-07-05 04:33:11 +0000 |
commit | f37cc6aa63e3859eba86b53bd0d14879f02d4f93 (patch) | |
tree | 54f185526d6aac0a1c21b434122a9ae806300f7e /app-i18n/uim-fep | |
parent | Added ~sparc to KEYWORDS. (diff) | |
download | historical-f37cc6aa63e3859eba86b53bd0d14879f02d4f93.tar.gz historical-f37cc6aa63e3859eba86b53bd0d14879f02d4f93.tar.bz2 historical-f37cc6aa63e3859eba86b53bd0d14879f02d4f93.zip |
Version bumped.
Diffstat (limited to 'app-i18n/uim-fep')
-rw-r--r-- | app-i18n/uim-fep/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/uim-fep/Manifest | 4 | ||||
-rw-r--r-- | app-i18n/uim-fep/files/digest-uim-fep-0.3.7 | 1 | ||||
-rw-r--r-- | app-i18n/uim-fep/uim-fep-0.3.7.ebuild | 45 |
4 files changed, 55 insertions, 2 deletions
diff --git a/app-i18n/uim-fep/ChangeLog b/app-i18n/uim-fep/ChangeLog index 0d2a1ee75e92..238d79ac11b5 100644 --- a/app-i18n/uim-fep/ChangeLog +++ b/app-i18n/uim-fep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/uim-fep # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-fep/ChangeLog,v 1.11 2004/06/26 10:39:11 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-fep/ChangeLog,v 1.12 2004/07/05 04:33:11 usata Exp $ + +*uim-fep-0.3.7 (05 Jul 2004) + + 05 Jul 2004; Mamoru KOMACHI <usata@gentoo.org> +uim-fep-0.3.7.ebuild: + Version bumped. *uim-fep-0.3.5 (26 Jun 2004) diff --git a/app-i18n/uim-fep/Manifest b/app-i18n/uim-fep/Manifest index 0fe20a5002d6..6be846c903d7 100644 --- a/app-i18n/uim-fep/Manifest +++ b/app-i18n/uim-fep/Manifest @@ -1,6 +1,8 @@ MD5 2b7e05d8367a710c6635bb44d02c5831 uim-fep-0.3.5.ebuild 1114 MD5 61e9d56b930de624337eb754a1517b06 uim-fep-0.3.0.ebuild 1109 -MD5 2771c03a3c720582e1a917e224babffe ChangeLog 1733 +MD5 3a9938365533064e9399d2ff7c805419 uim-fep-0.3.7.ebuild 1114 +MD5 8c5518f8f50c9753276ae7e53e7ca77e ChangeLog 1854 MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156 MD5 a89c30e5887dcebd690d727c7716403e files/digest-uim-fep-0.3.0 64 MD5 9b51bc6f94d706cd9e84a357ab286490 files/digest-uim-fep-0.3.5 64 +MD5 d67e09f3d02823ca2cf881a5a91eb261 files/digest-uim-fep-0.3.7 64 diff --git a/app-i18n/uim-fep/files/digest-uim-fep-0.3.7 b/app-i18n/uim-fep/files/digest-uim-fep-0.3.7 new file mode 100644 index 000000000000..a6d45db19500 --- /dev/null +++ b/app-i18n/uim-fep/files/digest-uim-fep-0.3.7 @@ -0,0 +1 @@ +MD5 25967ce5b7c1e55f0defa1da328d56ed uim-fep-0.3.7.tar.gz 95867 diff --git a/app-i18n/uim-fep/uim-fep-0.3.7.ebuild b/app-i18n/uim-fep/uim-fep-0.3.7.ebuild new file mode 100644 index 000000000000..e4ea66761e3e --- /dev/null +++ b/app-i18n/uim-fep/uim-fep-0.3.7.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-fep/uim-fep-0.3.7.ebuild,v 1.1 2004/07/05 04:33:11 usata Exp $ + +IUSE="unicode" + +DESCRIPTION="UIM multilingual input method frontend processor for console" +HOMEPAGE="http://www.ice.nuie.nagoya-u.ac.jp/~h013177b/uim-fep/" +SRC_URI="http://www.ice.nuie.nagoya-u.ac.jp/~h013177b/uim-fep/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~ppc ~alpha" + +DEPEND=">=app-i18n/uim-0.3.4.2 + sys-libs/ncurses" + +src_compile() { + + local myconf + if use unicode ; then + myconf="${myconf} --with-enc=utf-8" + else + myconf="${myconf} --with-enc=euc-jp" + fi + + econf ${myconf} || die + emake || die +} + +src_install() { + + make DESTDIR=${D} install || die "make install failed" + + dodoc README COPYING INSTALL +} + +pkg_postinst() { + + einfo + einfo "uim-fep is configured for skk. If you want to change it, you can set" + einfo "UIM_FEP environment variable to one of skk, prime, anthy, canna," + einfo "tcode and tutcode or run uim-fep with -u option with engines listed above." + einfo +} |