diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-06-03 10:51:49 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-06-03 10:51:49 +0000 |
commit | b84f625929a40b3a3cd711b4e3ea89fb3c047b45 (patch) | |
tree | d448055630c89968694be8ce535c842d3a03267f /app-i18n/scim-hangul | |
parent | Stable on hppa. (diff) | |
download | gentoo-2-b84f625929a40b3a3cd711b4e3ea89fb3c047b45.tar.gz gentoo-2-b84f625929a40b3a3cd711b4e3ea89fb3c047b45.tar.bz2 gentoo-2-b84f625929a40b3a3cd711b4e3ea89fb3c047b45.zip |
Version bumped, Bug 133912.
(Portage version: 2.1_rc3-r3)
Diffstat (limited to 'app-i18n/scim-hangul')
-rw-r--r-- | app-i18n/scim-hangul/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/scim-hangul/files/digest-scim-hangul-0.2.2 | 3 | ||||
-rw-r--r-- | app-i18n/scim-hangul/scim-hangul-0.2.2.ebuild | 37 |
3 files changed, 48 insertions, 2 deletions
diff --git a/app-i18n/scim-hangul/ChangeLog b/app-i18n/scim-hangul/ChangeLog index 892bf9debc42..48050aa352cf 100644 --- a/app-i18n/scim-hangul/ChangeLog +++ b/app-i18n/scim-hangul/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-i18n/scim-hangul -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.9 2005/11/06 13:14:55 matsuu Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.10 2006/06/03 10:51:48 matsuu Exp $ + +*scim-hangul-0.2.2 (03 Jun 2006) + + 03 Jun 2006; MATSUU Takuto <matsuu@gentoo.org> +scim-hangul-0.2.2.ebuild: + Version bumped, Bug 133912. + Added to ~amd64. *scim-hangul-0.2.1 (06 Nov 2005) diff --git a/app-i18n/scim-hangul/files/digest-scim-hangul-0.2.2 b/app-i18n/scim-hangul/files/digest-scim-hangul-0.2.2 new file mode 100644 index 000000000000..4f285fb6f1b2 --- /dev/null +++ b/app-i18n/scim-hangul/files/digest-scim-hangul-0.2.2 @@ -0,0 +1,3 @@ +MD5 de50471ffb5689696215a6eeea24b817 scim-hangul-0.2.2.tar.gz 1346718 +RMD160 563afc753e1eec0067e61a176adb5df2e607fb68 scim-hangul-0.2.2.tar.gz 1346718 +SHA256 0e8d4ebec4136459d32602ff2c0759893d14e64ea03013b14d071957b0588901 scim-hangul-0.2.2.tar.gz 1346718 diff --git a/app-i18n/scim-hangul/scim-hangul-0.2.2.ebuild b/app-i18n/scim-hangul/scim-hangul-0.2.2.ebuild new file mode 100644 index 000000000000..36fbb56959a1 --- /dev/null +++ b/app-i18n/scim-hangul/scim-hangul-0.2.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/scim-hangul-0.2.2.ebuild,v 1.1 2006/06/03 10:51:48 matsuu Exp $ + +inherit eutils + +DESCRIPTION="Hangul IMEngine for SCIM ported from imhangul" +HOMEPAGE="http://www.scim-im.org/" +SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="|| ( >=app-i18n/scim-0.99.8 >=app-i18n/scim-cvs-0.99.8 )" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog NEWS 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 +} |