diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-10-29 11:33:21 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-10-29 11:33:21 +0000 |
commit | 102acd935c0288b66930671e207a0a5c3b32189f (patch) | |
tree | 54924233c3ab9650af185f63d7bfca38e61f6f5d /net-analyzer/nfdump | |
parent | Force -j1 during install, see bug #244872. (diff) | |
download | gentoo-2-102acd935c0288b66930671e207a0a5c3b32189f.tar.gz gentoo-2-102acd935c0288b66930671e207a0a5c3b32189f.tar.bz2 gentoo-2-102acd935c0288b66930671e207a0a5c3b32189f.zip |
Force -j1 during install, see bug #240746.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)
Diffstat (limited to 'net-analyzer/nfdump')
-rw-r--r-- | net-analyzer/nfdump/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nfdump/nfdump-1.5.1.ebuild | 10 |
2 files changed, 13 insertions, 4 deletions
diff --git a/net-analyzer/nfdump/ChangeLog b/net-analyzer/nfdump/ChangeLog index 5d0944728eb3..1e22b65b9ffa 100644 --- a/net-analyzer/nfdump/ChangeLog +++ b/net-analyzer/nfdump/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/nfdump -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v 1.4 2007/09/06 17:41:07 jokey Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/ChangeLog,v 1.5 2008/10/29 11:33:21 flameeyes Exp $ + + 29 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> nfdump-1.5.1.ebuild: + Force -j1 during install, see bug #240746. 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -nfdump-1.5.ebuild: Cleanup diff --git a/net-analyzer/nfdump/nfdump-1.5.1.ebuild b/net-analyzer/nfdump/nfdump-1.5.1.ebuild index 381076b1f410..583919401e76 100644 --- a/net-analyzer/nfdump/nfdump-1.5.1.ebuild +++ b/net-analyzer/nfdump/nfdump-1.5.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.5.1.ebuild,v 1.1 2007/03/22 14:47:50 vanquirius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.5.1.ebuild,v 1.2 2008/10/29 11:33:21 flameeyes Exp $ inherit eutils @@ -16,6 +16,12 @@ IUSE="" DEPEND="" RDEPEND="dev-lang/perl" +src_compile() { + econf || die "econf failed" + # Parallel make issue, see bug #240746 + emake -j1 || die "emake failed" +} + src_install() { emake DESTDIR="${D}" install || die dodoc README |