summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2015-07-25 17:58:59 +0000
committerAnthony G. Basile <blueness@gentoo.org>2015-07-25 17:58:59 +0000
commitbf727c67baaf605845e8292fd3342bbd6de02a19 (patch)
tree78eb582c3795bf6e9adaed3cfb9c95056c12f6bb /app-text/ghostscript-gpl
parentVersion bump (diff)
downloadgentoo-2-bf727c67baaf605845e8292fd3342bbd6de02a19.tar.gz
gentoo-2-bf727c67baaf605845e8292fd3342bbd6de02a19.tar.bz2
gentoo-2-bf727c67baaf605845e8292fd3342bbd6de02a19.zip
Fix parallel 'make install'. Bug #543602.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'app-text/ghostscript-gpl')
-rw-r--r--app-text/ghostscript-gpl/ChangeLog6
-rw-r--r--app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild6
2 files changed, 8 insertions, 4 deletions
diff --git a/app-text/ghostscript-gpl/ChangeLog b/app-text/ghostscript-gpl/ChangeLog
index 9e6990dc3497..4a0500deaf44 100644
--- a/app-text/ghostscript-gpl/ChangeLog
+++ b/app-text/ghostscript-gpl/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/ghostscript-gpl
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.189 2015/07/15 20:51:56 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.190 2015/07/25 17:58:59 blueness Exp $
+
+ 25 Jul 2015; Anthony G. Basile <blueness@gentoo.org>
+ ghostscript-gpl-9.15-r1.ebuild:
+ Fix parallel 'make install'. Bug #543602.
15 Jul 2015; Mikle Kolyada <zlogene@gentoo.org>
ghostscript-gpl-9.15-r1.ebuild:
diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild
index 50f8c019b71a..23e1b8db2aad 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v 1.12 2015/07/15 20:51:56 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild,v 1.13 2015/07/25 17:58:59 blueness Exp $
EAPI=5
@@ -184,7 +184,7 @@ src_compile() {
}
src_install() {
- emake DESTDIR="${D}" install-so install
+ emake -j1 DESTDIR="${D}" install-so install
if use djvu ; then
dobin gsdjvu
@@ -195,7 +195,7 @@ src_install() {
mv -f "${D}/usr/bin/gsc" "${D}/usr/bin/gs" || die
cd "${S}/ijs"
- emake DESTDIR="${D}" install
+ emake -j1 DESTDIR="${D}" install
# rename the original cidfmap to cidfmap.GS
mv "${D}/usr/share/ghostscript/${PVM}/Resource/Init/cidfmap"{,.GS} || die