summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-12-13 14:06:04 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-12-13 14:06:04 +0000
commit1f4448db7fb4ce554c5d514674411cd486d4697a (patch)
tree1fcf64be43399c5d479bb4b0e999842d63e798ea /dev-python
parentVersion bump (diff)
downloadgentoo-2-1f4448db7fb4ce554c5d514674411cd486d4697a.tar.gz
gentoo-2-1f4448db7fb4ce554c5d514674411cd486d4697a.tar.bz2
gentoo-2-1f4448db7fb4ce554c5d514674411cd486d4697a.zip
Add -j1 to build (bug #288191); also make sure that if install fails the ebuild fails as well.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/telepathy-python/ChangeLog7
-rw-r--r--dev-python/telepathy-python/telepathy-python-0.15.12.ebuild7
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-python/telepathy-python/ChangeLog b/dev-python/telepathy-python/ChangeLog
index 8a46176456ff..693438fa0fcc 100644
--- a/dev-python/telepathy-python/ChangeLog
+++ b/dev-python/telepathy-python/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/telepathy-python
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/telepathy-python/ChangeLog,v 1.18 2009/09/29 14:51:48 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/telepathy-python/ChangeLog,v 1.19 2009/12/13 14:06:04 flameeyes Exp $
+
+ 13 Dec 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ telepathy-python-0.15.12.ebuild:
+ Add -j1 to build (bug #288191); also make sure that if install fails the
+ ebuild fails as well.
*telepathy-python-0.15.12 (29 Sep 2009)
diff --git a/dev-python/telepathy-python/telepathy-python-0.15.12.ebuild b/dev-python/telepathy-python/telepathy-python-0.15.12.ebuild
index f73d2ad3c304..d32d564b2236 100644
--- a/dev-python/telepathy-python/telepathy-python-0.15.12.ebuild
+++ b/dev-python/telepathy-python/telepathy-python-0.15.12.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/telepathy-python/telepathy-python-0.15.12.ebuild,v 1.1 2009/09/29 14:51:48 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/telepathy-python/telepathy-python-0.15.12.ebuild,v 1.2 2009/12/13 14:06:04 flameeyes Exp $
DESCRIPTION="Telepathy Python base classes for use in connection managers, and proxy classes for use in clients."
HOMEPAGE="http://telepathy.freedesktop.org/"
@@ -14,7 +14,10 @@ IUSE=""
DEPEND="dev-libs/libxslt"
RDEPEND=">=dev-python/dbus-python-0.80"
+# bug #288191
+MAKEOPTS="-j1"
+
src_install() {
- make install DESTDIR="${D}"
+ emake install DESTDIR="${D}" || die
dodoc AUTHORS NEWS
}