summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatsuu Takuto <matsuu@gentoo.org>2006-12-15 00:16:43 +0000
committerMatsuu Takuto <matsuu@gentoo.org>2006-12-15 00:16:43 +0000
commit6bc53de795946d6a8355242ed106a5e34825269e (patch)
tree3c56a4c427fd807664f1b0542b1c52a901068efe /app-dicts
parentmultilib-strict fix; bug 153978 (diff)
downloadgentoo-2-6bc53de795946d6a8355242ed106a5e34825269e.tar.gz
gentoo-2-6bc53de795946d6a8355242ed106a5e34825269e.tar.bz2
gentoo-2-6bc53de795946d6a8355242ed106a5e34825269e.zip
Version bumped.
(Portage version: 2.1.1-r2)
Diffstat (limited to 'app-dicts')
-rw-r--r--app-dicts/kasumi/ChangeLog7
-rw-r--r--app-dicts/kasumi/files/digest-kasumi-2.23
-rw-r--r--app-dicts/kasumi/kasumi-2.2.ebuild32
3 files changed, 41 insertions, 1 deletions
diff --git a/app-dicts/kasumi/ChangeLog b/app-dicts/kasumi/ChangeLog
index 06552b92bccd..0ce31fcb1b54 100644
--- a/app-dicts/kasumi/ChangeLog
+++ b/app-dicts/kasumi/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-dicts/kasumi
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.31 2006/10/30 15:28:26 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.32 2006/12/15 00:16:42 matsuu Exp $
+
+*kasumi-2.2 (15 Dec 2006)
+
+ 15 Dec 2006; MATSUU Takuto <matsuu@gentoo.org> +kasumi-2.2.ebuild:
+ Version bumped.
30 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> kasumi-2.1.ebuild:
Add ~x86-fbsd keyword.
diff --git a/app-dicts/kasumi/files/digest-kasumi-2.2 b/app-dicts/kasumi/files/digest-kasumi-2.2
new file mode 100644
index 000000000000..ef444f3a336b
--- /dev/null
+++ b/app-dicts/kasumi/files/digest-kasumi-2.2
@@ -0,0 +1,3 @@
+MD5 d0c3a605fc95b89d4e102ffdd0b4c37d kasumi-2.2.tar.gz 272544
+RMD160 8c5e85d60a980391ffc2a6f2b5217d450b8d0c49 kasumi-2.2.tar.gz 272544
+SHA256 b11e72cf32eaea438ef685faee74a8b86a789aa4de68f12b13ea1e7b23f2b108 kasumi-2.2.tar.gz 272544
diff --git a/app-dicts/kasumi/kasumi-2.2.ebuild b/app-dicts/kasumi/kasumi-2.2.ebuild
new file mode 100644
index 000000000000..04737331c9dd
--- /dev/null
+++ b/app-dicts/kasumi/kasumi-2.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/kasumi-2.2.ebuild,v 1.1 2006/12/15 00:16:42 matsuu Exp $
+
+DESCRIPTION="Anthy dictionary maintenance tool"
+HOMEPAGE="http://kasumi.sourceforge.jp/"
+SRC_URI="mirror://sourceforge.jp/${PN}/22902/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="nls"
+
+RDEPEND=">=x11-libs/gtk+-2.4
+ nls? ( virtual/libintl )
+ virtual/libiconv
+ >=app-i18n/anthy-6131"
+
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ econf $(use_enable nls) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc README ChangeLog AUTHORS
+}