diff options
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ghostscript-gpl/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/ghostscript-gpl/ghostscript-gpl-9.15-r1.ebuild | 6 |
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 |