summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-07-14 09:25:28 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-07-14 09:25:28 +0000
commit7804e34be50564ea675a542c78cfe077f162738b (patch)
tree4955cc2f6d5efbe8bbccc1eaffe730d848c279b3 /net-libs/libunicall
parentremove vulnerable version (diff)
downloadgentoo-2-7804e34be50564ea675a542c78cfe077f162738b.tar.gz
gentoo-2-7804e34be50564ea675a542c78cfe077f162738b.tar.bz2
gentoo-2-7804e34be50564ea675a542c78cfe077f162738b.zip
Add -j1 workaround per bug #277783; don't close the bug.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libunicall')
-rw-r--r--net-libs/libunicall/ChangeLog8
-rw-r--r--net-libs/libunicall/libunicall-0.0.6_pre1.ebuild10
2 files changed, 14 insertions, 4 deletions
diff --git a/net-libs/libunicall/ChangeLog b/net-libs/libunicall/ChangeLog
index 9e725c9788b4..f92e88fe8b16 100644
--- a/net-libs/libunicall/ChangeLog
+++ b/net-libs/libunicall/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/libunicall
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libunicall/ChangeLog,v 1.3 2008/12/15 09:58:30 pva Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libunicall/ChangeLog,v 1.4 2009/07/14 09:25:28 flameeyes Exp $
+
+ 14 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ libunicall-0.0.6_pre1.ebuild:
+ Add -j1 workaround per bug #277783; don't close the bug.
*libunicall-0.0.6_pre1 (15 Dec 2008)
diff --git a/net-libs/libunicall/libunicall-0.0.6_pre1.ebuild b/net-libs/libunicall/libunicall-0.0.6_pre1.ebuild
index c69b680c5e48..6f1dc0676109 100644
--- a/net-libs/libunicall/libunicall-0.0.6_pre1.ebuild
+++ b/net-libs/libunicall/libunicall-0.0.6_pre1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libunicall/libunicall-0.0.6_pre1.ebuild,v 1.1 2008/12/15 09:58:30 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libunicall/libunicall-0.0.6_pre1.ebuild,v 1.2 2009/07/14 09:25:28 flameeyes Exp $
inherit eutils autotools
@@ -27,6 +27,12 @@ src_unpack() {
eautoreconf
}
+src_compile() {
+ econf || die "econf failed"
+ # bug #277783
+ emake -j1 || die "emake failed"
+}
+
src_install () {
emake DESTDIR="${D}" install || die "Install failed"
dodoc AUTHORS INSTALL NEWS README || die