summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-05-11 06:57:03 +0000
committerMamoru Komachi <usata@gentoo.org>2004-05-11 06:57:03 +0000
commitc3280bc62b903e8278846e583b3631ad6e0661f1 (patch)
treedb6a6529c8005885eec2221cea654b566285f5b4 /app-i18n/uim-fep
parentFixing sandbox violatios from bug #49865 (Manifest recommit) (diff)
downloadgentoo-2-c3280bc62b903e8278846e583b3631ad6e0661f1.tar.gz
gentoo-2-c3280bc62b903e8278846e583b3631ad6e0661f1.tar.bz2
gentoo-2-c3280bc62b903e8278846e583b3631ad6e0661f1.zip
Version bumped.
Diffstat (limited to 'app-i18n/uim-fep')
-rw-r--r--app-i18n/uim-fep/ChangeLog7
-rw-r--r--app-i18n/uim-fep/Manifest2
-rw-r--r--app-i18n/uim-fep/files/digest-uim-fep-0.2.51
-rw-r--r--app-i18n/uim-fep/uim-fep-0.2.5.ebuild45
4 files changed, 54 insertions, 1 deletions
diff --git a/app-i18n/uim-fep/ChangeLog b/app-i18n/uim-fep/ChangeLog
index a8677ec24f66..b0464b3f5084 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 Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-fep/ChangeLog,v 1.3 2004/05/07 18:08:37 usata Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-fep/ChangeLog,v 1.4 2004/05/11 06:57:03 usata Exp $
+
+*uim-fep-0.2.5 (11 May 2004)
+
+ 11 May 2004; Mamoru KOMACHI <usata@gentoo.org> uim-fep-0.2.5.ebuild:
+ Version bumped.
*uim-fep-0.2.3 (08 May 2004)
diff --git a/app-i18n/uim-fep/Manifest b/app-i18n/uim-fep/Manifest
index 6a8b732096c6..4919449e9089 100644
--- a/app-i18n/uim-fep/Manifest
+++ b/app-i18n/uim-fep/Manifest
@@ -1,4 +1,6 @@
+MD5 2c46207441e645a8cdbd93da7bdf5e6e uim-fep-0.2.5.ebuild 1116
MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156
MD5 8856fac3a65592a5112daafa32ac5cbc ChangeLog 562
MD5 2c46207441e645a8cdbd93da7bdf5e6e uim-fep-0.2.3.ebuild 1116
+MD5 43324d15fbceb19d138e72659d572513 files/digest-uim-fep-0.2.5 64
MD5 ccfa8de992b316f4ed7a19c78f48a836 files/digest-uim-fep-0.2.3 64
diff --git a/app-i18n/uim-fep/files/digest-uim-fep-0.2.5 b/app-i18n/uim-fep/files/digest-uim-fep-0.2.5
new file mode 100644
index 000000000000..a251f83d7884
--- /dev/null
+++ b/app-i18n/uim-fep/files/digest-uim-fep-0.2.5
@@ -0,0 +1 @@
+MD5 ea8b340de8defc4ee4b4ef399277ea82 uim-fep-0.2.5.tar.gz 81549
diff --git a/app-i18n/uim-fep/uim-fep-0.2.5.ebuild b/app-i18n/uim-fep/uim-fep-0.2.5.ebuild
new file mode 100644
index 000000000000..03b00b7fb2bf
--- /dev/null
+++ b/app-i18n/uim-fep/uim-fep-0.2.5.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-fep/uim-fep-0.2.5.ebuild,v 1.1 2004/05/11 06:57:03 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"
+
+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
+}