diff options
author | Mamoru Komachi <usata@gentoo.org> | 2006-07-07 13:10:24 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2006-07-07 13:10:24 +0000 |
commit | 0c357d58951e4e8aea1aec8d42b7f78600de44a8 (patch) | |
tree | 0b746053cd9eab968aa721b167ed6751f875b843 /app-dicts/kasumi | |
parent | Fix dependency to accept nvidia-drivers too. (diff) | |
download | gentoo-2-0c357d58951e4e8aea1aec8d42b7f78600de44a8.tar.gz gentoo-2-0c357d58951e4e8aea1aec8d42b7f78600de44a8.tar.bz2 gentoo-2-0c357d58951e4e8aea1aec8d42b7f78600de44a8.zip |
Version bump for stable branch.
(Portage version: 2.1.1_pre2-r4)
Diffstat (limited to 'app-dicts/kasumi')
-rw-r--r-- | app-dicts/kasumi/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/kasumi/files/digest-kasumi-1.0.1 | 3 | ||||
-rw-r--r-- | app-dicts/kasumi/kasumi-1.0.1.ebuild | 43 |
3 files changed, 52 insertions, 1 deletions
diff --git a/app-dicts/kasumi/ChangeLog b/app-dicts/kasumi/ChangeLog index 627d6e20d5da..9209d540942c 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.24 2006/06/27 18:01:16 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.25 2006/07/07 13:10:24 usata Exp $ + +*kasumi-1.0.1 (07 Jul 2006) + + 07 Jul 2006; Mamoru KOMACHI <usata@gentoo.org> +kasumi-1.0.1.ebuild: + Version bump for stable branch. 27 Jun 2006; Diego Pettenò <flameeyes@gentoo.org> -files/kasumi-2.0-format.patch, -kasumi-0.7.ebuild, -kasumi-2.0.ebuild: diff --git a/app-dicts/kasumi/files/digest-kasumi-1.0.1 b/app-dicts/kasumi/files/digest-kasumi-1.0.1 new file mode 100644 index 000000000000..384a8c5ff1b6 --- /dev/null +++ b/app-dicts/kasumi/files/digest-kasumi-1.0.1 @@ -0,0 +1,3 @@ +MD5 cd39c2821707f74bd48cfa72655c921f kasumi-1.0.1.tar.gz 290336 +RMD160 2c49afa2b6c0de63d303cefdfd71457c394cf950 kasumi-1.0.1.tar.gz 290336 +SHA256 29e188d3a4d54f7ac045a94529173eada5193bb7557c9c44b242173cc656f1e5 kasumi-1.0.1.tar.gz 290336 diff --git a/app-dicts/kasumi/kasumi-1.0.1.ebuild b/app-dicts/kasumi/kasumi-1.0.1.ebuild new file mode 100644 index 000000000000..d2c5a4e329e0 --- /dev/null +++ b/app-dicts/kasumi/kasumi-1.0.1.ebuild @@ -0,0 +1,43 @@ +# 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-1.0.1.ebuild,v 1.1 2006/07/07 13:10:24 usata Exp $ + +inherit eutils + +DESCRIPTION="Anthy dictionary maintenance tool" +HOMEPAGE="http://kasumi.sourceforge.jp/" +SRC_URI="mirror://sourceforge.jp/${PN}/20685/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="nls" + +RDEPEND=">=x11-libs/gtk+-2.2 + >=dev-libs/glib-2.2 + >=media-libs/freetype-2 + >=dev-libs/atk-1.4 + >=dev-libs/expat-1.95 + >=x11-libs/pango-1.2 + nls? ( virtual/libintl )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd ${S} + + epatch "${FILESDIR}/kasumi-0.10-gcc41.patch" +} + +src_compile() { + econf $(use_enable nls) || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc README ChangeLog AUTHORS +} |