diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-04-19 06:46:08 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-04-19 06:46:08 +0000 |
commit | f16f5cc7f12f24b7113bd88cca8f39764af0ee59 (patch) | |
tree | 6c261d929e13dc0e87353161351d20f9b2e5079a /app-i18n | |
parent | version bump (diff) | |
download | gentoo-2-f16f5cc7f12f24b7113bd88cca8f39764af0ee59.tar.gz gentoo-2-f16f5cc7f12f24b7113bd88cca8f39764af0ee59.tar.bz2 gentoo-2-f16f5cc7f12f24b7113bd88cca8f39764af0ee59.zip |
Version bumped. Fixed DEPEND
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/scim-m17n/ChangeLog | 9 | ||||
-rw-r--r-- | app-i18n/scim-m17n/scim-m17n-0.2.3.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/app-i18n/scim-m17n/ChangeLog b/app-i18n/scim-m17n/ChangeLog index c4ffa4071723..9f8af78e5af0 100644 --- a/app-i18n/scim-m17n/ChangeLog +++ b/app-i18n/scim-m17n/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/scim-m17n -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-m17n/ChangeLog,v 1.33 2008/08/09 01:31:04 matsuu Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-m17n/ChangeLog,v 1.34 2009/04/19 06:46:08 matsuu Exp $ + +*scim-m17n-0.2.3 (19 Apr 2009) + + 19 Apr 2009; MATSUU Takuto <matsuu@gentoo.org> +scim-m17n-0.2.3.ebuild: + Version bumped. Fixed dependency. 09 Aug 2008; MATSUU Takuto <matsuu@gentoo.org> +files/scim-m17n-0.2.2-gcc43.patch, -scim-m17n-0.1.3.ebuild, diff --git a/app-i18n/scim-m17n/scim-m17n-0.2.3.ebuild b/app-i18n/scim-m17n/scim-m17n-0.2.3.ebuild new file mode 100644 index 000000000000..a6a64eac0629 --- /dev/null +++ b/app-i18n/scim-m17n/scim-m17n-0.2.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-m17n/scim-m17n-0.2.3.ebuild,v 1.1 2009/04/19 06:46:08 matsuu Exp $ + +DESCRIPTION="scim-m17n is an input module for Smart Common Input Method (SCIM) which uses m17n as backend" +HOMEPAGE="http://www.scim-im.org/projects/imengines" +SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND=">=app-i18n/scim-1.4 + >=dev-libs/m17n-lib-1.2.0" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog THANKS 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 "export GTK_IM_MODULE=\"scim\"" + elog +} |