summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2007-12-31 14:37:40 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2007-12-31 14:37:40 +0000
commit532d4b1e4ac8ba3ebd5a7d4fbca62a63613ff8a4 (patch)
treece5c76c6900c6e41dc55699f9c1f858cb825473d /app-i18n
parentMake Tobias happy (diff)
downloadgentoo-2-532d4b1e4ac8ba3ebd5a7d4fbca62a63613ff8a4.tar.gz
gentoo-2-532d4b1e4ac8ba3ebd5a7d4fbca62a63613ff8a4.tar.bz2
gentoo-2-532d4b1e4ac8ba3ebd5a7d4fbca62a63613ff8a4.zip
Version bumped.
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/scim-hangul/ChangeLog7
-rw-r--r--app-i18n/scim-hangul/files/digest-scim-hangul-0.3.23
-rw-r--r--app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild43
3 files changed, 52 insertions, 1 deletions
diff --git a/app-i18n/scim-hangul/ChangeLog b/app-i18n/scim-hangul/ChangeLog
index 43fb8b933eb6..a403d9bc3fb9 100644
--- a/app-i18n/scim-hangul/ChangeLog
+++ b/app-i18n/scim-hangul/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-i18n/scim-hangul
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.22 2007/09/22 16:37:48 philantrop Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.23 2007/12/31 14:37:39 matsuu Exp $
+
+*scim-hangul-0.3.2 (31 Dec 2007)
+
+ 31 Dec 2007; MATSUU Takuto <matsuu@gentoo.org> +scim-hangul-0.3.2.ebuild:
+ Version bumped.
22 Sep 2007; Wulf C. Krueger <philantrop@gentoo.org>
scim-hangul-0.3.1.ebuild:
diff --git a/app-i18n/scim-hangul/files/digest-scim-hangul-0.3.2 b/app-i18n/scim-hangul/files/digest-scim-hangul-0.3.2
new file mode 100644
index 000000000000..123777c97f8e
--- /dev/null
+++ b/app-i18n/scim-hangul/files/digest-scim-hangul-0.3.2
@@ -0,0 +1,3 @@
+MD5 882460f47dd3211f94c80ed894ad05cb scim-hangul-0.3.2.tar.gz 1176577
+RMD160 52fd93c3f6fdd3d4c407a7b0069fc3a4d4ac9bc0 scim-hangul-0.3.2.tar.gz 1176577
+SHA256 b7c67778f5dd8ec29b96c1477ef008e10fae436928975fc46fbeb7a546d4462b scim-hangul-0.3.2.tar.gz 1176577
diff --git a/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild b/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
new file mode 100644
index 000000000000..26fbb366163e
--- /dev/null
+++ b/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2007 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.3.2.ebuild,v 1.1 2007/12/31 14:37:39 matsuu Exp $
+
+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="kde nls"
+
+RDEPEND="|| ( >=app-i18n/scim-0.99.8 >=app-i18n/scim-cvs-0.99.8 )
+ >=app-i18n/libhangul-0.0.4
+ kde? ( >=app-i18n/skim-1.2.1 )
+ nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ econf \
+ $(use_enable kde skim-support) \
+ $(use_enable nls) || die
+ emake || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "make install failed"
+
+ dodoc AUTHORS ChangeLog* NEWS README*
+}
+
+pkg_postinst() {
+ elog
+ elog "To use SCIM with both GTK2 and XIM, you should use the following"
+ elog "in your user startup scripts such as .gnomerc or .xinitrc:"
+ elog
+ elog "LANG='your_language' scim -d"
+ elog "export XMODIFIERS=@im=SCIM"
+ elog
+}