diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-08-19 01:53:01 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-08-19 01:53:01 +0000 |
commit | 285c3e4b8b8e61de6096e2571f56ffa52010b3a9 (patch) | |
tree | ffb1b26eee93afa91ae8232f09f38c7f8c8f327f /app-text/gv/files | |
parent | gcc4 patch thanks to nattfodd and Vasileios P. Lourdas <lourdas_v@yahoo.gr> i... (diff) | |
download | gentoo-2-285c3e4b8b8e61de6096e2571f56ffa52010b3a9.tar.gz gentoo-2-285c3e4b8b8e61de6096e2571f56ffa52010b3a9.tar.bz2 gentoo-2-285c3e4b8b8e61de6096e2571f56ffa52010b3a9.zip |
New patch to fix the watch file and reload feature thanks to Johan Nilsson <wtfquestionmark@gmail.com> in bug 135384
(Portage version: 2.1.1_pre5-r2)
Diffstat (limited to 'app-text/gv/files')
-rw-r--r-- | app-text/gv/files/digest-gv-3.6.1-r5 | 6 | ||||
-rw-r--r-- | app-text/gv/files/gv-update.patch | 24 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-text/gv/files/digest-gv-3.6.1-r5 b/app-text/gv/files/digest-gv-3.6.1-r5 new file mode 100644 index 000000000000..6437c8cb34a7 --- /dev/null +++ b/app-text/gv/files/digest-gv-3.6.1-r5 @@ -0,0 +1,6 @@ +MD5 ace080d647b70f46fca7946e9543b79e gv-3.6.1.tar.gz 453921 +RMD160 d783a15f581eb32efc65981b693db44aed193de2 gv-3.6.1.tar.gz 453921 +SHA256 37eb3f58b62441ce62544cdd81c096713ddeeb454e313c3b3b7a93970e85bd08 gv-3.6.1.tar.gz 453921 +MD5 e617286de8652e709b7c303c125ff61c gv_3.6.1-13.diff.gz 13880 +RMD160 bd9e00f4248274e0eeab42e48e52f206eaf95163 gv_3.6.1-13.diff.gz 13880 +SHA256 769ceed1e519c796c37080214d6dc1f8900689e54e24adf4145462072e1f56d5 gv_3.6.1-13.diff.gz 13880 diff --git a/app-text/gv/files/gv-update.patch b/app-text/gv/files/gv-update.patch new file mode 100644 index 000000000000..b58b705129d5 --- /dev/null +++ b/app-text/gv/files/gv-update.patch @@ -0,0 +1,24 @@ +Fixes bug "pdf problems with gv" (Bug #13200). +http://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=13200 + +by Markus Steinborn <msteinbo@uni-paderborn.de>, + Student of Computer Science + University of Paderborn. + +Index: src/callbacks.c +=================================================================== +--- src/callbacks.c (Revision 25) ++++ src/callbacks.c (Revision 26) +@@ -357,7 +357,11 @@ + + BEGINMESSAGE(cb_checkFile) + changed = check_file(((int)client_data)); +- if (changed==1) show_page(current_page,NULL); ++ if (changed==1) ++ { ++ cb_stopInterpreter(page,NULL,NULL); ++ show_page(current_page,NULL); ++ } + ENDMESSAGE(cb_checkFile) + } + |