diff options
author | John P. Davis <zhen@gentoo.org> | 2002-11-14 13:39:04 +0000 |
---|---|---|
committer | John P. Davis <zhen@gentoo.org> | 2002-11-14 13:39:04 +0000 |
commit | 0189fdfdfa15749454cf59afe2f230d2b2caa692 (patch) | |
tree | 628fb69a2e5da0d1f664ede46c5d6f950e56eab9 /media-sound/festival | |
parent | Fix in regard to bug #6956 (diff) | |
download | historical-0189fdfdfa15749454cf59afe2f230d2b2caa692.tar.gz historical-0189fdfdfa15749454cf59afe2f230d2b2caa692.tar.bz2 historical-0189fdfdfa15749454cf59afe2f230d2b2caa692.zip |
see changelog - changed bug for MAKEOPTS
Diffstat (limited to 'media-sound/festival')
-rw-r--r-- | media-sound/festival/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/festival/festival-1.4.2-r1.ebuild | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/media-sound/festival/ChangeLog b/media-sound/festival/ChangeLog index 2caf1eda42c0..286a774f1941 100644 --- a/media-sound/festival/ChangeLog +++ b/media-sound/festival/ChangeLog @@ -3,6 +3,12 @@ # $Header: /home/cvsroot/gentoo-x86/media-sound/festival/ChangeLog,v 1 2002/05/07 # 03:58:19 naz Exp $ +*festivial-1.4.2-r1 (14 Nov 2002) + + John P. Davis <zhen@gentoo.org> + I changed emake to make in the top of the src_compile function. (it is commented) + This change is made to force festival to use -jX where X <=2. + *festival-1.4.2-r1 (23 Oct 2002) 23 Oct 2002; Matt Keadle <mkeadle@gentoo.org> festival-1.4.2-r1.ebuild diff --git a/media-sound/festival/festival-1.4.2-r1.ebuild b/media-sound/festival/festival-1.4.2-r1.ebuild index 3c45cee3881d..8267a8eb6218 100644 --- a/media-sound/festival/festival-1.4.2-r1.ebuild +++ b/media-sound/festival/festival-1.4.2-r1.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/festival/festival-1.4.2-r1.ebuild,v 1.2 2002/11/06 15:28:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/festival/festival-1.4.2-r1.ebuild,v 1.3 2002/11/14 13:39:04 zhen Exp $ S=${WORKDIR}/${PN} T=${WORKDIR}/speech_tools DESCRIPTION="Festival Text to Speech engine" GCCPV=`cc -dumpversion` +IUSE="" HOMEPAGE="http://www.cstr.ed.ac.uk/" SITE="http://www.speech.cs.cmu.edu/${PN}/cstr/${PN}/${PV}" @@ -61,7 +62,10 @@ src_compile() { pushd # emake worked for me on SMP - emake || die + #emake did not work for me because I had -j5. If there is anything greater than + #-j2, emake dies. + #zhen@gentoo.org + make || die cd ${S} econf |