diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2005-03-16 12:28:51 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2005-03-16 12:28:51 +0000 |
commit | 69fd75fece62b5519685e49792fb4715fbf8fb81 (patch) | |
tree | 644ca8ba7a87c6dc99727fdd73193d68ec69aafc /app-text/ghostscript | |
parent | Stable on ppc (diff) | |
download | gentoo-2-69fd75fece62b5519685e49792fb4715fbf8fb81.tar.gz gentoo-2-69fd75fece62b5519685e49792fb4715fbf8fb81.tar.bz2 gentoo-2-69fd75fece62b5519685e49792fb4715fbf8fb81.zip |
add ps2ps patch, bug #63435
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-text/ghostscript')
-rw-r--r-- | app-text/ghostscript/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/ghostscript/files/gs7.07.1-ps2epsi.patch | 11 | ||||
-rw-r--r-- | app-text/ghostscript/files/gs7.07.1-ps2ps.patch | 11 | ||||
-rw-r--r-- | app-text/ghostscript/ghostscript-7.07.1-r8.ebuild | 5 |
4 files changed, 21 insertions, 13 deletions
diff --git a/app-text/ghostscript/ChangeLog b/app-text/ghostscript/ChangeLog index 8e261837af86..59e18f453167 100644 --- a/app-text/ghostscript/ChangeLog +++ b/app-text/ghostscript/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/ghostscript # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.99 2005/03/07 20:13:04 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ChangeLog,v 1.100 2005/03/16 12:28:51 lanius Exp $ + + 16 Mar 2005; Heinrich Wendel <lanius@gentoo.org> + -files/gs7.07.1-ps2epsi.patch, +files/gs7.07.1-ps2ps.patch, + ghostscript-7.07.1-r8.ebuild: + add ps2ps patch, bug #63435 07 Mar 2005; Heinrich Wendel <lanius@gentoo.org> ghostscript-7.07.1-r8.ebuild: diff --git a/app-text/ghostscript/files/gs7.07.1-ps2epsi.patch b/app-text/ghostscript/files/gs7.07.1-ps2epsi.patch deleted file mode 100644 index aa06f8b1f7dc..000000000000 --- a/app-text/ghostscript/files/gs7.07.1-ps2epsi.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/ps2epsi.org 2003-11-15 18:45:26.123092511 +0100 -+++ lib/ps2epsi 2003-11-15 18:45:43.224353499 +0100 -@@ -1,7 +1,7 @@ - #!/bin/sh - # $Id: gs7.07.1-ps2epsi.patch,v 1.1 2003/11/15 18:22:17 lanius Exp $ - --tmpfile=/tmp/ps2epsi$$ -+tmpfile=$(tempfile --prefix=ps2ep) - rm -f $tmpfile - if test -e $tmpfile; then - echo "$0: Our temporary file $tmpfile already exists." 1>&2 diff --git a/app-text/ghostscript/files/gs7.07.1-ps2ps.patch b/app-text/ghostscript/files/gs7.07.1-ps2ps.patch new file mode 100644 index 000000000000..0cacb4bad647 --- /dev/null +++ b/app-text/ghostscript/files/gs7.07.1-ps2ps.patch @@ -0,0 +1,11 @@ +--- lib/ps2ps.org 2005-03-16 13:22:27.000000000 +0100 ++++ lib/ps2ps 2005-03-16 13:22:44.000000000 +0100 +@@ -6,7 +6,7 @@ + while true + do + case "$1" in +- -*) OPTIONS="$OPTIONS $1" ;; ++ -?*) OPTIONS="$OPTIONS $1" ;; + *) break ;; + esac + shift diff --git a/app-text/ghostscript/ghostscript-7.07.1-r8.ebuild b/app-text/ghostscript/ghostscript-7.07.1-r8.ebuild index d1c7d535020e..39aa01820d1a 100644 --- a/app-text/ghostscript/ghostscript-7.07.1-r8.ebuild +++ b/app-text/ghostscript/ghostscript-7.07.1-r8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 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-r8.ebuild,v 1.9 2005/03/12 19:26:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ghostscript/ghostscript-7.07.1-r8.ebuild,v 1.10 2005/03/16 12:28:51 lanius Exp $ inherit flag-o-matic eutils gcc @@ -81,6 +81,9 @@ src_unpack() { # Fix the garbage collector on ia64 and ppc epatch ${FILESDIR}/gs-fix-gc.patch + # bug #63435 + epatch ${FILESDIR}/gs${PV}-ps2ps.patch + # fix dynamic build echo '#include "png.h"' >> src/png_.h |