diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-25 16:02:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-25 16:02:10 +0000 |
commit | e51550a9713eda571398a98274b5a5b7b4afe0a6 (patch) | |
tree | fa6a49fc1f88e51892ff1dfa5105d32086a06fec /app-accessibility/SphinxTrain | |
parent | buh bye virtual/glibc (diff) | |
download | historical-e51550a9713eda571398a98274b5a5b7b4afe0a6.tar.gz historical-e51550a9713eda571398a98274b5a5b7b4afe0a6.tar.bz2 historical-e51550a9713eda571398a98274b5a5b7b4afe0a6.zip |
love thy libc
Diffstat (limited to 'app-accessibility/SphinxTrain')
-rw-r--r-- | app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild b/app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild index 1c3b37f51a2b..899c4a60be8b 100644 --- a/app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild +++ b/app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild @@ -1,44 +1,37 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild,v 1.4 2004/06/24 21:25:10 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/SphinxTrain/SphinxTrain-0.9.1-r1.ebuild,v 1.5 2004/06/25 15:53:10 vapier Exp $ inherit eutils -S=${WORKDIR}/${PN} -DESCRIPTION="SphinxTrain - Speech Recognition (Training Module)" +DESCRIPTION="Speech Recognition (Training Module)" HOMEPAGE="http://www.speech.cs.cmu.edu/SphinxTrain/" SRC_URI="http://www.speech.cs.cmu.edu/${PN}/${P}-beta.tar.gz" -SLOT="0" + LICENSE="BSD as-is" +SLOT="0" KEYWORDS="x86 ~ppc" IUSE="" -DEPEND="virtual/glibc +DEPEND="virtual/libc app-accessibility/sphinx2 app-accessibility/festival" +S=${WORKDIR}/${PN} + src_unpack() { unpack ${A} cd ${S} - epatch ${FILESDIR}/gcc.patch } -src_compile() { - econf || die "econf failed" - emake || die "emake failed" -} - -src_install () { - dodoc etc/*cfg - dobin bin.*/* - dodoc README +src_install() { + dobin bin.*/* || die + dodoc README etc/*cfg dohtml doc/*[txt html sgml] } pkg_postinst() { - einfo einfo "Detailed usage and training instructions can be found at" einfo "http://www.speech.cs.cmu.edu/SphinxTrain/" - einfo } |