summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2014-03-27 21:27:03 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2014-03-27 21:27:03 +0000
commitb183a10da54a53a253fd7903cb2493744c91cc18 (patch)
tree7859595e0d2329fb01a6ae2a2e24f11f81c6ec8a /x11-libs
parentConvert to python-any-r1, bug 505994. (diff)
downloadgentoo-2-b183a10da54a53a253fd7903cb2493744c91cc18.tar.gz
gentoo-2-b183a10da54a53a253fd7903cb2493744c91cc18.tar.bz2
gentoo-2-b183a10da54a53a253fd7903cb2493744c91cc18.zip
Work around parallel install failure, bug #488124.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/glamor/ChangeLog6
-rw-r--r--x11-libs/glamor/glamor-0.6.0.ebuild9
2 files changed, 12 insertions, 3 deletions
diff --git a/x11-libs/glamor/ChangeLog b/x11-libs/glamor/ChangeLog
index 85906cb7a3ba..9d81c40b448b 100644
--- a/x11-libs/glamor/ChangeLog
+++ b/x11-libs/glamor/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-libs/glamor
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.28 2014/03/27 11:06:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.29 2014/03/27 21:27:03 chithanh Exp $
+
+ 27 Mar 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ glamor-0.6.0.ebuild:
+ Work around parallel install failure, bug #488124.
27 Mar 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
Stable for amd64, wrt bug #500368
diff --git a/x11-libs/glamor/glamor-0.6.0.ebuild b/x11-libs/glamor/glamor-0.6.0.ebuild
index c370f9a42a39..a3865628b0d7 100644
--- a/x11-libs/glamor/glamor-0.6.0.ebuild
+++ b/x11-libs/glamor/glamor-0.6.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.3 2014/03/27 11:06:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.4 2014/03/27 21:27:03 chithanh Exp $
EAPI=5
@@ -10,7 +10,7 @@ XORG_MODULE=driver/
XORG_MODULE_REBUILD=yes
S=${WORKDIR}/${PN}-egl-${PV}
-inherit xorg-2 toolchain-funcs
+inherit autotools-utils xorg-2 toolchain-funcs
DESCRIPTION="OpenGL based 2D rendering acceleration library"
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
@@ -46,3 +46,8 @@ src_prepare() {
append-ldflags -Wl,-z,lazy
fi
}
+
+src_install() {
+ # workaround parallel install failure, bug #488124.
+ autotools-utils_src_install -j1
+}