diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-10-01 16:38:09 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-10-01 16:38:09 +0000 |
commit | 1ac31bab0e176ddb5d33538c58770c48f4205032 (patch) | |
tree | 3886313e743e20f7e25070f9aed1dd9fe4c13ba2 /net-libs/gtk-vnc | |
parent | Remove old. (diff) | |
download | gentoo-2-1ac31bab0e176ddb5d33538c58770c48f4205032.tar.gz gentoo-2-1ac31bab0e176ddb5d33538c58770c48f4205032.tar.bz2 gentoo-2-1ac31bab0e176ddb5d33538c58770c48f4205032.zip |
Parallel installation is still failing (#328273#c37 by Paweł Hajdan, Jr.).
(Portage version: 2.1.11.23/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/gtk-vnc')
-rw-r--r-- | net-libs/gtk-vnc/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/net-libs/gtk-vnc/ChangeLog b/net-libs/gtk-vnc/ChangeLog index 865ed109946c..dbb2f243d702 100644 --- a/net-libs/gtk-vnc/ChangeLog +++ b/net-libs/gtk-vnc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/gtk-vnc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.93 2012/07/21 12:01:39 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/ChangeLog,v 1.94 2012/10/01 16:38:09 pacho Exp $ + + 01 Oct 2012; Pacho Ramos <pacho@gentoo.org> gtk-vnc-0.5.1.ebuild: + Parallel installation is still failing (#328273#c37 by Paweł Hajdan, Jr.). *gtk-vnc-0.5.1 (21 Jul 2012) diff --git a/net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild b/net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild index 897e281e01b5..9a806cb11986 100644 --- a/net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild +++ b/net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild,v 1.1 2012/07/21 12:01:39 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/gtk-vnc/gtk-vnc-0.5.1.ebuild,v 1.2 2012/10/01 16:38:09 pacho Exp $ EAPI="4" PYTHON_DEPEND="python? 2" @@ -8,7 +8,7 @@ PYTHON_DEPEND="python? 2" inherit base eutils gnome.org python DESCRIPTION="VNC viewer widget for GTK" -HOMEPAGE="http://live.gnome.org/gtk-vnc" +HOMEPAGE="https://live.gnome.org/gtk-vnc" LICENSE="GPL-2" SLOT="0" @@ -130,16 +130,18 @@ src_test() { } src_install() { + # Parallel installation fails sometimes, bug #328273, upstream bug #651923 + dodoc AUTHORS ChangeLog NEWS README cd ${GTK2_BUILDDIR} einfo "Running make install in ${GTK2_BUILDDIR}" - base_src_install + MAKEOPTS="${MAKEOPTS} -j1" base_src_install if use gtk3; then cd ${GTK3_BUILDDIR} einfo "Running make install in ${GTK3_BUILDDIR}" - base_src_install + MAKEOPTS="${MAKEOPTS} -j1" base_src_install fi python_clean_installation_image |