# ChangeLog for app-text/hyperestraier
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/hyperestraier/ChangeLog,v 1.33 2006/10/30 08:06:01 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/hyperestraier/ChangeLog,v 1.34 2006/10/30 12:13:40 hattya Exp $
+
+*hyperestraier-1.4.7 (30 Oct 2006)
+
+ 30 Oct 2006; Akinori Hattori <hattya@gentoo.org>
+ +hyperestraier-1.4.7.ebuild:
+ new upstream release.
30 Oct 2006; Akinori Hattori <hattya@gentoo.org>
hyperestraier-1.4.0-r1.ebuild, hyperestraier-1.4.0-r2.ebuild:
--- /dev/null
+MD5 4e827e9d5db019a863125f08f1080307 hyperestraier-1.4.7.tar.gz 972317
+RMD160 e64a3db1eb577607cbb19979f8e072a1fd2d9122 hyperestraier-1.4.7.tar.gz 972317
+SHA256 787e1eb5dbe75d260e500cdc7ea9446e05e6c53fe2c377c2c0bf7709b2e771e8 hyperestraier-1.4.7.tar.gz 972317
--- /dev/null
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/hyperestraier/hyperestraier-1.4.7.ebuild,v 1.1 2006/10/30 12:13:40 hattya Exp $
+
+inherit java-pkg-opt-2
+
+IUSE="debug java mecab ruby"
+
+DESCRIPTION="a full-text search system for communities"
+HOMEPAGE="http://hyperestraier.sf.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+SLOT="0"
+
+RDEPEND=">=dev-db/qdbm-1.8.68
+ sys-libs/zlib
+ java? ( >=virtual/jre-1.4 )
+ mecab? ( app-text/mecab )
+ ruby? ( dev-lang/ruby )"
+DEPEND="${RDEPEND}
+ java? ( >=virtual/jdk-1.4 )"
+
+src_unpack() {
+
+ unpack ${A}
+ cd "${S}"
+
+ # fix for insecure runpath warning.
+ sed -i "/^LDENV/d" Makefile.in
+
+}
+
+src_compile() {
+
+ econf \
+ `use_enable debug` \
+ `use_enable mecab` \
+ || die
+ emake || die
+
+ local u d
+
+ for u in java ruby; do
+ if ! use ${u}; then
+ continue
+ fi
+
+ for d in ${u}native ${u}pure; do
+ cd ${d}
+ econf || die
+ emake || die
+ cd -
+ done
+ done
+
+}
+
+src_test() {
+
+ emake -j1 check || die
+
+ local u d
+
+ for u in java ruby; do
+ if ! use ${u}; then
+ continue
+ fi
+
+ for d in ${u}native; do
+ cd ${d}
+ emake -j1 check || die
+ cd -
+ done
+ done
+
+}
+
+src_install() {
+
+ emake DESTDIR="${D}" MYDOCS= install || die
+ dodoc ChangeLog README* THANKS
+ dohtml doc/*
+
+ local u d
+
+ for u in java ruby; do
+ if ! use ${u}; then
+ continue
+ fi
+
+ for d in ${u}native ${u}pure; do
+ cd ${d}
+ emake DESTDIR="${D}" install || die
+ cd -
+ dohtml -r doc/${d}api
+ done
+ done
+
+ if use java; then
+ java-pkg_dojar "${D}"/usr/$(get_libdir)/*.jar
+ rm -f "${D}"/usr/$(get_libdir)/*.jar
+ fi
+
+ rm -f "${D}"/usr/bin/*test
+
+}
# ChangeLog for app-text/mecab
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.26 2006/10/20 17:37:38 mcummings Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.27 2006/10/30 12:17:08 hattya Exp $
+
+*mecab-0.93 (30 Oct 2006)
+
+ 30 Oct 2006; Akinori Hattori <hattya@gentoo.org> +mecab-0.93.ebuild:
+ new upstream release.
20 Oct 2006; Michael Cummings <mcummings@gentoo.org> mecab-0.92.ebuild:
Marking amd64 stable
-MD5 b6f585e793f059c67b989331131bbe10 mecab-0.92.tar.gz 1073039
-RMD160 24619eaec380c04495eebd62ea620bb530c2d66f mecab-0.92.tar.gz 1073039
-SHA256 6f61c93fbe9f6c0483edceb2d72f58e9138aad59c5414dd885d68a621f679d70 mecab-0.92.tar.gz 1073039
+MD5 381dd3e289647a2cf6df0a1f3e782609 mecab-0.92.tar.gz 1071184
+RMD160 07b1947c9695271d157a0caf924891dd74988e9c mecab-0.92.tar.gz 1071184
+SHA256 55f4e1eb8d305715b236136526984fec35d94fa76007d0d62e631a101fd4c423 mecab-0.92.tar.gz 1071184
--- /dev/null
+MD5 93ee80c5ea101c798e3954b19bd0088d mecab-0.93.tar.gz 1072942
+RMD160 ac55ce22fe3c1b90311043e505d6b6e1a2ee19f0 mecab-0.93.tar.gz 1072942
+SHA256 139716223a25660121c2e8cbb3e9f2ba53d031a356b4f7ccd0a6cee0287253db mecab-0.93.tar.gz 1072942
--- /dev/null
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.93.ebuild,v 1.1 2006/10/30 12:17:08 hattya Exp $
+
+IUSE="unicode"
+
+DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer"
+HOMEPAGE="http://mecab.sourceforge.jp/"
+SRC_URI="mirror://sourceforge.jp/${PN}/21187/${P}.tar.gz"
+
+LICENSE="BSD LGPL-2.1 GPL-2"
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+SLOT="0"
+
+DEPEND="dev-lang/perl"
+PDEPEND=">=app-dicts/mecab-ipadic-2.7.0.20060707"
+
+src_compile() {
+
+ local myconf
+
+ use unicode && myconf="${myconf} --with-charset=utf8"
+
+ econf ${myconf} || die
+ emake || die
+
+}
+
+src_install() {
+
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS README || die
+ dohtml doc/* || die
+
+}