diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-10-30 18:20:13 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-10-30 18:20:13 +0000 |
commit | f9b6785ddd17189c549959ffb511d9423e5810d8 (patch) | |
tree | a176aeaf1716a9431bc1e2b30c95b12ff03f4601 /app-text/ghostscript | |
parent | Moved from sys-apps/filelight to kde-misc/filelight (diff) | |
download | gentoo-2-f9b6785ddd17189c549959ffb511d9423e5810d8.tar.gz gentoo-2-f9b6785ddd17189c549959ffb511d9423e5810d8.tar.bz2 gentoo-2-f9b6785ddd17189c549959ffb511d9423e5810d8.zip |
Appended -j1 to emake; bug #68044.
Diffstat (limited to 'app-text/ghostscript')
-rw-r--r-- | app-text/ghostscript/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/ghostscript/ghostscript-7.07.1-r7.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-text/ghostscript/ChangeLog b/app-text/ghostscript/ChangeLog index a6a54677e08a..5bff0f809121 100644 --- a/app-text/ghostscript/ChangeLog +++ b/app-text/ghostscript/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/ghostscript # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.86 2004/10/25 13:17:38 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.87 2004/10/30 18:20:13 usata Exp $ + + 31 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> ghostscript-7.07.1-r7.ebuild: + Appended -j1 to emake; bug #68044. 25 Oct 2004; Luca Barbato <lu_zero@gentoo.org> ghostscript-7.07.1-r7.ebuild: diff --git a/app-text/ghostscript/ghostscript-7.07.1-r7.ebuild b/app-text/ghostscript/ghostscript-7.07.1-r7.ebuild index e4e6f21348cd..eac2d1b4faf2 100644 --- a/app-text/ghostscript/ghostscript-7.07.1-r7.ebuild +++ b/app-text/ghostscript/ghostscript-7.07.1-r7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-7.07.1-r7.ebuild,v 1.11 2004/10/25 13:17:38 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-7.07.1-r7.ebuild,v 1.12 2004/10/30 18:20:13 usata Exp $ inherit flag-o-matic eutils gcc @@ -101,16 +101,16 @@ src_compile() { autoconf econf ${myconf} || die "econf failed" - make || die "make failed" + emake -j1 || die "make failed" cd ijs econf || die "econf failed" - make || die "make failed" + emake -j1 || die "make failed" cd .. } src_install() { - einstall install_prefix=${D} + einstall install_prefix=${D} || die "einstall failed" rm -fr ${D}/usr/share/ghostscript/7.07/doc || die dodoc doc/README doc/COPYING doc/COPYING.LGPL |