diff options
author | Markus Ullmann <jokey@gentoo.org> | 2006-10-31 19:58:42 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2006-10-31 19:58:42 +0000 |
commit | ce6d440ecb3ee5b3e4b548c6c710700911164a7b (patch) | |
tree | 4601dc514cb94dbc3e2acda59e86cf3a280ae737 /net-analyzer | |
parent | Autotools fixups (diff) | |
download | gentoo-2-ce6d440ecb3ee5b3e4b548c6c710700911164a7b.tar.gz gentoo-2-ce6d440ecb3ee5b3e4b548c6c710700911164a7b.tar.bz2 gentoo-2-ce6d440ecb3ee5b3e4b548c6c710700911164a7b.zip |
Adding -j1 to fix parallel make issue
(Portage version: 2.1.2_rc1-r1)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/snort/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/snort/snort-2.6.0.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/net-analyzer/snort/ChangeLog b/net-analyzer/snort/ChangeLog index 470555ed5da6..82578ddcb412 100644 --- a/net-analyzer/snort/ChangeLog +++ b/net-analyzer/snort/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/snort # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/ChangeLog,v 1.107 2006/10/09 00:39:39 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/ChangeLog,v 1.108 2006/10/31 19:58:42 jokey Exp $ + + 31 Oct 2006; Markus Ullmann <jokey@gentoo.org> snort-2.6.0.ebuild: + Adding -j1 o fix parallel make issue 09 Oct 2006; Markus Ullmann <jokey@gentoo.org> snort-2.4.5.ebuild, snort-2.6.0.ebuild: diff --git a/net-analyzer/snort/snort-2.6.0.ebuild b/net-analyzer/snort/snort-2.6.0.ebuild index 19e41bb0651a..b7555721a49e 100644 --- a/net-analyzer/snort/snort-2.6.0.ebuild +++ b/net-analyzer/snort/snort-2.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/snort-2.6.0.ebuild,v 1.3 2006/10/09 00:39:39 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/snort-2.6.0.ebuild,v 1.4 2006/10/31 19:58:42 jokey Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -52,11 +52,10 @@ src_unpack() { fi sed -i "s:var RULE_PATH ../rules:var RULE_PATH /etc/snort/rules:" \ - etc/snort.conf || die "sed snort.conf failed" + etc/snort.conf if use prelude ; then - sed -i -e "s:AC_PROG_RANLIB:AC_PROG_LIBTOOL:" configure.in \ - || die "sed configure.in failed" + sed -i -e "s:AC_PROG_RANLIB:AC_PROG_LIBTOOL:" configure.in fi if use sguil ; then @@ -84,11 +83,11 @@ src_compile() { use inline && append-flags -I/usr/include/libipq econf \ + --without-oracle \ $(use_with postgres postgresql) \ $(use_with mysql) \ $(use_with ssl openssl) \ $(use_with odbc) \ - --without-oracle \ $(use_enable prelude) \ $(use_with sguil) \ $(use_enable inline) \ @@ -96,9 +95,10 @@ src_compile() { $(use_enable timestats) \ $(use_enable perfprofiling) \ $(use_enable linux-smp-stats) \ - ${myconf} || die "bad ./configure" + ${myconf} || die "econf failed" - emake || die "compile problem" + # limit to single as reported by jforman on irc + emake -j1 || die "emake failed" } src_install() { |