diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2007-06-01 23:15:57 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2007-06-01 23:15:57 +0000 |
commit | b76a171480cf29994355dcc69e1d00bf8fa928be (patch) | |
tree | ecc8cae359eb6640efa01e9e3112622b5a938cf0 | |
parent | Stable for HPPA (bug #174939). (diff) | |
download | gentoo-2-b76a171480cf29994355dcc69e1d00bf8fa928be.tar.gz gentoo-2-b76a171480cf29994355dcc69e1d00bf8fa928be.tar.bz2 gentoo-2-b76a171480cf29994355dcc69e1d00bf8fa928be.zip |
Version bumped.
(Portage version: 2.1.2.7)
-rw-r--r-- | app-i18n/tomoe/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/tomoe/files/digest-tomoe-0.5.1 | 3 | ||||
-rw-r--r-- | app-i18n/tomoe/tomoe-0.5.1.ebuild | 35 |
3 files changed, 44 insertions, 1 deletions
diff --git a/app-i18n/tomoe/ChangeLog b/app-i18n/tomoe/ChangeLog index 5eedf49f4fc5..0c7341c3632c 100644 --- a/app-i18n/tomoe/ChangeLog +++ b/app-i18n/tomoe/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/tomoe # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/tomoe/ChangeLog,v 1.4 2007/01/06 05:50:28 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/tomoe/ChangeLog,v 1.5 2007/06/01 23:15:57 matsuu Exp $ + +*tomoe-0.5.1 (01 Jun 2007) + + 01 Jun 2007; MATSUU Takuto <matsuu@gentoo.org> +tomoe-0.5.1.ebuild: + Version bumped. *tomoe-0.5.0 (06 Jan 2007) diff --git a/app-i18n/tomoe/files/digest-tomoe-0.5.1 b/app-i18n/tomoe/files/digest-tomoe-0.5.1 new file mode 100644 index 000000000000..b5316a0a2199 --- /dev/null +++ b/app-i18n/tomoe/files/digest-tomoe-0.5.1 @@ -0,0 +1,3 @@ +MD5 84b103ef8240bf0d76f1083b2cf3521b tomoe-0.5.1.tar.gz 3486020 +RMD160 ab171306f018ac9a028b4794fbe613ff3546a673 tomoe-0.5.1.tar.gz 3486020 +SHA256 38f2fcf09fd055330ce1170f0f092480875d977cdc4e40e282e108eac64f288d tomoe-0.5.1.tar.gz 3486020 diff --git a/app-i18n/tomoe/tomoe-0.5.1.ebuild b/app-i18n/tomoe/tomoe-0.5.1.ebuild new file mode 100644 index 000000000000..d48f729282b2 --- /dev/null +++ b/app-i18n/tomoe/tomoe-0.5.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/tomoe/tomoe-0.5.1.ebuild,v 1.1 2007/06/01 23:15:57 matsuu Exp $ + +DESCRIPTION="Japanese handwriting recognition engine" +HOMEPAGE="http://tomoe.sourceforge.jp/" +SRC_URI="mirror://sourceforge.jp/tomoe/23908/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ruby" +#IUSE="hyperestraier mysql ruby subversion" + +RDEPEND=">=dev-libs/glib-2.4 + ruby? ( dev-ruby/ruby-glib2 )" +# hyperestraier? ( app-text/hyperestraier ) +# subversion? ( dev-util/subversion ) +# mysql? ( dev-db/mysql ) + +DEPEND="${DEPEND} + dev-util/pkgconfig" + +RESTRICT="test" + +src_compile() { + econf $(use_with ruby) || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog NEWS TODO +} |