summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gryniewicz <dang@gentoo.org>2007-03-26 19:57:06 +0000
committerDaniel Gryniewicz <dang@gentoo.org>2007-03-26 19:57:06 +0000
commit30a44c7570b2403a3b5311c1e09ef1574bd868dc (patch)
tree175f09eea4998920be7d3b44770669284631e9ef /app-text/evince/files
parentDropped ppc-macos keyword (diff)
downloadgentoo-2-30a44c7570b2403a3b5311c1e09ef1574bd868dc.tar.gz
gentoo-2-30a44c7570b2403a3b5311c1e09ef1574bd868dc.tar.bz2
gentoo-2-30a44c7570b2403a3b5311c1e09ef1574bd868dc.zip
Bump to 0.6.1-r3
Add patch for bug #156573 (Portage version: 2.1.2.2)
Diffstat (limited to 'app-text/evince/files')
-rw-r--r--app-text/evince/files/digest-evince-0.6.1-r33
-rw-r--r--app-text/evince/files/evince-0.6.1-gv-limit.patch23
2 files changed, 26 insertions, 0 deletions
diff --git a/app-text/evince/files/digest-evince-0.6.1-r3 b/app-text/evince/files/digest-evince-0.6.1-r3
new file mode 100644
index 000000000000..498e46d52a0f
--- /dev/null
+++ b/app-text/evince/files/digest-evince-0.6.1-r3
@@ -0,0 +1,3 @@
+MD5 55a1d4af3cac209c7cfbe83b7ffcee1d evince-0.6.1.tar.bz2 1212271
+RMD160 ac94e1964f4f46e505fe945daa9de288c2587898 evince-0.6.1.tar.bz2 1212271
+SHA256 ee72f48ec0c76a8f44d8a6aed6759d43a147a9d5bb2b15f06460c4d6ef86025e evince-0.6.1.tar.bz2 1212271
diff --git a/app-text/evince/files/evince-0.6.1-gv-limit.patch b/app-text/evince/files/evince-0.6.1-gv-limit.patch
new file mode 100644
index 000000000000..7ff5d155488d
--- /dev/null
+++ b/app-text/evince/files/evince-0.6.1-gv-limit.patch
@@ -0,0 +1,23 @@
+diff --exclude-from=/home/dang/bin/scripts/diffrc -up -ruN evince-0.6.1.orig/ps/ps.c evince-0.6.1/ps/ps.c
+--- evince-0.6.1.orig/ps/ps.c 2006-01-06 18:03:44.000000000 -0500
++++ evince-0.6.1/ps/ps.c 2007-03-26 15:14:13.000000000 -0400
+@@ -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';