summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2007-01-15 15:19:52 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2007-01-15 15:19:52 +0000
commit00282e051d62f7ef311f776226edefffe884f1bf (patch)
treece83f374e6f3c3d4e9222b04f2e75f0f594eab67
parentEbuild maintenance (diff)
downloadgentoo-2-00282e051d62f7ef311f776226edefffe884f1bf.tar.gz
gentoo-2-00282e051d62f7ef311f776226edefffe884f1bf.tar.bz2
gentoo-2-00282e051d62f7ef311f776226edefffe884f1bf.zip
Version bumped, bug #162174.
(Portage version: 2.1.1-r2)
-rw-r--r--app-i18n/scim-hangul/ChangeLog7
-rw-r--r--app-i18n/scim-hangul/files/digest-scim-hangul-0.3.13
-rw-r--r--app-i18n/scim-hangul/scim-hangul-0.3.1.ebuild43
3 files changed, 52 insertions, 1 deletions
diff --git a/app-i18n/scim-hangul/ChangeLog b/app-i18n/scim-hangul/ChangeLog
index 15f7fefe04e9..c7bf465249a6 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.15 2007/01/05 16:27:53 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.16 2007/01/15 15:19:52 matsuu Exp $
+
+*scim-hangul-0.3.1 (15 Jan 2007)
+
+ 15 Jan 2007; MATSUU Takuto <matsuu@gentoo.org> +scim-hangul-0.3.1.ebuild:
+ Version bumped, bug #162174.
05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
scim-hangul-0.1.2.ebuild, scim-hangul-0.2.1.ebuild,
diff --git a/app-i18n/scim-hangul/files/digest-scim-hangul-0.3.1 b/app-i18n/scim-hangul/files/digest-scim-hangul-0.3.1
new file mode 100644
index 000000000000..67e812076c77
--- /dev/null
+++ b/app-i18n/scim-hangul/files/digest-scim-hangul-0.3.1
@@ -0,0 +1,3 @@
+MD5 72c5b5297c919b4e111b436e952ffd7f scim-hangul-0.3.1.tar.gz 1233660
+RMD160 ce4be1bad946ae037722b9f484ccf891566cee33 scim-hangul-0.3.1.tar.gz 1233660
+SHA256 2e934e1d4780bed3b89966612b4fd70304ee7265098365d674296fb2316d8147 scim-hangul-0.3.1.tar.gz 1233660
diff --git a/app-i18n/scim-hangul/scim-hangul-0.3.1.ebuild b/app-i18n/scim-hangul/scim-hangul-0.3.1.ebuild
new file mode 100644
index 000000000000..66ac72d13bf4
--- /dev/null
+++ b/app-i18n/scim-hangul/scim-hangul-0.3.1.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.1.ebuild,v 1.1 2007/01/15 15:19:52 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="~amd64 ~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
+}