summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2009-12-28 01:37:06 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2009-12-28 01:37:06 +0000
commit32ce4671ab786fbaabead3e66a6057db1b851c7a (patch)
tree2e5533746fbe76a5223b217f22521f11b68ac57e /sys-libs/openipmi
parentMasking sys-apps/sdd for QA removal. (diff)
downloadgentoo-2-32ce4671ab786fbaabead3e66a6057db1b851c7a.tar.gz
gentoo-2-32ce4671ab786fbaabead3e66a6057db1b851c7a.tar.bz2
gentoo-2-32ce4671ab786fbaabead3e66a6057db1b851c7a.zip
Fix bug #298250 directly.
(Portage version: 2.2_rc58/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/openipmi')
-rw-r--r--sys-libs/openipmi/ChangeLog5
-rw-r--r--sys-libs/openipmi/openipmi-2.0.16.ebuild14
2 files changed, 13 insertions, 6 deletions
diff --git a/sys-libs/openipmi/ChangeLog b/sys-libs/openipmi/ChangeLog
index 55594831bb6e..713fcfc29864 100644
--- a/sys-libs/openipmi/ChangeLog
+++ b/sys-libs/openipmi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/openipmi
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v 1.17 2009/12/28 00:14:44 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/ChangeLog,v 1.18 2009/12/28 01:37:06 robbat2 Exp $
+
+ 28 Dec 2009; Robin H. Johnson <robbat2@gentoo.org> openipmi-2.0.16.ebuild:
+ Fix bug #298250 directly.
*openipmi-2.0.16 (28 Dec 2009)
diff --git a/sys-libs/openipmi/openipmi-2.0.16.ebuild b/sys-libs/openipmi/openipmi-2.0.16.ebuild
index cfd4ffd2a483..8d3c14aa5d14 100644
--- a/sys-libs/openipmi/openipmi-2.0.16.ebuild
+++ b/sys-libs/openipmi/openipmi-2.0.16.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/sys-libs/openipmi/openipmi-2.0.16.ebuild,v 1.1 2009/12/28 00:14:44 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/openipmi/openipmi-2.0.16.ebuild,v 1.2 2009/12/28 01:37:06 robbat2 Exp $
inherit autotools python
@@ -48,8 +48,13 @@ src_unpack() {
sed -r -i \
-e '/INSTALL.*\.py[oc] /d' \
-e '/install-exec-local/s,OpenIPMI.pyc OpenIPMI.pyo,,g' \
- "${S}"/swig/python/Makefile.am \
- "${S}"/swig/python/Makefile.in
+ "${S}"/swig/python/Makefile.{am,in}
+
+ # Bug #298250: parallel install fix.
+ sed -r -i \
+ -e '/^install-data-local:/s,$, install-exec-am,g' \
+ "${S}"/cmdlang/Makefile.{am,in}
+
# We touch the .in and .am above because if we use the below, the Perl stuff
# is very fragile, and often fails to link.
#cd "${S}"
@@ -82,8 +87,7 @@ src_compile() {
}
src_install() {
- # bug #298250
- emake -j1 DESTDIR="${D}" install || die
+ emake DESTDIR="${D}" install || die
dodoc README* FAQ ChangeLog TODO doc/IPMI.pdf lanserv/README.emulator
newdoc cmdlang/README README.cmdlang
}