diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-06-21 09:02:41 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-06-21 09:02:41 +0000 |
commit | 4e0ffed21da205a15fff1e61bbbc1299748ec484 (patch) | |
tree | eb42014ce3167b158aa144251706b06100ff154f /app-i18n/scim-m17n | |
parent | supermount readded to patchset (diff) | |
download | historical-4e0ffed21da205a15fff1e61bbbc1299748ec484.tar.gz historical-4e0ffed21da205a15fff1e61bbbc1299748ec484.tar.bz2 historical-4e0ffed21da205a15fff1e61bbbc1299748ec484.zip |
Version bumped.
Diffstat (limited to 'app-i18n/scim-m17n')
-rw-r--r-- | app-i18n/scim-m17n/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/scim-m17n/Manifest | 2 | ||||
-rw-r--r-- | app-i18n/scim-m17n/files/digest-scim-m17n-0.1.1 | 1 | ||||
-rw-r--r-- | app-i18n/scim-m17n/scim-m17n-0.1.1.ebuild | 37 |
4 files changed, 46 insertions, 1 deletions
diff --git a/app-i18n/scim-m17n/ChangeLog b/app-i18n/scim-m17n/ChangeLog index d7c25e3e7ad1..88cac60a9aca 100644 --- a/app-i18n/scim-m17n/ChangeLog +++ b/app-i18n/scim-m17n/ChangeLog @@ -1,6 +1,11 @@ # 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.5 2004/06/20 17:48:21 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-m17n/ChangeLog,v 1.6 2004/06/21 09:02:41 usata Exp $ + +*scim-m17n-0.1.1 (21 Jun 2004) + + 21 Jun 2004; Mamoru KOMACHI <usata@gentoo.org> +scim-m17n-0.1.1.ebuild: + Version bumped. *scim-m17n-0.1.0 (21 Jun 2004) diff --git a/app-i18n/scim-m17n/Manifest b/app-i18n/scim-m17n/Manifest index 6a766af2e9e4..df21ad0c551b 100644 --- a/app-i18n/scim-m17n/Manifest +++ b/app-i18n/scim-m17n/Manifest @@ -1,4 +1,6 @@ +MD5 24c68bc42d8406aa773ca9b440138623 scim-m17n-0.1.1.ebuild 1077 MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156 MD5 c4392c545371e6b93fe840a09de5f37b ChangeLog 1144 MD5 24c68bc42d8406aa773ca9b440138623 scim-m17n-0.1.0.ebuild 1077 MD5 925323e0378853916e4c29416eef5c68 files/digest-scim-m17n-0.1.0 67 +MD5 40505cfad629794482118c6dcd0444f5 files/digest-scim-m17n-0.1.1 67 diff --git a/app-i18n/scim-m17n/files/digest-scim-m17n-0.1.1 b/app-i18n/scim-m17n/files/digest-scim-m17n-0.1.1 new file mode 100644 index 000000000000..f38072040580 --- /dev/null +++ b/app-i18n/scim-m17n/files/digest-scim-m17n-0.1.1 @@ -0,0 +1 @@ +MD5 deec55e6c719a7c4f60b905ea0e5368a scim-m17n-0.1.1.tar.gz 321509 diff --git a/app-i18n/scim-m17n/scim-m17n-0.1.1.ebuild b/app-i18n/scim-m17n/scim-m17n-0.1.1.ebuild new file mode 100644 index 000000000000..bd14fb597c41 --- /dev/null +++ b/app-i18n/scim-m17n/scim-m17n-0.1.1.ebuild @@ -0,0 +1,37 @@ +# 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.1.ebuild,v 1.1 2004/06/21 09:02:41 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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=app-i18n/scim-0.99.0_pre20040614 + >=dev-libs/m17n-lib-1.0.2-r1" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + + dodoc AUTHORS ChangeLog 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 +} |