summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-accessibility/sphinx3/ChangeLog7
-rw-r--r--app-accessibility/sphinx3/files/digest-sphinx3-0.6.33
-rw-r--r--app-accessibility/sphinx3/sphinx3-0.6.3.ebuild25
3 files changed, 34 insertions, 1 deletions
diff --git a/app-accessibility/sphinx3/ChangeLog b/app-accessibility/sphinx3/ChangeLog
index 9e411dce3e90..db362a52db5d 100644
--- a/app-accessibility/sphinx3/ChangeLog
+++ b/app-accessibility/sphinx3/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-accessibility/sphinx3
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.1 2006/07/04 04:33:50 squinky86 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/ChangeLog,v 1.2 2006/09/30 19:09:59 williamh Exp $
+
+*sphinx3-0.6.3 (30 Sep 2006)
+
+ 30 Sep 2006; William Hubbs <williamh@gentoo.org> +sphinx3-0.6.3.ebuild:
+ version bump, also closes #145667.
*sphinx3-0.6 (04 Jul 2006)
diff --git a/app-accessibility/sphinx3/files/digest-sphinx3-0.6.3 b/app-accessibility/sphinx3/files/digest-sphinx3-0.6.3
new file mode 100644
index 000000000000..314827101614
--- /dev/null
+++ b/app-accessibility/sphinx3/files/digest-sphinx3-0.6.3
@@ -0,0 +1,3 @@
+MD5 e2982bb82babb5a13088b70fccc450d5 sphinx3-0.6.3.tar.gz 26070353
+RMD160 0d3e44af97fe24dbcca30a853ebc6d751c576fc6 sphinx3-0.6.3.tar.gz 26070353
+SHA256 f6a070a67d91ccd00dbce7b6cc55242ed7a5ebaae6d6429eb0364657c4056ede sphinx3-0.6.3.tar.gz 26070353
diff --git a/app-accessibility/sphinx3/sphinx3-0.6.3.ebuild b/app-accessibility/sphinx3/sphinx3-0.6.3.ebuild
new file mode 100644
index 000000000000..a371915d7e3b
--- /dev/null
+++ b/app-accessibility/sphinx3/sphinx3-0.6.3.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/sphinx3/sphinx3-0.6.3.ebuild,v 1.1 2006/09/30 19:09:59 williamh Exp $
+
+DESCRIPTION="CMU Speech Recognition engine"
+HOMEPAGE="http://fife.speech.cs.cmu.edu/sphinx/"
+SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
+
+LICENSE="BSD as-is"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S=${WORKDIR}/${PN}-0.6
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS README
+ cd doc
+ dohtml -r -x CVS s3* s3 *.html
+}