diff options
author | 2009-02-12 14:50:06 +0000 | |
---|---|---|
committer | 2009-02-12 14:50:06 +0000 | |
commit | 1ef3dfef914943067ed454535bfcb8bc48f323fd (patch) | |
tree | e191d6a52d6933bce4cb2d641819f5540a78292d /app-i18n/ibus-hangul | |
parent | Fix --as-needed bug #247508 (diff) | |
download | historical-1ef3dfef914943067ed454535bfcb8bc48f323fd.tar.gz historical-1ef3dfef914943067ed454535bfcb8bc48f323fd.tar.bz2 historical-1ef3dfef914943067ed454535bfcb8bc48f323fd.zip |
Version bumped.
Package-Manager: portage-2.1.6.7/cvs/Linux x86_64
Diffstat (limited to 'app-i18n/ibus-hangul')
-rw-r--r-- | app-i18n/ibus-hangul/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/ibus-hangul/ibus-hangul-1.1.0.20090211.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-i18n/ibus-hangul/ChangeLog b/app-i18n/ibus-hangul/ChangeLog index 5f200aefba41..395b919f6990 100644 --- a/app-i18n/ibus-hangul/ChangeLog +++ b/app-i18n/ibus-hangul/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-i18n/ibus-hangul # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-hangul/ChangeLog,v 1.3 2009/02/05 16:17:26 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-hangul/ChangeLog,v 1.4 2009/02/12 14:49:55 matsuu Exp $ + +*ibus-hangul-1.1.0.20090211 (12 Feb 2009) + + 12 Feb 2009; MATSUU Takuto <matsuu@gentoo.org> + +ibus-hangul-1.1.0.20090211.ebuild: + Version bumped. *ibus-hangul-1.1.0.20090205 (05 Feb 2009) diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.1.0.20090211.ebuild b/app-i18n/ibus-hangul/ibus-hangul-1.1.0.20090211.ebuild new file mode 100644 index 000000000000..5cedca4a12df --- /dev/null +++ b/app-i18n/ibus-hangul/ibus-hangul-1.1.0.20090211.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-hangul/ibus-hangul-1.1.0.20090211.ebuild,v 1.1 2009/02/12 14:49:55 matsuu Exp $ + +DESCRIPTION="The Hangul engine for IBus input platform" +HOMEPAGE="http://code.google.com/p/ibus/" +SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +RDEPEND=">=app-i18n/ibus-1.1 + app-i18n/libhangul + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( >=sys-devel/gettext-0.16.1 )" + +src_compile() { + econf $(use_enable nls) || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc AUTHORS ChangeLog NEWS README +} + +pkg_postinst() { + ewarn "This package is very experimental, please report your bugs to" + ewarn "http://ibus.googlecode.com/issues/list" + elog + elog "You should run ibus-setup and enable IM Engines you want to use!" + elog +} |