diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-02-07 17:49:27 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-02-07 17:49:27 +0000 |
commit | 0740ad117da2204b78f16b2b2628e44c06501ae0 (patch) | |
tree | 1dd00176880429dfc2a768d1b7f1b23b86841693 /app-text | |
parent | Doin' it for vapier, ppc-macos stable (bug #121487) (diff) | |
download | gentoo-2-0740ad117da2204b78f16b2b2628e44c06501ae0.tar.gz gentoo-2-0740ad117da2204b78f16b2b2628e44c06501ae0.tar.bz2 gentoo-2-0740ad117da2204b78f16b2b2628e44c06501ae0.zip |
another workaround for bug 121924
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ghostscript-esp/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/app-text/ghostscript-esp/ChangeLog b/app-text/ghostscript-esp/ChangeLog index 670ee95f0c1b..44ad82f8f8da 100644 --- a/app-text/ghostscript-esp/ChangeLog +++ b/app-text/ghostscript-esp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/ghostscript # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-esp/ChangeLog,v 1.14 2006/02/07 14:06:33 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-esp/ChangeLog,v 1.15 2006/02/07 17:49:27 genstef Exp $ + + 07 Feb 2006; Stefan Schweizer <genstef@gentoo.org> + ghostscript-esp-8.15.1.ebuild: + another workaround for bug 121924 07 Feb 2006; Stefan Schweizer <genstef@gentoo.org> ghostscript-esp-8.15.1.ebuild: diff --git a/app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild b/app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild index 04cd89de61a1..2ffb452083f5 100644 --- a/app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild +++ b/app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild,v 1.7 2006/02/07 14:06:33 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-esp/ghostscript-esp-8.15.1.ebuild,v 1.8 2006/02/07 17:49:27 genstef Exp $ -inherit eutils autotools +inherit eutils autotools flag-o-matic DESCRIPTION="ESP Ghostscript -- an enhanced version of GPL Ghostscript with better printer support" HOMEPAGE="http://www.cups.org/ghostscript.php" @@ -81,7 +81,11 @@ src_compile() { # *-dynmic breaks compiling without X, see bug 121749 but not having it # breaks compiling on amd64, bug 121924 - use X && myconf="${myconf} --enable-dynamic" + if use X; then + myconf="${myconf} --enable-dynamic" + elif use amd64; then + append-flags -fPIC + fi econf $(use_with X x) \ $(use_enable cups) \ |