summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2010-09-20 02:47:09 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2010-09-20 02:47:09 +0000
commit67254f719c526779e7e77f13e5538eaaf59d4d31 (patch)
treedb340e7b4a964d9f90ff393829c6d0d692d4fe59 /app-i18n
parentInitial import. (diff)
downloadgentoo-2-67254f719c526779e7e77f13e5538eaaf59d4d31.tar.gz
gentoo-2-67254f719c526779e7e77f13e5538eaaf59d4d31.tar.bz2
gentoo-2-67254f719c526779e7e77f13e5538eaaf59d4d31.zip
Version bumped.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/ibus-m17n/ChangeLog7
-rw-r--r--app-i18n/ibus-m17n/ibus-m17n-1.3.1.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/app-i18n/ibus-m17n/ChangeLog b/app-i18n/ibus-m17n/ChangeLog
index e3f0abc85694..bd196656fe2d 100644
--- a/app-i18n/ibus-m17n/ChangeLog
+++ b/app-i18n/ibus-m17n/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-i18n/ibus-m17n
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-m17n/ChangeLog,v 1.14 2010/05/26 10:34:45 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-m17n/ChangeLog,v 1.15 2010/09/20 02:47:09 matsuu Exp $
+
+*ibus-m17n-1.3.1 (20 Sep 2010)
+
+ 20 Sep 2010; MATSUU Takuto <matsuu@gentoo.org> +ibus-m17n-1.3.1.ebuild:
+ Version bumped.
26 May 2010; Pacho Ramos <pacho@gentoo.org>
ibus-m17n-1.2.0.20091217.ebuild:
diff --git a/app-i18n/ibus-m17n/ibus-m17n-1.3.1.ebuild b/app-i18n/ibus-m17n/ibus-m17n-1.3.1.ebuild
new file mode 100644
index 000000000000..bdf1fe523a81
--- /dev/null
+++ b/app-i18n/ibus-m17n/ibus-m17n-1.3.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-m17n/ibus-m17n-1.3.1.ebuild,v 1.1 2010/09/20 02:47:09 matsuu Exp $
+
+EAPI="3"
+
+DESCRIPTION="The M17N engine IMEngine for IBus Framework"
+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.3
+ x11-libs/gtk+:2
+ dev-libs/m17n-lib
+ nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ dev-db/m17n-db
+ dev-db/m17n-contrib
+ >=sys-devel/gettext-0.16.1"
+
+src_configure() {
+ econf $(use_enable nls) || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ dodoc AUTHORS ChangeLog NEWS README || die
+}