diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-01-21 11:07:35 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-01-21 11:07:35 +0000 |
commit | cbcec78843270ccbc0783a41b5064cd60937c236 (patch) | |
tree | ca60caefa209282476bd2db25845923ae94a0939 | |
parent | Fixed bug #71713. (diff) | |
download | historical-cbcec78843270ccbc0783a41b5064cd60937c236.tar.gz historical-cbcec78843270ccbc0783a41b5064cd60937c236.tar.bz2 historical-cbcec78843270ccbc0783a41b5064cd60937c236.zip |
Initial import.
-rw-r--r-- | app-i18n/scim-skk/ChangeLog | 9 | ||||
-rw-r--r-- | app-i18n/scim-skk/Manifest | 14 | ||||
-rw-r--r-- | app-i18n/scim-skk/files/digest-scim-skk-0.1.2 | 1 | ||||
-rw-r--r-- | app-i18n/scim-skk/metadata.xml | 5 | ||||
-rw-r--r-- | app-i18n/scim-skk/scim-skk-0.1.2.ebuild | 30 |
5 files changed, 59 insertions, 0 deletions
diff --git a/app-i18n/scim-skk/ChangeLog b/app-i18n/scim-skk/ChangeLog new file mode 100644 index 000000000000..f712eb438f0e --- /dev/null +++ b/app-i18n/scim-skk/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-i18n/scim-skk +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-skk/ChangeLog,v 1.1 2005/01/21 11:07:35 usata Exp $ + +*scim-skk-0.1.2 (21 Jan 2005) + + 21 Jan 2005; Mamoru KOMACHI <usata@gentoo.org> +scim-skk-0.1.2.ebuild: + Initial import. + diff --git a/app-i18n/scim-skk/Manifest b/app-i18n/scim-skk/Manifest new file mode 100644 index 000000000000..a4a1900428de --- /dev/null +++ b/app-i18n/scim-skk/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 d00450a7314e83f84e1a3580881c5cb2 scim-skk-0.1.2.ebuild 903 +MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156 +MD5 f31f18cc8827d5289eb11ec382937f8c ChangeLog 329 +MD5 acdb3cd777e0590096d246fea2ba65d8 files/digest-scim-skk-0.1.2 66 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFB8OCDVWNWqTUmv+0RAg9VAJ0YmT+e6TBI+WurNrV9xdNGVjiuNQCdGrAg +tDY0/75pd6gHOWC2LtsfVpA= +=Gt+6 +-----END PGP SIGNATURE----- diff --git a/app-i18n/scim-skk/files/digest-scim-skk-0.1.2 b/app-i18n/scim-skk/files/digest-scim-skk-0.1.2 new file mode 100644 index 000000000000..8de6c75cf61c --- /dev/null +++ b/app-i18n/scim-skk/files/digest-scim-skk-0.1.2 @@ -0,0 +1 @@ +MD5 9c63c559b45b65611dd54e0421f5bf71 scim-skk-0.1.2.tar.gz 513579 diff --git a/app-i18n/scim-skk/metadata.xml b/app-i18n/scim-skk/metadata.xml new file mode 100644 index 000000000000..2d5852c16c60 --- /dev/null +++ b/app-i18n/scim-skk/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>cjk</herd> +</pkgmetadata> diff --git a/app-i18n/scim-skk/scim-skk-0.1.2.ebuild b/app-i18n/scim-skk/scim-skk-0.1.2.ebuild new file mode 100644 index 000000000000..ced3548e8922 --- /dev/null +++ b/app-i18n/scim-skk/scim-skk-0.1.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-skk/scim-skk-0.1.2.ebuild,v 1.1 2005/01/21 11:07:35 usata Exp $ + +DESCRIPTION="Japanese input method SKK IMEngine for SCIM" +HOMEPAGE="http://scim-imengine.sourceforge.jp/index.cgi?cmd=view;name=SCIMSKK" +SRC_URI="mirror://sourceforge.jp/scim-imengine/12875/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="|| ( >=app-i18n/scim-0.99.8 >=app-i18n/scim-cvs-0.99.8 )" + +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 -d" + einfo "export XMODIFIERS=@im=SCIM" + einfo +} |