diff options
author | William Hubbs <williamh@gentoo.org> | 2006-09-30 19:09:59 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2006-09-30 19:09:59 +0000 |
commit | 44008d55213b24d6b6aa224a5759de3a138e0f45 (patch) | |
tree | ba4f4580585dc573b51d9989430a8c08949d408e /app-accessibility/sphinx3/sphinx3-0.6.3.ebuild | |
parent | Push out accumulated fixes. (diff) | |
download | gentoo-2-44008d55213b24d6b6aa224a5759de3a138e0f45.tar.gz gentoo-2-44008d55213b24d6b6aa224a5759de3a138e0f45.tar.bz2 gentoo-2-44008d55213b24d6b6aa224a5759de3a138e0f45.zip |
Version bump, also closes #145667.
(Portage version: 2.1.2_pre2)
Diffstat (limited to 'app-accessibility/sphinx3/sphinx3-0.6.3.ebuild')
-rw-r--r-- | app-accessibility/sphinx3/sphinx3-0.6.3.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
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 +} |