summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-i18n/scim-m17n')
-rw-r--r--app-i18n/scim-m17n/ChangeLog8
-rw-r--r--app-i18n/scim-m17n/Manifest2
-rw-r--r--app-i18n/scim-m17n/files/digest-scim-m17n-0.1.0_pre200406201
-rw-r--r--app-i18n/scim-m17n/scim-m17n-0.1.0_pre20040620.ebuild45
4 files changed, 55 insertions, 1 deletions
diff --git a/app-i18n/scim-m17n/ChangeLog b/app-i18n/scim-m17n/ChangeLog
index 2151f5786b5e..f4e21212d6a3 100644
--- a/app-i18n/scim-m17n/ChangeLog
+++ b/app-i18n/scim-m17n/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-i18n/scim-m17n
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-m17n/ChangeLog,v 1.3 2004/06/19 17:38:41 usata Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-m17n/ChangeLog,v 1.4 2004/06/20 14:50:38 usata Exp $
+
+*scim-m17n-0.1.0_pre20040620 (20 Jun 2004)
+
+ 20 Jun 2004; Mamoru KOMACHI <usata@gentoo.org>
+ +scim-m17n-0.1.0_pre20040620.ebuild:
+ Updated CVS snapshot
*scim-m17n-0.0.1_pre20040619 (20 Jun 2004)
diff --git a/app-i18n/scim-m17n/Manifest b/app-i18n/scim-m17n/Manifest
index 66690f80c0cf..758b5925511b 100644
--- a/app-i18n/scim-m17n/Manifest
+++ b/app-i18n/scim-m17n/Manifest
@@ -3,6 +3,8 @@ MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156
MD5 a38d7ccbc9d37f18aa221260088d5c02 ChangeLog 692
MD5 4b2cb84da082a0401f357d5acec35c99 scim-m17n-0.0.1_pre20040616.ebuild 1165
MD5 363e24a556a87da16f26d1db201c0e35 scim-m17n-0.0.1_pre20040619.ebuild 1298
+MD5 363e24a556a87da16f26d1db201c0e35 scim-m17n-0.1.0_pre20040620.ebuild 1298
MD5 3cc942133e2407d4f853b6ee31c0405d files/digest-scim-m17n-0.0.1_pre20040614 76
MD5 716696ddc84a312899d56b2eccccbc0d files/digest-scim-m17n-0.0.1_pre20040616 76
MD5 7501f5f64d0a12891f0d4c1314bbed1f files/digest-scim-m17n-0.0.1_pre20040619 76
+MD5 f095bb55171333c69430cb843225a783 files/digest-scim-m17n-0.1.0_pre20040620 75
diff --git a/app-i18n/scim-m17n/files/digest-scim-m17n-0.1.0_pre20040620 b/app-i18n/scim-m17n/files/digest-scim-m17n-0.1.0_pre20040620
new file mode 100644
index 000000000000..97e1fa76b509
--- /dev/null
+++ b/app-i18n/scim-m17n/files/digest-scim-m17n-0.1.0_pre20040620
@@ -0,0 +1 @@
+MD5 b80d9140c00757d528f7383d9692e71e scim-m17n-0.1.0-20040620.tar.gz 23966
diff --git a/app-i18n/scim-m17n/scim-m17n-0.1.0_pre20040620.ebuild b/app-i18n/scim-m17n/scim-m17n-0.1.0_pre20040620.ebuild
new file mode 100644
index 000000000000..e731ff8b1a0f
--- /dev/null
+++ b/app-i18n/scim-m17n/scim-m17n-0.1.0_pre20040620.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/scim-m17n/scim-m17n-0.1.0_pre20040620.ebuild,v 1.1 2004/06/20 14:50:38 usata Exp $
+
+DESCRIPTION="scim-m17n is an input module for Smart Common Input Method (SCIM) which uses m17n as backend"
+HOMEPAGE="http://freedesktop.org/~suzhe/"
+#SRC_URI="http://freedesktop.org/~suzhe/sources/${P}.tar.gz"
+SRC_URI="mirror://gentoo/${P/_pre/-}.tar.gz
+ http://dev.gentoo.org/~usata/distfiles/${P/_pre/-}.tar.gz"
+
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+RDEPEND=">=app-i18n/scim-0.99.0_pre20040614
+ >=dev-libs/m17n-lib-1.0.2-r1"
+DEPEND="${RDEPEND}
+ sys-devel/autoconf
+ sys-devel/automake"
+
+src_compile() {
+ ./bootstrap
+ econf || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+
+ dodoc AUTHORS THANKS README
+}
+
+pkg_postinst() {
+ einfo
+ einfo "To use SCIM with both GTK2 and XIM, you should use the following"
+ einfo "in your user startup scripts such as .gnomerc or .xinitrc:"
+ einfo
+ einfo "LANG='your_language' scim -f socket -e m17n -c simple -d"
+ einfo "LANG='your_language' scim -f x11 -e socket -c socket -d"
+ einfo "export XMODIFIERS=@im=SCIM"
+ einfo
+}