diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-23 02:37:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-23 02:37:18 +0000 |
commit | d061284f7aca32a9ac85cf04caf0f62a50d54214 (patch) | |
tree | 9ed0e38416446cbbff312cb758bbad6c0c644a86 /app-text | |
parent | updated dependencies as per bug #109600 thanks Alon Bar-Lev (diff) | |
download | gentoo-2-d061284f7aca32a9ac85cf04caf0f62a50d54214.tar.gz gentoo-2-d061284f7aca32a9ac85cf04caf0f62a50d54214.tar.bz2 gentoo-2-d061284f7aca32a9ac85cf04caf0f62a50d54214.zip |
do not screw with flags; fix gcc #148285
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ghostscript-gpl/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild | 11 |
2 files changed, 7 insertions, 9 deletions
diff --git a/app-text/ghostscript-gpl/ChangeLog b/app-text/ghostscript-gpl/ChangeLog index 3b10f1283e46..53b4d6117696 100644 --- a/app-text/ghostscript-gpl/ChangeLog +++ b/app-text/ghostscript-gpl/ChangeLog @@ -1,11 +1,10 @@ # ChangeLog for app-text/ghostscript-gpl # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.5 2006/09/22 23:13:30 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ChangeLog,v 1.6 2006/09/23 02:37:18 vapier Exp $ 22 Sep 2006; Stefan Schweizer <genstef@gentoo.org> ghostscript-gpl-8.54.ebuild: - -O0 fails, thanks Salah Coronya <salahx@yahoo.com> in bug 148285 and - automake fixes, bug 148368 + automake fixes #148368. 14 Sep 2006; Stefan Schweizer <genstef@gentoo.org> ghostscript-gpl-8.54.ebuild: diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild b/app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild index e3b6d5829899..65e493966c8b 100644 --- a/app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild +++ b/app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild,v 1.5 2006/09/22 23:13:30 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript-gpl/ghostscript-gpl-8.54.ebuild,v 1.6 2006/09/23 02:37:18 vapier Exp $ WANT_AUTOMAKE=1.6 inherit autotools elisp-common eutils versionator flag-o-matic @@ -114,16 +114,15 @@ src_unpack() { sed -i -e "s:docdir=.*:docdir=/usr/share/doc/${PF}/html:" \ -e "s:GS_DOCDIR=.*:GS_DOCDIR=/usr/share/doc/${PF}/html:" \ src/Makefile.in src/*.mak || die "sed failed" - - # -O0 broken, bug 148285 - replace-flags -O0 -O2 } src_compile() { - econf $(use_with X x) \ + econf \ + $(use_with X x) \ $(use_with jpeg2k jasper) \ --with-ijs \ - --with-jbig2dec || die "econf failed" + --with-jbig2dec \ + || die "econf failed" emake STDDIRS || die "emake failed" cd ijs |