summaryrefslogtreecommitdiff
path: root/print/evince/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2007-04-11 18:01:13 +0000
committerdrochner <drochner@pkgsrc.org>2007-04-11 18:01:13 +0000
commita2fe194801f13cf0c7793e8707980f81301d8e70 (patch)
tree339f97077869348acc30040b3cabc5192a32eda5 /print/evince/patches
parent61aaeee7c7d68400d172babf15c4fa0eeeeea092 (diff)
downloadpkgsrc-a2fe194801f13cf0c7793e8707980f81301d8e70.tar.gz
update to 0.8.1
This moves this pkg to the new stable gnome branch, too much to list here.
Diffstat (limited to 'print/evince/patches')
-rw-r--r--print/evince/patches/patch-aa13
-rw-r--r--print/evince/patches/patch-ab12
-rw-r--r--print/evince/patches/patch-ac27
-rw-r--r--print/evince/patches/patch-ad13
-rw-r--r--print/evince/patches/patch-ae13
-rw-r--r--print/evince/patches/patch-af12
6 files changed, 25 insertions, 65 deletions
diff --git a/print/evince/patches/patch-aa b/print/evince/patches/patch-aa
deleted file mode 100644
index c6aa1614fe0..00000000000
--- a/print/evince/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2006/05/31 18:17:23 drochner Exp $
-
---- backend/ev-document-links.c.orig 2006-05-29 20:14:29.000000000 +0200
-+++ backend/ev-document-links.c
-@@ -74,6 +74,8 @@ ev_document_links_get_links (EvDocumentL
- EvDocumentLinksIface *iface = EV_DOCUMENT_LINKS_GET_IFACE (document_links);
- GList *retval;
-
-+ if (!iface)
-+ return (0);
- retval = iface->get_links (document_links, page);
-
- return retval;
diff --git a/print/evince/patches/patch-ab b/print/evince/patches/patch-ab
deleted file mode 100644
index 80088911903..00000000000
--- a/print/evince/patches/patch-ab
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2006/08/03 19:25:52 drochner Exp $
-
---- shell/main.c.orig 2006-06-01 16:41:11.000000000 +0200
-+++ shell/main.c
-@@ -251,7 +251,6 @@ main (int argc, char *argv[])
- }
- #endif
-
-- gdk_threads_init ();
- gnome_authentication_manager_init ();
-
- if (enable_metadata) {
diff --git a/print/evince/patches/patch-ac b/print/evince/patches/patch-ac
deleted file mode 100644
index 4ac296d1a62..00000000000
--- a/print/evince/patches/patch-ac
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2006/12/06 14:48:35 wiz Exp $
-
-Fix for CVE-2006-5864. From evince CVS
-http://cvs.gnome.org/viewcvs/evince/ps/ps.c?r1=1.6&r2=1.6.6.1
-
---- ps/ps.c.orig 2006-01-07 00:03:44.000000000 +0100
-+++ ps/ps.c
-@@ -1231,7 +1231,8 @@ get_next_text(line, next_char)
- int level = 0;
- quoted = 1;
- line++;
-- while(*line && !(*line == ')' && level == 0)) {
-+ while(*line && !(*line == ')' && level == 0)
-+ && (cp - text) < PSLINELENGTH - 1) {
- if(*line == '\\') {
- if(*(line + 1) == 'n') {
- *cp++ = '\n';
-@@ -1302,7 +1303,8 @@ get_next_text(line, next_char)
- }
- }
- else {
-- while(*line && !(*line == ' ' || *line == '\t' || *line == '\n'))
-+ while(*line && !(*line == ' ' || *line == '\t' || *line == '\n')
-+ && (cp - text) < PSLINELENGTH - 1)
- *cp++ = *line++;
- }
- *cp = '\0';
diff --git a/print/evince/patches/patch-ad b/print/evince/patches/patch-ad
deleted file mode 100644
index 75763dc0eab..00000000000
--- a/print/evince/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2007/03/21 12:11:07 wiz Exp $
-
---- help/C/evince.xml.orig 2006-10-09 19:06:04.000000000 +0000
-+++ help/C/evince.xml
-@@ -60,7 +60,7 @@
- <surname>GNOME Documentation Team</surname>
- <affiliation><orgname>Sun Microsystems</orgname></affiliation>
- </author>
-- <author>
-+ <author role="maintainer">
- <firstname>Nickolay V. </firstname>
- <surname>Shmyrev</surname>
- <affiliation>
diff --git a/print/evince/patches/patch-ae b/print/evince/patches/patch-ae
new file mode 100644
index 00000000000..7c5b778a553
--- /dev/null
+++ b/print/evince/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2007/04/11 18:01:14 drochner Exp $
+
+--- configure.orig 2007-04-04 15:57:38.000000000 +0200
++++ configure
+@@ -25750,7 +25750,7 @@ else
+ echo "${ECHO_T}yes" >&6
+ enable_cairo_pdf=yes
+ fi
+- if test x$enable_cairo_pdf == xyes; then
++ if test x$enable_cairo_pdf = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_CAIRO_PDF 1
diff --git a/print/evince/patches/patch-af b/print/evince/patches/patch-af
new file mode 100644
index 00000000000..219df5d07ed
--- /dev/null
+++ b/print/evince/patches/patch-af
@@ -0,0 +1,12 @@
+$NetBSD: patch-af,v 1.1 2007/04/11 18:01:14 drochner Exp $
+
+--- backend/ps/ps-interpreter.c.orig 2007-04-04 16:01:22.000000000 +0200
++++ backend/ps/ps-interpreter.c
+@@ -30,6 +30,7 @@
+ #include <stdlib.h>
+ #include <sys/wait.h>
+ #include <errno.h>
++#include <signal.h>
+
+ #include "ps-interpreter.h"
+ #include "ps.h"