diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2008-12-17 14:48:13 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2008-12-17 14:48:13 +0000 |
commit | b17d7baf86b5310417984380c4bc32a4ae85d49a (patch) | |
tree | 1002fa5369e2c655c839a350fe549ac212f68932 /app-dicts/migemo-dict | |
parent | Add ~amd64, bug 250621 (diff) | |
download | gentoo-2-b17d7baf86b5310417984380c4bc32a4ae85d49a.tar.gz gentoo-2-b17d7baf86b5310417984380c4bc32a4ae85d49a.tar.bz2 gentoo-2-b17d7baf86b5310417984380c4bc32a4ae85d49a.zip |
Version bumped.
(Portage version: 2.1.6/cvs/Linux 2.6.27-gentoo-r4 x86_64)
Diffstat (limited to 'app-dicts/migemo-dict')
-rw-r--r-- | app-dicts/migemo-dict/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/migemo-dict/migemo-dict-200812.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/app-dicts/migemo-dict/ChangeLog b/app-dicts/migemo-dict/ChangeLog index eb232771cc75..0a3efd526325 100644 --- a/app-dicts/migemo-dict/ChangeLog +++ b/app-dicts/migemo-dict/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-dicts/migemo-dict # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/migemo-dict/ChangeLog,v 1.14 2008/01/17 17:20:22 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/migemo-dict/ChangeLog,v 1.15 2008/12/17 14:48:13 matsuu Exp $ + +*migemo-dict-200812 (17 Dec 2008) + + 17 Dec 2008; MATSUU Takuto <matsuu@gentoo.org> +migemo-dict-200812.ebuild: + Version bumped. 17 Jan 2008; Fabian Groffen <grobian@gentoo.org> migemo-dict-200309.ebuild: diff --git a/app-dicts/migemo-dict/migemo-dict-200812.ebuild b/app-dicts/migemo-dict/migemo-dict-200812.ebuild new file mode 100644 index 000000000000..fc7f27213d26 --- /dev/null +++ b/app-dicts/migemo-dict/migemo-dict-200812.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/migemo-dict/migemo-dict-200812.ebuild,v 1.1 2008/12/17 14:48:13 matsuu Exp $ + +IUSE="unicode" + +DESCRIPTION="Dictionary files for the Migemo and C/Migemo" +HOMEPAGE="http://openlab.ring.gr.jp/skk/dic.html" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" + +src_unpack() { + unpack ${A} + cd "${S}" + if use unicode ; then + iconv -f euc-jp -t utf-8 migemo-dict > "${T}/migemo-dict" + else + cp migemo-dict "${T}/migemo-dict" + fi +} + +src_install() { + insinto /usr/share/migemo + doins "${T}/migemo-dict" +} |