summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2003-08-17 11:31:23 +0000
committerMamoru Komachi <usata@gentoo.org>2003-08-17 11:31:23 +0000
commitb4aaebf74b471f6fd87e408dfec237aa2f3b1cce (patch)
treee07c7adf10d2edefcac3589d05da03386970d7fd /app-i18n/uim
parentnew ebuild (diff)
downloadgentoo-2-b4aaebf74b471f6fd87e408dfec237aa2f3b1cce.tar.gz
gentoo-2-b4aaebf74b471f6fd87e408dfec237aa2f3b1cce.tar.bz2
gentoo-2-b4aaebf74b471f6fd87e408dfec237aa2f3b1cce.zip
new ebuild
Diffstat (limited to 'app-i18n/uim')
-rw-r--r--app-i18n/uim/ChangeLog9
-rw-r--r--app-i18n/uim/Manifest3
-rw-r--r--app-i18n/uim/files/digest-uim-20131
-rw-r--r--app-i18n/uim/uim-2013.ebuild34
4 files changed, 46 insertions, 1 deletions
diff --git a/app-i18n/uim/ChangeLog b/app-i18n/uim/ChangeLog
new file mode 100644
index 000000000000..61a943786050
--- /dev/null
+++ b/app-i18n/uim/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-i18n/uim
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim/ChangeLog,v 1.1 2003/08/17 11:31:19 usata Exp $
+
+*uim-2013 (17 Aug 2003)
+
+ 17 Aug 2003; Mamoru KOMACHI <usata@gentoo.org> uim-2013.ebuild:
+ Initial import
+
diff --git a/app-i18n/uim/Manifest b/app-i18n/uim/Manifest
index 24f86d8c399e..6187a8267215 100644
--- a/app-i18n/uim/Manifest
+++ b/app-i18n/uim/Manifest
@@ -1,2 +1,3 @@
-MD5 776949fdfe73f55d2912489531f57e4c uim-2013.ebuild 766
+MD5 a3286dcf7759c9902bc05cc37992f468 uim-2013.ebuild 768
+MD5 bce699ec4dee2065843921415e55a7b9 ChangeLog 314
MD5 3bb8c1a4834e31c177de4931379f26e6 files/digest-uim-2013 60
diff --git a/app-i18n/uim/files/digest-uim-2013 b/app-i18n/uim/files/digest-uim-2013
new file mode 100644
index 000000000000..804ffecea468
--- /dev/null
+++ b/app-i18n/uim/files/digest-uim-2013
@@ -0,0 +1 @@
+MD5 a07e5e655bc1ddea19b4445c22c08963 uim-2013.tar.gz 542802
diff --git a/app-i18n/uim/uim-2013.ebuild b/app-i18n/uim/uim-2013.ebuild
new file mode 100644
index 000000000000..aa294e5b0084
--- /dev/null
+++ b/app-i18n/uim/uim-2013.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim/uim-2013.ebuild,v 1.1 2003/08/17 11:31:19 usata Exp $
+
+IUSE="gtk canna"
+
+DESCRIPTION="UIM is a universal input method library"
+HOMEPAGE="http://anthy.sourceforge.jp/"
+SRC_URI="mirror://sourceforge.jp/anthy/5495/${P}.tar.gz"
+
+LICENSE="GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="virtual/x11
+ gtk? ( >=x11-libs/gtk+-2.2.1 )
+ canna? ( >=app-i18n/canna-3.5_beta2-r2 )"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+
+ CPPFLAGS="${CPPFLAGS} -I.." econf \
+ `use_with gtk` \
+ `use_with canna` || die
+ emake || die
+}
+
+src_install() {
+
+ einstall || die
+
+ dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL* NEWS README*
+}