diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2005-11-06 13:14:55 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2005-11-06 13:14:55 +0000 |
commit | 9c52e320022fd8ba0ef14ef5c023dfc0eb6098c1 (patch) | |
tree | aa59abfa209823973a1d198fba4e90590cb15905 | |
parent | stable on amd64 wrt bug 111116 (diff) | |
download | gentoo-2-9c52e320022fd8ba0ef14ef5c023dfc0eb6098c1.tar.gz gentoo-2-9c52e320022fd8ba0ef14ef5c023dfc0eb6098c1.tar.bz2 gentoo-2-9c52e320022fd8ba0ef14ef5c023dfc0eb6098c1.zip |
Version bumped. Fixed HOMEPAGE and SRC_URI.
(Portage version: 2.0.53_rc7)
-rw-r--r-- | app-i18n/scim-hangul/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/scim-hangul/Manifest | 4 | ||||
-rw-r--r-- | app-i18n/scim-hangul/files/digest-scim-hangul-0.2.1 | 1 | ||||
-rw-r--r-- | app-i18n/scim-hangul/scim-hangul-0.2.1.ebuild | 37 |
4 files changed, 48 insertions, 2 deletions
diff --git a/app-i18n/scim-hangul/ChangeLog b/app-i18n/scim-hangul/ChangeLog index 50ff6f2d59f6..892bf9debc42 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.8 2005/01/01 14:39:05 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.9 2005/11/06 13:14:55 matsuu Exp $ + +*scim-hangul-0.2.1 (06 Nov 2005) + + 06 Nov 2005; MATSUU Takuto <matsuu@gentoo.org> +scim-hangul-0.2.1.ebuild: + Version bumped. + Fixed HOMEPAGE and SRC_URI. 27 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> -scim-hangul-0.1.0.ebuild, -scim-hangul-0.1.1.ebuild, scim-hangul-0.1.2.ebuild: diff --git a/app-i18n/scim-hangul/Manifest b/app-i18n/scim-hangul/Manifest index b65dee23bf5b..1e0105c3f5c6 100644 --- a/app-i18n/scim-hangul/Manifest +++ b/app-i18n/scim-hangul/Manifest @@ -1,4 +1,6 @@ MD5 e9acd17a1ec83629909f68974c976642 ChangeLog 1391 +MD5 aa20d810924e12d946707d8b9e60334c files/digest-scim-hangul-0.1.2 69 +MD5 9c6915f3852e9584709b8ae7b8a6df00 files/digest-scim-hangul-0.2.1 70 MD5 e92a48548554c80cf90e18df17ff6a82 metadata.xml 156 MD5 b079cadaa2dc1efb374b022823f4f1b1 scim-hangul-0.1.2.ebuild 953 -MD5 aa20d810924e12d946707d8b9e60334c files/digest-scim-hangul-0.1.2 69 +MD5 e2e430b606351269be3d35ed2a69d20c scim-hangul-0.2.1.ebuild 939 diff --git a/app-i18n/scim-hangul/files/digest-scim-hangul-0.2.1 b/app-i18n/scim-hangul/files/digest-scim-hangul-0.2.1 new file mode 100644 index 000000000000..32ddae14a1d3 --- /dev/null +++ b/app-i18n/scim-hangul/files/digest-scim-hangul-0.2.1 @@ -0,0 +1 @@ +MD5 586dbd1c01d414125e1bb13821c57f93 scim-hangul-0.2.1.tar.gz 1345947 diff --git a/app-i18n/scim-hangul/scim-hangul-0.2.1.ebuild b/app-i18n/scim-hangul/scim-hangul-0.2.1.ebuild new file mode 100644 index 000000000000..73fecc539423 --- /dev/null +++ b/app-i18n/scim-hangul/scim-hangul-0.2.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 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.1.ebuild,v 1.1 2005/11/06 13:14:55 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 ~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 +} |