diff options
author | Luis Medinas <metalgod@gentoo.org> | 2005-11-03 00:07:17 +0000 |
---|---|---|
committer | Luis Medinas <metalgod@gentoo.org> | 2005-11-03 00:07:17 +0000 |
commit | 7e0058f0ced3919c9c4fd6949826686b8dac4d38 (patch) | |
tree | bef57cd60990a0b5aaa574af3134d004a76c0e45 /app-text/gv/files | |
parent | Version Bump. (diff) | |
download | gentoo-2-7e0058f0ced3919c9c4fd6949826686b8dac4d38.tar.gz gentoo-2-7e0058f0ced3919c9c4fd6949826686b8dac4d38.tar.bz2 gentoo-2-7e0058f0ced3919c9c4fd6949826686b8dac4d38.zip |
Added a patch to fix scrollbar bug and added a better description thanks to Ulrich Mueller <ulm@kph.uni-mainz.de> closes bug #111024 and #111114.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'app-text/gv/files')
-rw-r--r-- | app-text/gv/files/digest-gv-3.6.1-r1 | 2 | ||||
-rw-r--r-- | app-text/gv/files/gv-3.6.1-scrollbar.patch | 17 |
2 files changed, 19 insertions, 0 deletions
diff --git a/app-text/gv/files/digest-gv-3.6.1-r1 b/app-text/gv/files/digest-gv-3.6.1-r1 new file mode 100644 index 000000000000..1a712bf913c0 --- /dev/null +++ b/app-text/gv/files/digest-gv-3.6.1-r1 @@ -0,0 +1,2 @@ +MD5 ace080d647b70f46fca7946e9543b79e gv-3.6.1.tar.gz 453921 +MD5 3743ff030e1e4ea448ba1199503bd702 gv_3.6.1-10.diff.gz 30253 diff --git a/app-text/gv/files/gv-3.6.1-scrollbar.patch b/app-text/gv/files/gv-3.6.1-scrollbar.patch new file mode 100644 index 000000000000..7b2428335553 --- /dev/null +++ b/app-text/gv/files/gv-3.6.1-scrollbar.patch @@ -0,0 +1,17 @@ +--- gv-3.6.1/configure~ 2004-12-19 19:16:47.000000000 +0100 ++++ gv-3.6.1/configure 2005-10-31 16:11:27.000000000 +0100 +@@ -5354,12 +5354,12 @@ + { (exit 1); exit 1; }; } ;; + esac + else +- opt_scrollbar_code=false ++ opt_scrollbar_code=true + fi; + + + +-if test x$debug = xtrue; then ++if test x$opt_scrollbar_code = xtrue; then + USE_SCROLLBAR_CODE_TRUE= + USE_SCROLLBAR_CODE_FALSE='#' + else |