diff options
author | Wulf Krueger <philantrop@gentoo.org> | 2007-11-22 19:25:48 +0000 |
---|---|---|
committer | Wulf Krueger <philantrop@gentoo.org> | 2007-11-22 19:25:48 +0000 |
commit | b145adf027265a89bfbc8da70bf0cb97bcc44d5b (patch) | |
tree | 1d1b42e45f24752ffae4ecdc73e2d42e87cf5d95 /app-text/ispell | |
parent | Bump fluidsynth dependency version. (diff) | |
download | gentoo-2-b145adf027265a89bfbc8da70bf0cb97bcc44d5b.tar.gz gentoo-2-b145adf027265a89bfbc8da70bf0cb97bcc44d5b.tar.bz2 gentoo-2-b145adf027265a89bfbc8da70bf0cb97bcc44d5b.zip |
Set -j1 to avoid parallel make issues and added a die message. Fixes bug 199931.
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-text/ispell')
-rw-r--r-- | app-text/ispell/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/ispell/ispell-3.3.02.ebuild | 8 |
2 files changed, 13 insertions, 5 deletions
diff --git a/app-text/ispell/ChangeLog b/app-text/ispell/ChangeLog index 1b2697cb1388..03a73b5974f4 100644 --- a/app-text/ispell/ChangeLog +++ b/app-text/ispell/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-text/ispell # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.32 2007/11/21 17:21:03 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.33 2007/11/22 19:25:48 philantrop Exp $ + + 22 Nov 2007; Wulf C. Krueger <philantrop@gentoo.org> ispell-3.3.02.ebuild: + Set -j1 to avoid parallel make issues and added a die message. Fixes bug + 199931. + + 22 Nov 2007; Wulf C. Krueger <philantrop@gentoo.org> ispell-3.3.02.ebuild: + Set -j1 to avoid parallel make issues and added a die message. Fixes bug + 199931. *ispell-3.3.02 (21 Nov 2007) diff --git a/app-text/ispell/ispell-3.3.02.ebuild b/app-text/ispell/ispell-3.3.02.ebuild index 402814a58f25..e56d6061ddc0 100644 --- a/app-text/ispell/ispell-3.3.02.ebuild +++ b/app-text/ispell/ispell-3.3.02.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild,v 1.1 2007/11/21 17:21:03 philantrop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.3.02.ebuild,v 1.2 2007/11/22 19:25:48 philantrop Exp $ inherit eutils multilib @@ -28,7 +28,7 @@ src_unpack() { } src_compile() { - emake config.sh || die + emake -j1 config.sh || die "configuration failed" # Fix config.sh to install to ${D} cp -p config.sh config.sh.orig @@ -39,7 +39,7 @@ src_compile() { -e "s:^\(MAN45DIR='\)\(.*\):\1${D}\2:" \ < config.sh > config.sh.install - emake || die "compilation failed" + emake -j1 || die "compilation failed" } src_install() { @@ -51,7 +51,7 @@ src_install() { dodir /usr/bin /usr/$(get_libdir)/ispell /usr/share/info \ /usr/share/man/man1 /usr/share/man/man5 - emake install || die "Installation Failed" + emake -j1 install || die "Installation Failed" rmdir "${D}"/usr/share/info || die "removing empty info dir failed" dodoc CHANGES Contributors README WISHES || die "installing docs failed" |