summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-06-07 12:49:26 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-06-07 12:49:26 +0000
commit0c2ea4e1ffe3d5339267a8c0df6f226c8154f0df (patch)
tree1b82881bba95b9214139bec7f6489bdf739224ec /net-mail
parentVersion bump on the 1.6.1 branch. Please note that this branch is now in secu... (diff)
downloadgentoo-2-0c2ea4e1ffe3d5339267a8c0df6f226c8154f0df.tar.gz
gentoo-2-0c2ea4e1ffe3d5339267a8c0df6f226c8154f0df.tar.bz2
gentoo-2-0c2ea4e1ffe3d5339267a8c0df6f226c8154f0df.zip
Package fails to build with parallel make (bug #295751).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/safecat/ChangeLog7
-rw-r--r--net-mail/safecat/safecat-1.12.ebuild9
2 files changed, 10 insertions, 6 deletions
diff --git a/net-mail/safecat/ChangeLog b/net-mail/safecat/ChangeLog
index b0cff3e6d992..029d93051b21 100644
--- a/net-mail/safecat/ChangeLog
+++ b/net-mail/safecat/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/safecat
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/safecat/ChangeLog,v 1.16 2009/09/23 19:12:45 patrick Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/safecat/ChangeLog,v 1.17 2010/06/07 12:49:26 flameeyes Exp $
+
+ 07 Jun 2010; Diego E. Pettenò <flameeyes@gentoo.org> safecat-1.12.ebuild:
+ Package fails to build with parallel make (bug #295751).
23 Sep 2009; Patrick Lauer <patrick@gentoo.org> safecat-1.11.ebuild,
safecat-1.12.ebuild:
diff --git a/net-mail/safecat/safecat-1.12.ebuild b/net-mail/safecat/safecat-1.12.ebuild
index 9d1670bf389f..1f51e3737d2d 100644
--- a/net-mail/safecat/safecat-1.12.ebuild
+++ b/net-mail/safecat/safecat-1.12.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/safecat/safecat-1.12.ebuild,v 1.3 2009/09/23 19:12:45 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/safecat/safecat-1.12.ebuild,v 1.4 2010/06/07 12:49:26 flameeyes Exp $
inherit fixheadtails eutils toolchain-funcs flag-o-matic
@@ -38,13 +38,14 @@ src_compile() {
echo "$(tc-getCC) ${CFLAGS}" > conf-cc
echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
- make it man || die
+ # bug #295751
+ emake -j1 it man || die
}
src_install() {
dodir /usr
echo "${D}/usr" > conf-root
- make man setup check || die
+ emake -j1 man setup check || die
dodoc CHANGES COPYING INSTALL README
doman maildir.1 safecat.1
}