diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-04-04 00:59:04 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-04-04 00:59:04 +0000 |
commit | c255ce288e570a701159993a58a1cf0872d7b941 (patch) | |
tree | 5e67f7042999865786736bb8ec72c59248d4a673 /dev-db/m17n-db | |
parent | Unbreak -U_FORTIFY_SOURCE (bug #361783). (diff) | |
download | gentoo-2-c255ce288e570a701159993a58a1cf0872d7b941.tar.gz gentoo-2-c255ce288e570a701159993a58a1cf0872d7b941.tar.bz2 gentoo-2-c255ce288e570a701159993a58a1cf0872d7b941.zip |
Version bump; apply a patch from ChromiumOS by Peng Huang to fix issues with traditional Chinese input.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/m17n-db')
-rw-r--r-- | dev-db/m17n-db/ChangeLog | 11 | ||||
-rw-r--r-- | dev-db/m17n-db/files/do-not-commit-extra-space.patch | 16 | ||||
-rw-r--r-- | dev-db/m17n-db/m17n-db-1.6.2.ebuild | 29 |
3 files changed, 54 insertions, 2 deletions
diff --git a/dev-db/m17n-db/ChangeLog b/dev-db/m17n-db/ChangeLog index 915bf1aa4380..8562f54ebec2 100644 --- a/dev-db/m17n-db/ChangeLog +++ b/dev-db/m17n-db/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-db/m17n-db -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/m17n-db/ChangeLog,v 1.44 2010/01/31 11:47:53 armin76 Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/m17n-db/ChangeLog,v 1.45 2011/04/04 00:59:04 flameeyes Exp $ + +*m17n-db-1.6.2 (04 Apr 2011) + + 04 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> +m17n-db-1.6.2.ebuild, + +files/do-not-commit-extra-space.patch: + Version bump; apply a patch from ChromiumOS by Peng Huang to fix issues with + traditional Chinese input. 31 Jan 2010; Raúl Porcel <armin76@gentoo.org> m17n-db-1.5.2.ebuild: arm stable wrt #296159 diff --git a/dev-db/m17n-db/files/do-not-commit-extra-space.patch b/dev-db/m17n-db/files/do-not-commit-extra-space.patch new file mode 100644 index 000000000000..465078a20119 --- /dev/null +++ b/dev-db/m17n-db/files/do-not-commit-extra-space.patch @@ -0,0 +1,16 @@ +Index: MIM/zh-util.mim +=================================================================== +RCS file: /cvs/m17n/m17n-db/MIM/zh-util.mim,v +retrieving revision 1.3 +diff -u -r1.3 zh-util.mim +--- MIM/zh-util.mim 11 Jul 2008 01:28:53 -0000 1.3 ++++ MIM/zh-util.mim 5 Nov 2010 07:07:48 -0000 +@@ -65,7 +65,7 @@ + ((BackSpace))) + + (commit-preedit +- ((S-\ )))) ++ ((\ )))) + + (state + (check-undo diff --git a/dev-db/m17n-db/m17n-db-1.6.2.ebuild b/dev-db/m17n-db/m17n-db-1.6.2.ebuild new file mode 100644 index 000000000000..4218d7380bcf --- /dev/null +++ b/dev-db/m17n-db/m17n-db-1.6.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/m17n-db/m17n-db-1.6.2.ebuild,v 1.1 2011/04/04 00:59:04 flameeyes Exp $ + +EAPI=4 + +DESCRIPTION="Database for the m17n library" +HOMEPAGE="http://www.m17n.org/m17n-lib/" +SRC_URI="http://www.m17n.org/m17n-lib-download/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" +IUSE="" + +DEPEND="sys-devel/gettext" +RDEPEND="virtual/libintl" + +src_prepare() { + epatch "${FILESDIR}"/do-not-commit-extra-space.patch +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc AUTHORS ChangeLog NEWS README + docinto FORMATS; dodoc FORMATS/* + docinto UNIDATA; dodoc UNIDATA/* +} |